- 重构sys模块架构,严格按admin/api/core分层 - 对齐所有sys实体与数据库表结构 - 实现完整的adminapi控制器,匹配PHP/Java契约 - 修复依赖注入问题,确保服务正确注册 - 添加自动迁移工具和契约验证 - 完善多租户支持和审计功能 - 统一命名规范,与PHP业务逻辑保持一致
37 lines
1.0 KiB
JSON
37 lines
1.0 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"module": "nodenext",
|
|
"moduleResolution": "nodenext",
|
|
"resolvePackageJsonExports": true,
|
|
"esModuleInterop": true,
|
|
"isolatedModules": true,
|
|
"declaration": true,
|
|
"removeComments": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"target": "ES2023",
|
|
"sourceMap": true,
|
|
"outDir": "./dist",
|
|
"baseUrl": "./",
|
|
"incremental": true,
|
|
"skipLibCheck": true,
|
|
"strictNullChecks": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noImplicitAny": true,
|
|
"strictBindCallApply": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"paths": {
|
|
"@wwj/*": ["src/*"],
|
|
"@wwjCore": ["src/core/base/index"],
|
|
"@wwjCore/*": ["src/core/*"],
|
|
"@wwjConfig": ["src/config/index"],
|
|
"@wwjConfig/*": ["src/config/*"],
|
|
"@wwjCommon": ["src/common/index"],
|
|
"@wwjCommon/*": ["src/common/*"],
|
|
"@wwjVendor": ["src/vendor/index"],
|
|
"@wwjVendor/*": ["src/vendor/*"]
|
|
}
|
|
}
|
|
}
|