Using eslint with typescript – Unable to resolve path to module
You can set the ESLint module import resolution by adding this snippet to your .eslintrc.json configuration file: { “settings”: { “import/resolver”: { “node”: { “extensions”: [“.js”, “.jsx”, “.ts”, “.tsx”] } } }, … } More informations about resolvers: https://github.com/benmosher/eslint-plugin-import#resolvers.