2025-06-04 23:10:59 +08:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2025-09-02 17:05:46 +08:00
|
|
|
"target": "es6",
|
|
|
|
|
"lib": ["es6", "dom"],
|
|
|
|
|
"module": "commonjs",
|
|
|
|
|
"experimentalDecorators": true, // 启用ES装饰器
|
2025-06-04 23:10:59 +08:00
|
|
|
"strict": true,
|
2025-09-02 17:05:46 +08:00
|
|
|
"noImplicitAny": true,
|
|
|
|
|
"strictNullChecks": true,
|
|
|
|
|
"noUncheckedIndexedAccess": true,
|
|
|
|
|
"noImplicitOverride": true,
|
|
|
|
|
"useUnknownInCatchVariables": true,
|
|
|
|
|
"exactOptionalPropertyTypes": true,
|
|
|
|
|
"noPropertyAccessFromIndexSignature": true,
|
2025-06-04 23:10:59 +08:00
|
|
|
"moduleResolution": "Node",
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"stripInternal": true,
|
2025-09-02 17:05:46 +08:00
|
|
|
"types": ["node"]
|
2025-06-04 23:10:59 +08:00
|
|
|
},
|
|
|
|
|
"include": [
|
|
|
|
|
"./src/**/*"
|
|
|
|
|
// "libs"
|
|
|
|
|
],
|
|
|
|
|
// 排除
|
|
|
|
|
"exclude": [
|
|
|
|
|
"node_modules",
|
|
|
|
|
"dist",
|
|
|
|
|
"build"
|
|
|
|
|
]
|
|
|
|
|
}
|