superlint/.github/linters/tsconfig.json

13 lines
264 B
JSON
Raw Normal View History

{
"compilerOptions": {
"strictNullChecks": true
},
2024-08-15 04:21:26 -04:00
"include": ["src", "tests", "tools", "/tmp/lint/test/linters"],
"overrides": [
{
2024-08-15 04:21:26 -04:00
"extends": ["plugin:@typescript-eslint/disable-type-checked"],
"files": ["./**/*.{ts,tsx}"]
}
]
}