const path = require('path'); module.exports = { modulePaths: ['/dist'], transform: { '^.+\\.tsx?$': [ 'ts-jest', { tsconfig: '/tsconfig.test.json', }, ], }, verbose: true, setupFiles: [path.join(__dirname, 'jest.helpers.ts')], maxWorkers: '50%', testTimeout: 30000, };