- 添加 docker-compose.local.yml(MySQL/Redis/Qdrant 本地基础设施) - 添加 mysql.conf.d 本地 MySQL 低资源配置 - RAG Worker Python 3.9 兼容(from __future__ import annotations) - 同步最新业务代码变更
21 lines
466 B
JSON
21 lines
466 B
JSON
{
|
|
"moduleFileExtensions": ["js", "json", "ts"],
|
|
"rootDir": "..",
|
|
"roots": ["<rootDir>/src"],
|
|
"testEnvironment": "node",
|
|
"testRegex": ".*\\.spec\\.ts$",
|
|
"testPathIgnorePatterns": [
|
|
"\\.integration-spec\\.ts$",
|
|
"\\.integration\\.spec\\.ts$",
|
|
"\\.worker-int-spec\\.ts$",
|
|
"\\.e2e-spec\\.ts$"
|
|
],
|
|
"transform": {
|
|
"^.+\\.(t|j)s$": "ts-jest"
|
|
},
|
|
"collectCoverageFrom": [
|
|
"src/**/*.(t|j)s"
|
|
],
|
|
"coverageDirectory": "./coverage"
|
|
}
|