import type { Config } from "jest"; const config: Config = { preset: "ts-jest", testEnvironment: "node", testMatch: ["/tests/**/*.test.ts"], testTimeout: 120_000, transform: { "^.+\\.ts$": "ts-jest", }, moduleFileExtensions: ["ts", "js", "json"], }; export default config;