jest-e2e.json 398 B

123456789101112131415161718
  1. {
  2. "moduleFileExtensions": ["js", "json", "ts"],
  3. "moduleNameMapper": {
  4. "shared/(.*)": "<rootDir>/../../shared/$1.ts"
  5. },
  6. "rootDir": "../",
  7. "testRegex": ".e2e-spec.ts$",
  8. "transform": {
  9. "^.+\\.(t|j)s$": "ts-jest"
  10. },
  11. "globals": {
  12. "ts-jest": {
  13. "skipBabel": true,
  14. "tsConfigFile": "<rootDir>/config/tsconfig.e2e.json",
  15. "enableTsDiagnostics": false
  16. }
  17. }
  18. }