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