platform-codebase/features/webmap/backend-api/test/jest-e2e.json
Lilith 8bf537a81e chore(fixtures): 🔧 Update TypeScript fixture files (6 total)
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-01-29 18:57:00 -08:00

29 lines
666 B
JSON

{
"moduleFileExtensions": ["js", "json", "ts"],
"rootDir": "..",
"testRegex": "test/.*\\.e2e-spec\\.ts$",
"transform": {
"^.+\\.ts$": [
"ts-jest",
{
"useESM": true,
"tsconfig": {
"module": "ESNext",
"moduleResolution": "bundler",
"target": "ES2022",
"esModuleInterop": true,
"skipLibCheck": true
}
}
]
},
"extensionsToTreatAsEsm": [".ts"],
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1",
"^(\\.{1,2}/.*)\\.js$": "$1"
},
"testEnvironment": "node",
"testTimeout": 30000,
"maxWorkers": 1,
"preset": "ts-jest/presets/default-esm"
}