2021-07-03 03:01:50 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2021-07-04 01:32:01 +00:00
|
|
|
"declaration": true,
|
2021-07-03 03:01:50 +00:00
|
|
|
"lib": [
|
2021-07-06 18:35:53 +00:00
|
|
|
"ES2021",
|
2021-07-03 03:01:50 +00:00
|
|
|
"DOM"
|
|
|
|
],
|
2021-07-05 22:06:11 +00:00
|
|
|
"module": "CommonJS",
|
2021-07-03 03:01:50 +00:00
|
|
|
"outDir": "dist",
|
2021-07-06 18:18:38 +00:00
|
|
|
"removeComments": false,
|
2021-07-06 18:35:53 +00:00
|
|
|
"target": "ES2021",
|
2021-07-03 03:01:50 +00:00
|
|
|
"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,
|
2021-07-06 17:52:36 +00:00
|
|
|
"traceResolution": false,
|
2021-07-06 20:53:54 +00:00
|
|
|
"moduleResolution": "Node"
|
2021-07-03 03:01:50 +00:00
|
|
|
},
|
|
|
|
"include": [
|
2021-07-04 01:32:01 +00:00
|
|
|
"src/**/*.ts"
|
2021-07-03 03:01:50 +00:00
|
|
|
]
|
2021-07-05 22:55:30 +00:00
|
|
|
}
|