superlint/.github/linters/tsconfig.json

22 lines
316 B
JSON
Raw Normal View History

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