superlint/.github/linters/tsconfig.json
Zack Koppert 102cb5dc38
Add exception for type-linting (#4470)
* Add exception for type-linting

since we are linting file by file to avoid running into https://typescript-eslint.io/linting/troubleshooting#i-get-errors-telling-me-eslint-was-configured-to-run--however-that-tsconfig-does-not--none-of-those-tsconfigs-include-this-file

* Update tsconfig.json

* remove trailing commas for last entries
2023-09-17 12:35:36 +00:00

17 lines
288 B
JSON

{
"compilerOptions": {
"strictNullChecks": true
},
"include": [
"src",
"tests",
"tools",
"/tmp/lint/.automation/test"
],
"overrides": [
{
"extends": ["plugin:@typescript-eslint/disable-type-checked"],
"files": ["./**/*.{ts,tsx}"]
}
]
}