What worked for me was on the .eslintrc of the folder you are on to add:
parserOptions: {
project: 'tsconfig.json',
tsconfigRootDir: __dirname // <-- this did the trick for me
}
What worked for me was on the .eslintrc of the folder you are on to add:
parserOptions: {
project: 'tsconfig.json',
tsconfigRootDir: __dirname // <-- this did the trick for me
}