module.exports = { transform: { '^.+\\.(t|j)s$': [ 'ts-jest', { tsconfig: './tsconfig.json', }, ], }, testEnvironment: 'node', clearMocks: true, coverageProvider: 'v8', setupFilesAfterEnv: ['./jest.setup.ts'], testMatch: ['/tests/**/*.test.ts', '/src/**/*.test.ts'], testTimeout: 60000, modulePathIgnorePatterns: ['/.tmp/'], // NOTE: This should be kept in sync with tsconfig.json moduleNameMapper: { '^~/tests/(.*)$': '/tests/$1', '^~/(.*)$': '/src/$1', }, }