/** @type { import('@jest/types').Config.InitialOptions } */ module.exports = { globals: { 'ts-jest': { isolatedModules: true, }, }, moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node'], testEnvironment: 'node', transform: { '^.+\\.tsx?$': 'ts-jest', }, testMatch: [ '**/*.test.ts', ], verbose: false, resetMocks: true, resetModules: true, collectCoverage: false, };