jest-e2e.json 361 B

1234567891011121314151617
  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. "tsConfig": "<rootDir>/config/tsconfig.e2e.json",
  14. "diagnostics": false
  15. }
  16. }
  17. }