Instead of having different ESLint configuration files in each directory which don't seem to inherit the configuration correctly, this will add `overrides` in the root file.
12 lines
253 B
JSON
12 lines
253 B
JSON
{
|
|
"extends": "../tsconfig.json",
|
|
"include": ["**/*.ts", "../src/**/*.ts", "**/.eslintrc.js", "**/*.config.js"],
|
|
"exclude": [],
|
|
"compilerOptions": {
|
|
"noEmit": true,
|
|
"resolveJsonModule": true,
|
|
"rootDir": "..",
|
|
"jsx": "react"
|
|
}
|
|
}
|