/** @type {import('ts-jest/dist/types').InitialOptionsTsJest} */ module.exports = { preset: "ts-jest/presets/js-with-ts", testEnvironment: "node", testPathIgnorePatterns: ["/__fixtures__/", "/__tests__/test-utils.ts"], coveragePathIgnorePatterns: ["/__fixtures__/", "/__tests__/test-utils.ts"], transformIgnorePatterns: ["/node_modules/(?!(ansi-regex)/)"], modulePathIgnorePatterns: ["/node_modules", "/dist"], collectCoverage: true, verbose: true, coverageThreshold: { global: { branches: 83, functions: 87, lines: 93, statements: 93, }, }, };