Archived
0
0
Fork 0
This repository has been archived on 2024-02-06. You can view files and clone it, but cannot push or open issues or pull requests.
library/tsconfig.json

49 lines
1.2 KiB
JSON
Raw Normal View History

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,
"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
}