/** @type {import('ts-jest').JestConfigWithTsJest} */ export default { testEnvironment: "node", testMatch: ["/test/**/*.test.ts"], transform: { "^.+\\.tsx?$": [ "ts-jest", { tsconfig: "/test/tsconfig.json", useESM: true }, ], }, extensionsToTreatAsEsm: ['.ts'], moduleNameMapper: { "^#self/(.*)$": "/src/$1", }, };