superlint/.github/linters/tsconfig.json

18 lines
288 B
JSON
Raw Normal View History

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