保存一下

This commit is contained in:
2025-09-10 15:44:10 +08:00
parent 7cbb37d542
commit dc25d283d8
8 changed files with 212 additions and 614 deletions

View File

@@ -8,16 +8,16 @@
"paths": {
"@/*": ["./src/*"]
},
"experimentalDecorators": true,
"target": "es2021",
"lib": ["es2021", "dom"],
"module": "ESNext",
"strict": true, // 严格模式检查
"experimentalDecorators": true,
"strictPropertyInitialization": false, // 严格属性初始化检查
"noUnusedLocals": false, // 检查未使用的局部变量
"noUnusedParameters": false, // 检查未使用的参数
"noImplicitReturns": true, // 检查函数所有路径是否都有返回值
"noImplicitOverride": true, // 检查子类是否正确覆盖了父类方法
"allowSyntheticDefaultImports": true // 允许使用默认导入
"allowSyntheticDefaultImports": true, // 允许使用默认导入
}
}