forked from Cutlery/immich
* refactor(server): system config * fix: jest circular import * chore: ignore migrations in coverage report * chore: tests * chore: tests * chore: todo note * chore: remove vite config backup * chore: fix redis hostname
16 lines
469 B
JSON
16 lines
469 B
JSON
{
|
|
"moduleFileExtensions": ["js", "json", "ts"],
|
|
"rootDir": ".",
|
|
"testEnvironment": "node",
|
|
"testRegex": ".e2e-spec.ts$",
|
|
"transform": {
|
|
"^.+\\.(t|j)s$": "ts-jest"
|
|
},
|
|
"moduleNameMapper": {
|
|
"^@app/common": "<rootDir>../../../libs/common/src",
|
|
"^@app/storage(|/.*)$": "<rootDir>../../../libs/storage/src/$1",
|
|
"^@app/infra(|/.*)$": "<rootDir>../../../libs/infra/src/$1",
|
|
"^@app/domain(|/.*)$": "<rootDir>../../../libs/domain/src/$1"
|
|
}
|
|
}
|