19 lines
535 B
JSON
19 lines
535 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "ES2022",
|
||
|
"strict": true,
|
||
|
"exactOptionalPropertyTypes": true,
|
||
|
"noImplicitReturns": true,
|
||
|
"noImplicitOverride": true,
|
||
|
"noImplicitAny": true,
|
||
|
"noUnusedLocals": true,
|
||
|
"noUnusedParameters": true,
|
||
|
"noFallthroughCasesInSwitch": true,
|
||
|
"noUncheckedIndexedAccess": true,
|
||
|
"noPropertyAccessFromIndexSignature": true,
|
||
|
"removeComments": true,
|
||
|
"outDir": "build/target",
|
||
|
},
|
||
|
"include": ["src/**/*"],
|
||
|
}
|