module.exports = { preset: "ts-jest", moduleNameMapper: { '^@/(.*)$': '/src/$1' }, testMatch: [ '**/tests/unit/**/*.spec.(js|ts)|**/__tests__/*.(js|ts)' ], globals: { 'ts-jest': { packageJson: 'package.json', }, }, verbose: false, };