module.exports = { verbose: true, transform: { '^.+\\.ts$': 'ts-jest', }, testURL: 'http://localhost/', testRegex: '(/__tests__/.*|(\\.|/)(test))\\.ts$', testPathIgnorePatterns: ['/dist/', '/node_modules/'], moduleFileExtensions: ['ts', 'js', 'json'], globals: { 'ts-jest': { isolatedModules: true, }, }, globalTeardown: '/test/teardown.ts', setupFiles: ['/test/setup.ts'], };