[Vuejs]-Installing TypeScript w/Vue CLI returns *Cannot find module 'eslint-plugin-@typescript-eslint'*

1👍

Try this

Inside your src folder add below type definition file (creating a new ts definition file)

ambient.d.ts

and declare the module like below

declare module 'eslint-plugin-@typescript-eslint'

Leave a comment