module.exports = { preset: 'ts-jest', testEnvironment: 'node', moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx'], transform: { '^.+\\.(ts|tsx)$': 'ts-jest', }, testMatch: ['**/__tests__/**/*.(ts|tsx|js)', '**/*.(test|spec).(ts|tsx|js)'], moduleNameMapper: { '^@/(.*)$': '/src/$1', }, };