/** @type {import('ts-jest/dist/types').InitialOptionsTsJest} */ module.exports = { preset: 'ts-jest', testEnvironment: 'node', setupFiles: [ '/test/setup.ts' ], testPathIgnorePatterns: ['/node_modules/', '/dist/'], globals: { 'ts-jest': { tsconfig: 'tsconfig.json', }, }, };