ESLint couldn't find the plugin "eslint-plugin-@typescript-eslint" ESLint couldn't find the plugin "eslint-plugin-@typescript-eslint" typescript typescript

ESLint couldn't find the plugin "eslint-plugin-@typescript-eslint"


Solution was simply to upgrade to the latest version of eslint


Not sure if it's still not resolved. But adding '"root": true' to my .eslintrc.json helped me.


my solution on Mac was like

  • go to global node_modules cd /usr/local/lib/node_modules/
  • delete global eslint rm -rf eslint
  • run the command once again eslint index.js app storybook test --fix --ext .js,.ts,.tsx
  • profit