module.exports = { preset: 'ts-jest', testEnvironment: 'node', testMatch: ['**/tests/**/*.test.ts'], moduleNameMapper: { '^@/(.*)$': '/src/$1' }, setupFiles: ['/src/tests/setup.ts'], globals: { 'ts-jest': { tsconfig: 'tsconfig.json' } } };