Not officially supported version of typescript on `next lint`
Unanswered
Northeast Congo Lion posted this in #help-forum
Northeast Congo LionOP
Hi all, new to next.js and appreciate the forum!
I setup a new next app using
I setup a new next app using
npm create next-app. I think I updated some libraries due to a warning in the console. Now when I run npm lint, I get the warning below in the output. The lint goes fine, but I would like to fix the warning. I've included my dev dependencies. I have specified typescript: ^5.2.0–do I need to ask for exactly 5.2.0 and remove the caret? What is the right solution here? Thank you!=============
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.2.0
YOUR TYPESCRIPT VERSION: 5.4.2
Please only submit bug reports when using the officially supported version.
============= "devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.0.1",
"eslint": "^8.11.0",
"eslint-config-next": "14.1.2",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^4.2.1",
"postcss": "^8",
"prettier": "^3.2.5",
"tailwindcss": "^3.3.0",
"typescript": "^5.2.0"
},