I get the following error:
node_modules/@types/graphql/subscription/subscribe.d.ts(36,13): error TS2304: Cannot find name 'AsyncIterator'.
node_modules/@types/graphql/subscription/subscribe.d.ts(47,12): error TS2304: Cannot find name 'AsyncIterator'.
node_modules/@types/graphql/subscription/subscribe.d.ts(75,12): error TS2304: Cannot find name 'AsyncIterable'.
3:01:18 PM - Compilation complete. Watching for file changes.
Even with adding esnext to tsconfig file:
{
"compilerOptions": {
"outDir": "./dist/",
"lib": [
"esnext",
"esnext.asynciterable"
]
},
"include": [
"./src/**/*"
]
}
Any idea to solve this?