12 lines
320 B
JSON
12 lines
320 B
JSON
|
|
{
|
||
|
|
"extends": "astro/tsconfigs/strict",
|
||
|
|
"include": [".astro/types.d.ts", "src/**/*", "tests/**/*", "scripts/**/*"],
|
||
|
|
"exclude": ["dist", "node_modules"],
|
||
|
|
"compilerOptions": {
|
||
|
|
"noUnusedLocals": true,
|
||
|
|
"noUnusedParameters": true,
|
||
|
|
"noFallthroughCasesInSwitch": true,
|
||
|
|
"verbatimModuleSyntax": true
|
||
|
|
}
|
||
|
|
}
|