/** @type {import('jest').Config} */ module.exports = { clearMocks: true, moduleFileExtensions: ['ts', 'js', 'json'], testEnvironment: 'node', testMatch: ['/tests/**/*.test.ts'], transform: { '^.+\\.ts$': [ 'ts-jest', { tsconfig: '/tsconfig.test.json', }, ], }, };