module.exports = { collectCoverage: false, moduleFileExtensions: [ "ts", "tsx", "js", "jsx", "json", "node", ], testPathIgnorePatterns: [ "/lib/", "/node_modules/", ], // Accept anything called .(spec|test).[js]jx? in __tests__ or root (or /lib). testRegex: "(/__tests__/.*|(\\.|/)(spec|test))\\.(jsx?|tsx?)$", transform: { "^.+\\.tsx?$": "ts-jest", } };