2021-09-14 14:50:57 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"strict": true,
|
|
|
|
"strictNullChecks": true,
|
2022-10-20 05:37:02 +08:00
|
|
|
"noUnusedLocals": false,
|
2021-09-14 14:50:57 +08:00
|
|
|
"noUnusedParameters": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"noImplicitThis": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
2024-08-15 09:22:33 +08:00
|
|
|
"forceConsistentCasingInFileNames": true,
|
2021-09-14 14:50:57 +08:00
|
|
|
"declaration": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"incremental": true,
|
|
|
|
"inlineSourceMap": true,
|
|
|
|
"inlineSources": true,
|
|
|
|
"preserveSymlinks": true,
|
|
|
|
"removeComments": false,
|
2022-08-26 18:34:54 +08:00
|
|
|
"skipLibCheck": true,
|
2024-08-16 06:22:07 +08:00
|
|
|
"allowImportingTsExtensions": true,
|
|
|
|
"noEmit": true,
|
2024-02-17 18:00:18 +08:00
|
|
|
// target Node.js 12 https://node.green/#ES2019
|
2024-08-16 06:02:03 +08:00
|
|
|
"lib": ["ES2019"],
|
2023-05-25 14:48:26 +08:00
|
|
|
"target": "ESNext",
|
2021-09-14 14:50:57 +08:00
|
|
|
"allowJs": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"resolveJsonModule": true,
|
2023-05-25 15:17:16 +08:00
|
|
|
"module": "ESNext",
|
2021-09-14 14:50:57 +08:00
|
|
|
"moduleResolution": "node",
|
|
|
|
"importHelpers": false,
|
2021-09-14 16:13:29 +08:00
|
|
|
"outDir": "./dist"
|
2021-09-14 14:50:57 +08:00
|
|
|
},
|
2021-09-14 16:13:29 +08:00
|
|
|
"compileOnSave": false,
|
2023-07-20 17:58:51 +08:00
|
|
|
"include": [
|
|
|
|
"./src",
|
2024-08-16 08:01:33 +08:00
|
|
|
"./dev/",
|
|
|
|
"./*.ts"
|
2023-07-20 17:58:51 +08:00
|
|
|
]
|
2021-09-14 14:50:57 +08:00
|
|
|
}
|