module.exports = { testEnvironment: 'node', collectCoverage: true, coverageThreshold: { global: { branches: 70, functions: 70, lines: 70, statements: 70 } }, testMatch: ['**/__tests__/**/*.test.ts', '**/*.test.ts'], moduleFileExtensions: ['ts', 'js', 'json'], transform: { '^.+\\.ts$': 'ts-jest' } };