module.exports = { preset: 'ts-jest', testEnvironment: 'node', roots: ['./test'], transform: { '\\.ts$': ['ts-jest'] }, testRegex: '(/test/.*|(\\.|/)(test|spec))\\.(ts)$', moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node'], moduleNameMapper: { 'src/(.*)': '/src/$1', 'test/(.*)': '/test/$1', }, globals: { 'ts-jest': { tsconfig: { // allow js in typescript allowJs: true, }, }, }, };