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