1// Solution: All you have to do is edit your TypeScript Config file
2// (tsconfig.json) and add a new key value pair as
3"noImplicitAny": false
1yarn add eslint-import-resolver-typescript -D
2
3// Add in .eslintrc
4"settings": {
5 "import/resolver": {
6 "typescript": {}
7 }
8 }
1When a module is not yours - try to install types from @types:
2
3npm install -D @types/module-name