Open
Description
Why
- When you are using typescript version >= 4.8.0, you will get the following warning:
> eslint .
=============
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 <4.8.0
YOUR TYPESCRIPT VERSION: 4.9.5
Please only submit bug reports when using the officially supported version.
=============
- So we need to update @typescript-eslint/parser to the newer version as @typescript-eslint/typescript-estree is depended on that package.
Who Benefits?
Developers