We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Upgrading from version 1 to version 2 in a Typescript project, upon compilation I get the following error:
[tsc] node_modules/@vaadin/router/dist/resolver/resolver.d.ts(11,49): error TS2304: Cannot find name 'ErrorOptions'.
here is my tsconfig.json:
{ "compilerOptions": { "allowSyntheticDefaultImports": true, "esModuleInterop": false, "experimentalDecorators": true, "importHelpers": true, "inlineSources": true, "lib": ["es2021", "dom", "dom.iterable"], "module": "es2020", "moduleResolution": "node", "noEmitOnError": true, "outDir": "out", "sourceMap": true, "target": "es2021", "strict": false, "useDefineForClassFields": false }, "include": [ "src/**/*.ts" ] }
Typescript version 5.6.3.
The text was updated successfully, but these errors were encountered:
ErrorOptions requires es2022, is it expected?
Sorry, something went wrong.
Thanks for pointing out. The fix will be released in v2.0.1 soon.
Successfully merging a pull request may close this issue.
Upgrading from version 1 to version 2 in a Typescript project, upon compilation I get the following error:
here is my tsconfig.json:
Typescript version 5.6.3.
The text was updated successfully, but these errors were encountered: