module.exports = { testEnvironment: 'jsdom', extensionsToTreatAsEsm: ['.ts', '.tsx'], moduleNameMapper: { '^(\\.{1,2}/.*)\\.js$': '$1', }, transform: { '^.+\\.tsx?$': [ 'ts-jest', { tsconfig: 'tsconfig.test.json', useESM: true }, ], }, };