Files
pmp-tool/tsconfig.json
xiaohei 20d510d857
Some checks failed
CI / lint-and-typecheck (push) Failing after 31s
CI / test (push) Has been skipped
CI / build (push) Has been skipped
feat: MVP v0.5 完成 - 全部14个P0功能
- P0-8: 决策交互卡片(飞书卡片+回调+4种模板)
- P0-10: 执行记录REST API(Hono框架+统计接口)
- P0-11: 创建流程串联(向导→章程→任务→看板→通知)
- P0-12: GitHub Actions CI/CD
- P0-14: Dockerfile + docker-compose部署
- 前端入口+Vite配置+项目结构完善
- CHANGELOG + PROGRESS更新
2026-04-11 19:01:11 +08:00

25 lines
544 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "bundler",
"jsx": "react-jsx",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"outDir": "./dist",
"rootDir": "./src",
"baseUrl": ".",
"paths": {
"@/*": ["src/*"]
}
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"]
}