/** @type {import('jest').Config} */ module.exports = { rootDir: ".", testEnvironment: "node", clearMocks: true, testMatch: ["/test/**/*.spec.ts"], moduleFileExtensions: ["ts", "js", "json"], transform: { "^.+\\.(t|j)s$": ["ts-jest", { tsconfig: "/tsconfig.spec.json" }] } };