Oliver Plummer
Oliver Plummer
It looks like this pull request can only be an update for Fastify v4 as the packages `@fastify/cors` and `@fastify/accepts` only support v4 in their [plugin metadata](https://github.com/fastify/fastify-accepts/blob/master/index.js#L60). It wouldn't be...
@tiaanduplessis what do you think?
You shouldn't have to pass in `FastifyPluginOptions` as the generic already extends it in this package. Reproducible code: ```typescript interface MyOptions extends FastifyPluginOptions { foo: "bar", } const myPlugin: FastifyPluginAsync...
Hello, I have the latest `@types/node` package installed.
Yep sure. I have the repo for the package that I'm working on that has this error. This links to the line number were the error occurs: [https://github.com/olyop/apollo-server-fastify/blob/main/src/plugin.ts#L32](https://github.com/olyop/apollo-server-fastify/blob/main/src/plugin.ts#L32) As you...
@mcollina I have created a pull request. Please let me know if you think this should be fixed or not.
Hi @gkatsanos. Have a look at [`@as-integrations/fastify`](https://github.com/apollo-server-integrations/apollo-server-integration-fastify) It is compatiable with Fastify v4 and Apollo Server v4.
I ran into this problem today as well and noticed the docs we're outdated. You can specify a loader by using the `NODE_OPTIONS` environment variable: ```json5 { ... "scripts": {...
Hi @maptz. Firstly great extension and appreicate your work. I saw your deprecation notice and have updated my keyboard shortcuts file like you mentioned but it still dosen't work in...
I had the same error but I just manually typed the default export: ```ts import algoliasearch, { AlgoliaSearchOptions, SearchClient } from "algoliasearch"; const algolia = algoliasearch as unknown as (...