I have a simple Node/Express app made with Typescript. And eslint give me the error
Missing file extension "ts" for "./lib/env" import/extensi
Add this to rules in your eslint config:
rules
"rules": { "import/extensions": "off" }
This disables the rule, since airbnb's config enables it.
airbnb