Failed to load plugin @typescript-eslint: Cannot find module 'eslint-plugin-@typescript-eslint' Failed to load plugin @typescript-eslint: Cannot find module 'eslint-plugin-@typescript-eslint' typescript typescript

Failed to load plugin @typescript-eslint: Cannot find module 'eslint-plugin-@typescript-eslint'


You need to upgrade your eslint version, in the error you can see a bad prefix eslint-plugin- due to some const in eslint/lib/config/plugins.js which was removed in later versions.


I fixed this error by replacing all the ^ to empty in the package.json, and then npm i.

enter image description here