Typescript warning after updating to Nuxt 3.6
After updating to nuxt 3.6 in the console even I don't have typescript or @typescript-eslint/typescript-estree installed or mentioned in my package.json, but it appears in pnpm-lock or package-lock
this typescript warning started to show:
WARNING: You are currently running a version of TypeScript which is not officially supported by @typescript-eslint/typescript-estree.
You may find that it works just fine, or you may not.
SUPPORTED TYPESCRIPT VERSIONS: >=3.3.1 <5.1.0
YOUR TYPESCRIPT VERSION: 5.1.3
Please only submit bug reports when using the officially supported version.
Any idea if this will affect production sites with external libraries?4 Replies
I have found this: https://stackoverflow.com/questions/66012761/version-of-typescript-not-officially-supported-by-typescript-eslint-parser
https://github.com/tsuki-lab/nextjs-latest-starter/issues/97
Stack Overflow
Version of TypeScript not officially supported by typescript-eslint...
I inherited an old AngularJs application which use the legacy tools: bower and grunt.
When I run grunt serve --reload, I have the following warning message:
WARNING: You are currently running a ver...
GitHub
TypeScript 5.1.3 version warning with @typescript-eslint/typescript...
Environment Repository: https://github.com/tsuki-lab/nextjs-latest-starter/tree/0.9.1 Issue Description When running the yarn lint command, a warning is received indicating that the TypeScript vers...
i don't have any issues for now
Thats not a TypeScript Warning, its an warning of the eslint plugin. You can ignore it until it get fixed by @typescript-eslint
❤️