feat(#1): 项目创建向导页 - 5步向导(基本信息/章程/干系人/里程碑/确认)

This commit is contained in:
2026-04-11 18:35:20 +08:00
parent ed616a8de9
commit 9728dffdd9
5 changed files with 389 additions and 23 deletions

20
tsconfig.json Normal file
View File

@@ -0,0 +1,20 @@
{
"compilerOptions": {
"target": "ES2020",
"module": "ESNext",
"moduleResolution": "bundler",
"jsx": "react-jsx",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"declaration": true,
"outDir": "./dist",
"rootDir": "./src",
"baseUrl": "./src",
"paths": {
"@/*": ["./*"]
}
},
"include": ["src"]
}