/** @type {import('ts-jest').JestConfigWithTsJest} */ module.exports = { extensionsToTreatAsEsm: ['.ts'], moduleNameMapper: { '^(\\.{1,2}/.*)\\.js$': '$1', }, testPathIgnorePatterns: ['dist'], transform: { '^.+\\.tsx?$': [ 'ts-jest', { useESM: true, }, ], }, };