this repo has no description
1module.exports = {
2 preset: "ts-jest",
3 testEnvironment: "node",
4 roots: ["<rootDir>"],
5 testMatch: ["**/*.test.ts"],
6 moduleFileExtensions: ["ts", "js", "json", "node"],
7 // Transform TypeScript files using ts-jest
8 transform: {
9 "^.+\\.tsx?$": [
10 "ts-jest",
11 {
12 diagnostics: false,
13 },
14 ],
15 },
16 // Enable detectOpenHandles to report and close any lingering handles
17 detectOpenHandles: true,
18};