/** @type {import('jest').Config} */ module.exports = { preset: "ts-jest", testEnvironment: "node", roots: ["/src"], testMatch: ["**/*.test.ts"], transform: { "^.+\\.tsx?$": [ "ts-jest", { tsconfig: "tsconfig.json", useESM: false, diagnostics: { ignoreCodes: [151002], }, }, ], }, moduleNameMapper: { "^(\\.\\.?/.*)\\.js$": "$1", }, };