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