2025-06-07 20:32:43 +08:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2025-06-08 10:20:51 +08:00
|
|
|
"target": "ES2020",
|
2025-06-09 10:42:19 +08:00
|
|
|
"module": "ES2020",
|
2025-06-07 20:32:43 +08:00
|
|
|
"moduleResolution": "node",
|
|
|
|
|
"lib": ["ES2020", "DOM"],
|
|
|
|
|
"outDir": "./bin",
|
|
|
|
|
"rootDir": "./src",
|
|
|
|
|
"strict": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"declarationMap": true,
|
|
|
|
|
"sourceMap": true,
|
|
|
|
|
"removeComments": false,
|
|
|
|
|
"noImplicitAny": true,
|
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
|
"noImplicitThis": true,
|
|
|
|
|
"noUnusedLocals": false,
|
|
|
|
|
"noUnusedParameters": false,
|
|
|
|
|
"exactOptionalPropertyTypes": false,
|
|
|
|
|
"noImplicitOverride": true,
|
|
|
|
|
"noPropertyAccessFromIndexSignature": false,
|
|
|
|
|
"noUncheckedIndexedAccess": false,
|
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
|
"importHelpers": false,
|
2025-06-09 10:42:19 +08:00
|
|
|
"downlevelIteration": true,
|
|
|
|
|
"isolatedModules": false,
|
|
|
|
|
"allowJs": true,
|
|
|
|
|
"resolveJsonModule": true
|
2025-06-07 20:32:43 +08:00
|
|
|
},
|
|
|
|
|
"include": [
|
|
|
|
|
"src/**/*"
|
|
|
|
|
],
|
|
|
|
|
"exclude": [
|
|
|
|
|
"node_modules",
|
|
|
|
|
"bin",
|
|
|
|
|
"**/*.test.ts",
|
|
|
|
|
"**/*.spec.ts"
|
|
|
|
|
]
|
2020-06-08 11:49:45 +08:00
|
|
|
}
|