import type { JestConfigWithTsJest } from 'ts-jest'; const config: JestConfigWithTsJest = { transform: { '^.+\\.tsx?$': [ 'ts-jest', { // tsconfig: '../../tsconfig.json', useESM: true } ] }, testEnvironment: 'node' }; export default config;