module.exports = { "collectCoverage": true, "preset": "jest-preset-angular", "testEnvironment": "jsdom", "roots": [ "/src" ], "moduleNameMapper": { "@app/(.*)$": "/src/app/$1", "@env/(.*)": "/src/environments/$1" }, "setupFilesAfterEnv": [ "/src/setup-jest.ts" ], "transformIgnorePatterns": [ "node_modules/(?!@ngrx|(?!deck.gl)|ng-dynamic)" ], "transform": { "^.+.(ts|mjs|js|html)$": "jest-preset-angular" }, "testPathIgnorePatterns": [ "/node_modules/", "/dist/", "/src/test.ts" ], "globals": { "ts-jest": { "isolatedModules": true, "useESM": "true", "tsconfig": "/tsconfig.spec.json", "stringifyContentPathRegex": "\\.html$" } }, "moduleFileExtensions": [ "ts", "html", "js", "json", "mjs" ], "coveragePathIgnorePatterns": [ "node_modules", "test-config", "interfaces", "jestGlobalMocks.ts", "/src/app/main.ts", ".mock.ts" ], "modulePathIgnorePatterns": [] }