33 lines
864 B
JSON
33 lines
864 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"alwaysStrict": true,
|
|
"checkJs": true,
|
|
"composite": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"esModuleInterop": true,
|
|
"incremental": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "node",
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitOverride": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noPropertyAccessFromIndexSignature": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"resolveJsonModule": true,
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"strictBindCallApply": true,
|
|
"strictFunctionTypes": true,
|
|
"strictNullChecks": true,
|
|
"strictPropertyInitialization": true,
|
|
"target": "ES2022",
|
|
"useUnknownInCatchVariables": true
|
|
}
|
|
}
|