chore:更新配置文件和项目文档

- 更新tsconfig.json配置以支持新的模块结构
- 添加REFACTORING_SUMMARY.md记录重构过程
- 更新git_commit_guide.md完善提交规范
- 添加相关图片资源

这些配置和文档更新支持项目架构重构后的正常运行
This commit is contained in:
moyin
2025-12-31 15:45:26 +08:00
parent 2d10131838
commit faf93a30e1
4 changed files with 170 additions and 2 deletions

View File

@@ -1,15 +1,16 @@
{
"compilerOptions": {
"target": "ES2020",
"module": "Node16",
"module": "commonjs",
"lib": ["ES2020"],
"moduleResolution": "node16",
"moduleResolution": "node",
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"noImplicitAny": false,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,