jest.config.mjs 269 B

12345678910
  1. /** @type {import("jest").Config} */
  2. const config = {
  3. preset: "ts-jest",
  4. testEnvironment: "node",
  5. modulePathIgnorePatterns: ["<rootDir>/out/"],
  6. testPathIgnorePatterns: ["node_modules/", "out/"],
  7. testMatch: ["**/test/**/*.spec.ts"],
  8. };
  9. export default config;