52 lines
1.3 KiB
JSON
52 lines
1.3 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"declaration": true,
|
|
"composite": true,
|
|
"tsBuildInfoFile": ".tsbuildinfo",
|
|
"downlevelIteration": true,
|
|
"importHelpers": true,
|
|
"incremental": true,
|
|
"lib": [
|
|
"ESNext",
|
|
"DOM"
|
|
],
|
|
"module": "CommonJS",
|
|
"outDir": "dist",
|
|
"removeComments": true,
|
|
"target": "ESNext",
|
|
"alwaysStrict": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"strict": true,
|
|
"strictBindCallApply": true,
|
|
"strictFunctionTypes": true,
|
|
"strictNullChecks": true,
|
|
"strictPropertyInitialization": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitReturns": true,
|
|
"noPropertyAccessFromIndexSignature": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"allowUnreachableCode": false,
|
|
"allowUnusedLabels": false,
|
|
"disableSizeLimit": true,
|
|
"explainFiles": false,
|
|
"extendedDiagnostics": false,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"importsNotUsedAsValues": "error",
|
|
"listEmittedFiles": false,
|
|
"listFiles": false,
|
|
"newLine": "lf",
|
|
"noEmitOnError": false,
|
|
"preserveConstEnums": true,
|
|
"traceResolution": false
|
|
},
|
|
"include": [
|
|
"src/**/*.ts"
|
|
]
|
|
}
|