/** @type {import('ts-jest').JestConfigWithTsJest} */ module.exports = { preset: "ts-jest", testEnvironment: "node", testPathIgnorePatterns: ["dist", "/__utils__/"], testMatch: [ "**/__tests__/**/*.[jt]s?(x)", "**/pipeline/examples/**/*.[jt]s?(x)", ], setupFiles: ["./jest/setup.ts"], };