feat: 增强 Chat 能力并补充单机部署方案

完善会话消息删除、Qwen 联网搜索/深度思考参数与 SSE 来源事件,同时增加请求体日志与 TS6 配置兼容调整,并新增 Ubuntu+PM2+Nginx 的部署文档与脚本以支持可回滚发布。

Made-with: Cursor
This commit is contained in:
2026-04-23 22:31:18 +08:00
parent 32303d099a
commit 132f51705e
12 changed files with 685 additions and 60 deletions

View File

@@ -1,6 +1,6 @@
{
"compilerOptions": {
"module": "commonjs",
"module": "Node16",
"declaration": false,
"removeComments": true,
"emitDecoratorMetadata": true,
@@ -10,23 +10,21 @@
"rootDir": "./src",
"sourceMap": true,
"outDir": "./dist",
"baseUrl": "./",
"incremental": true,
"strict": true,
"noImplicitAny": false,
"strictNullChecks": true,
"moduleResolution": "node",
"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/*"]
"@common/*": ["./src/common/*"],
"@config/*": ["./src/config/*"],
"@apps/*": ["./src/apps/*"],
"@shared/*": ["./src/apps/shared-domain/*"],
"@prisma/*": ["./src/prisma/*"]
},
"ignoreDeprecations": "6.0"
},
"include": ["src/**/*", "prisma/**/*"],
"exclude": ["node_modules", "dist"]