jest.config.cjs 193 B

12345678
  1. /** @type {import('ts-jest').JestConfigWithTsJest} */
  2. module.exports = {
  3. testEnvironment: "jsdom",
  4. transform: {
  5. "^.+\\.(t|j)sx?$": ["@swc/jest"],
  6. },
  7. modulePathIgnorePatterns: ["e2e"],
  8. };