module.exports = { testEnvironment: 'node', preset: 'ts-jest', setupFiles: ['/jest.setup.js'], transform: { '^.+\\.(t|j)sx?$': 'ts-jest' }, testRegex: '(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$', moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node'], testPathIgnorePatterns: ['/.next/', '/node_modules/'], globals: { 'ts-jest': { 'ts-config': '/tsconfig.jest.json' } }, }