mirror of
https://github.com/jeffusion/gitea-ai-assistant.git
synced 2026-03-27 10:05:50 +00:00
- CI: PR触发自动化测试(lint + type check + bun test) - CD: push到main/tag触发Docker镜像构建并发布到GHCR - 修复Dockerfile中bun.lockb→bun.lock引用 - 修复tsconfig.json排除测试文件避免dist中重复 - 修复file-review-store测试排序时间戳竞态
55 lines
978 B
JSON
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"
|
|
]
|
|
}
|