import type { Config } from "@jest/types"; const config: Config.InitialOptions = { roots: ["/src"], snapshotFormat: { escapeString: true, printBasicPrototype: true, }, testMatch: ["**/__tests__/**/*.ts"], testPathIgnorePatterns: [ "/node_modules/", "/fixtures/", "/snapshotSerializers/", ], transform: { "^.+\\.(ts)$": "ts-jest", }, prettierPath: null, }; export default config;