Adicco Bhikkhu

Results 13 comments of Adicco Bhikkhu

To fix my particular issue one can use typebox's ```additionalProperties```: ```ts params: t.Object({ item_id: t.String() }, { additionalProperties: true }) ``` But I am still wondering if there might be...

Same issue here, the [example](https://github.com/elysiajs/elysia-jwt/blob/main/example/index.ts) actually raises a TS error on 'jwt' at `.get('/sign/:name', async ({ jwt, cookie, setCookie, params }) =>`

@rolznz Use [serverComponentsExternalPackages](https://beta.nextjs.org/docs/api-reference/next-config#servercomponentsexternalpackages) in next.config.js, e.g.: ```js /** @type {import('next').NextConfig} */ const nextConfig = { reactStrictMode: true, experimental: { serverComponentsExternalPackages: ['bullmq'] } } module.exports = nextConfig ```