jest.config.mjs 235 B

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