/** @type {import('jest').Config} */ module.exports = { preset: "ts-jest/presets/default-esm", testEnvironment: "node", extensionsToTreatAsEsm: [".ts"], moduleNameMapper: { "^(\\.{1,2}/.*)\\.js$": "$1", }, testMatch: ["**/tests/**/*.test.ts"], testTimeout: 30000, forceExit: true, transform: { "^.+\\.tsx?$": [ "ts-jest", { useESM: true, tsconfig: "tsconfig.json", diagnostics: { ignoreCodes: [1343], }, astTransformers: { before: [ { path: "ts-jest-mock-import-meta", // Workaround for meta.url not working in jest options: { metaObjectReplacement: { url: "file://" + __dirname + "/dist/index.js" } }, }, ], }, }, ], }, };