this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 18 lines 434 B view raw
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};