Files
chat-one-service/tsconfig.json
alboped 132f51705e feat: 增强 Chat 能力并补充单机部署方案
完善会话消息删除、Qwen 联网搜索/深度思考参数与 SSE 来源事件,同时增加请求体日志与 TS6 配置兼容调整,并新增 Ubuntu+PM2+Nginx 的部署文档与脚本以支持可回滚发布。

Made-with: Cursor
2026-04-23 22:31:18 +08:00

33 lines
838 B
JSON

{
"compilerOptions": {
"module": "Node16",
"declaration": false,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"target": "ES2021",
"rootDir": "./src",
"sourceMap": true,
"outDir": "./dist",
"incremental": true,
"strict": true,
"noImplicitAny": false,
"strictNullChecks": true,
"moduleResolution": "node16",
"esModuleInterop": true,
"skipLibCheck": true,
"types": ["node"],
"paths": {
"@common/*": ["./src/common/*"],
"@config/*": ["./src/config/*"],
"@apps/*": ["./src/apps/*"],
"@shared/*": ["./src/apps/shared-domain/*"],
"@prisma/*": ["./src/prisma/*"]
},
},
"include": ["src/**/*", "prisma/**/*"],
"exclude": ["node_modules", "dist"]
}