module.exports = { preset: 'ts-jest', testEnvironment: 'jsdom', setupFilesAfterEnv: ['/jest.setup.js'], moduleNameMapping: { '^@/(.*)$': '/src/$1', }, testMatch: [ '**/__tests__/**/*.(ts|tsx|js)', '**/*.(test|spec).(ts|tsx|js)', ], transform: { '^.+\\.(ts|tsx)$': 'ts-jest', }, }