feat: MVP v0.5 完成 - 全部14个P0功能
Some checks failed
CI / lint-and-typecheck (push) Failing after 31s
CI / test (push) Has been skipped
CI / build (push) Has been skipped

- P0-8: 决策交互卡片(飞书卡片+回调+4种模板)
- P0-10: 执行记录REST API(Hono框架+统计接口)
- P0-11: 创建流程串联(向导→章程→任务→看板→通知)
- P0-12: GitHub Actions CI/CD
- P0-14: Dockerfile + docker-compose部署
- 前端入口+Vite配置+项目结构完善
- CHANGELOG + PROGRESS更新
This commit is contained in:
2026-04-11 19:01:11 +08:00
parent 8df4ea3c30
commit 20d510d857
16 changed files with 878 additions and 44 deletions

View File

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