1 import type { JestConfigWithTsJest } from 'ts-jest';
3 const jestConfig: JestConfigWithTsJest = {
4 // Default is 5000 (5seconds)
15 setupFilesAfterEnv: ['./jest.setup.ts'],
16 testEnvironment: 'jsdom',
17 moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node'],
20 export default jestConfig;