- 修复路由配置,实现根路径自动重定向到/project - 新增Gitea OAuth认证系统和相关组件 - 完善日志系统实现,包含pino日志工具和中间件 - 重构页面结构,分离项目管理和环境管理页面 - 新增CORS、Session等关键中间件 - 优化前端请求封装和类型定义 - 修复TypeScript类型错误和参数传递问题
32 lines
747 B
JSON
32 lines
747 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["DOM", "ES2020"],
|
|
"jsx": "react-jsx",
|
|
"target": "ES2020",
|
|
"noEmit": true,
|
|
"skipLibCheck": true,
|
|
"useDefineForClassFields": true,
|
|
|
|
/* modules */
|
|
"module": "ESNext",
|
|
"moduleDetection": "force",
|
|
"moduleResolution": "bundler",
|
|
"verbatimModuleSyntax": true,
|
|
"resolveJsonModule": true,
|
|
"allowImportingTsExtensions": true,
|
|
"noUncheckedSideEffectImports": true,
|
|
|
|
/* type checking */
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"paths": {
|
|
"@pages/*": ["./src/pages/*"],
|
|
"@styles/*": ["./src/styles/*"],
|
|
"@assets/*": ["./src/assets/*"],
|
|
"@shared": ["./src/shared"]
|
|
}
|
|
},
|
|
"include": ["src"]
|
|
}
|