Files
archived-gitea-ai-assistant/tsconfig.json
accelerator b4feb0a822 ci: 添加GitHub Actions CI/CD流水线
- CI: PR触发自动化测试(lint + type check + bun test)
- CD: push到main/tag触发Docker镜像构建并发布到GHCR
- 修复Dockerfile中bun.lockb→bun.lock引用
- 修复tsconfig.json排除测试文件避免dist中重复
- 修复file-review-store测试排序时间戳竞态
2026-03-01 14:47:22 +08:00

55 lines
978 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",
"src/**/__tests__/**",
"src/**/*.test.ts"
]
}