- 更新tsconfig.json配置以支持新的模块结构 - 添加REFACTORING_SUMMARY.md记录重构过程 - 更新git_commit_guide.md完善提交规范 - 添加相关图片资源 这些配置和文档更新支持项目架构重构后的正常运行
26 lines
671 B
JSON
26 lines
671 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"module": "commonjs",
|
|
"lib": ["ES2020"],
|
|
"moduleResolution": "node",
|
|
"declaration": true,
|
|
"removeComments": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"noImplicitAny": false,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"outDir": "./dist",
|
|
"incremental": true,
|
|
"strictNullChecks": false,
|
|
"typeRoots": ["./node_modules/@types"]
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|