jest.config.ts 278 B

12345678910
  1. import type { Config } from "jest";
  2. const config: Config = {
  3. preset: "ts-jest",
  4. testEnvironment: "node",
  5. testPathIgnorePatterns: ["/node_modules/", "/dist/"],
  6. maxWorkers: 1, // Prevents serialization issues with BigInt during error reporting
  7. };
  8. export default config;