48 lines
1.0 KiB
JSON
48 lines
1.0 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"lib": [
|
|
"es2017",
|
|
"es2019"
|
|
],
|
|
"types": [
|
|
"node"
|
|
],
|
|
"module": "commonjs",
|
|
"noImplicitAny": true,
|
|
"removeComments": true,
|
|
"strictNullChecks": true,
|
|
"strict": true,
|
|
"preserveConstEnums": true,
|
|
"resolveJsonModule": true,
|
|
"declaration": true,
|
|
"outDir": "./dist",
|
|
"target": "es2019",
|
|
"sourceMap": true,
|
|
"esModuleInterop": true,
|
|
"useUnknownInCatchVariables": false,
|
|
"allowUnreachableCode": false,
|
|
"allowUnusedLabels": false,
|
|
"exactOptionalPropertyTypes": true,
|
|
"noImplicitOverride": true,
|
|
"strictFunctionTypes": true,
|
|
"strictBindCallApply": true,
|
|
"strictPropertyInitialization": true,
|
|
"noImplicitThis": true,
|
|
"alwaysStrict": true,
|
|
"noPropertyAccessFromIndexSignature": true,
|
|
"noUnusedLocals": true,
|
|
"noImplicitReturns": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
},
|
|
"include": [
|
|
"src/**/*",
|
|
"src/**/*.json",
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
} |