Files
archived-gitea-ai-assistant/tsconfig.json
accelerator 3a0cb36f02 feat(admin): 添加后台管理界面和Webhook管理功能
- 添加前端管理界面组件,包括仓库管理、数据表格和仓库表格列
- 添加后端管理API,支持仓库列表、Webhook创建和删除
- 更新Docker配置,支持前端和后端的多阶段构建
- 添加管理员认证功能,包括JWT令牌验证
- 更新配置文件,支持管理员密码和JWT密钥配置
- 更新README文档,添加后台管理功能说明和使用指南
- 优化.gitignore文件,简化Docker构建时的忽略规则
- 更新TypeScript配置,添加路径映射支持
2025-09-24 21:57:24 +08:00

53 lines
931 B
JSON

{
"compilerOptions": {
"target": "es2022",
"module": "commonjs",
"moduleResolution": "node",
"lib": [
"es2022"
],
"rootDir": "src",
"outDir": "dist",
"sourceMap": false,
"removeComments": true,
"strict": true,
"alwaysStrict": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"forceConsistentCasingInFileNames": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"downlevelIteration": true,
"declaration": true,
"esModuleInterop": true,
"pretty": true,
"skipLibCheck": true,
"paths": {
"@/*": [
"./src/*"
]
}
},
"include": [
"typings/**/*",
"src/**/*"
],
"exclude": [
"node_modules",
"dist"
]
}