module.exports = { preset: 'ts-jest', testEnvironment: 'node', testMatch: ['**/test/**/*.ts'], moduleNameMapper: { '^@/(.*)$': '<rootDir>/src/$1' }, transform: { '^.+\\.tsx?$': ['ts-jest', { tsconfig: 'tsconfig.json' }] } };