48 lines
1.2 KiB
JSON
48 lines
1.2 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"module": "ESNext",
|
|
"lib": [
|
|
"ES2020",
|
|
"DOM",
|
|
"DOM.Iterable"
|
|
],
|
|
"skipLibCheck": true,
|
|
// Strict mode (9)
|
|
"strict": true,
|
|
"alwaysStrict": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"strictNullChecks": true,
|
|
"strictBindCallApply": true,
|
|
"strictFunctionTypes": true,
|
|
"strictPropertyInitialization": true,
|
|
"useUnknownInCatchVariables": true,
|
|
// No unused code (4)
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"allowUnusedLabels": false,
|
|
"allowUnreachableCode": false,
|
|
// No implicit code (2)
|
|
"noImplicitOverride": true,
|
|
"noImplicitReturns": true,
|
|
/* Bundler mode */
|
|
"moduleResolution": "bundler",
|
|
"esModuleInterop": true,
|
|
"allowImportingTsExtensions": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
// Others (5)
|
|
"noUncheckedIndexedAccess": true,
|
|
"noPropertyAccessFromIndexSignature": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"exactOptionalPropertyTypes": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"include": [
|
|
"src",
|
|
"../definitions/"
|
|
]
|
|
}
|