Problem Description
I am getting some error in my terminal and it says I need to use 4.4.0 version and my current version is ...
In my project my current TypeScript version is given below,
```json
"typescript": "^4.4.2",
"typedoc": "^0.21.8",
"react-scripts": "^3.4.4",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
````
Moreover, when I am trying to run **`npm run dev`** commands or **`npx eslint .`** this error is showing me which is given below,
```none
=============
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.4.0
YOUR TYPESCRIPT VERSION: 4.4.2
Please only submit bug reports when using the officially supported
version.
=============
```
How can I fix this issue and I have done a lot of research in Google but nothing is working.
AI-Generated Solution
Powered by LMSouq AI · GPT-4.1-mini
Analyzing problem and generating solution…
Was this solution helpful?