topkat-utils
Version:
A comprehensive collection of TypeScript/JavaScript utility functions for common programming tasks. Includes validation, object manipulation, date handling, string formatting, and more. Zero dependencies, fully typed, and optimized for performance.
21 lines • 623 B
JavaScript
;
/**
* For a detailed explanation regarding each configuration property, visit:
* https://jestjs.io/docs/configuration
*/
Object.defineProperty(exports, "__esModule", { value: true });
const config = {
clearMocks: true,
collectCoverage: true,
coverageDirectory: 'coverage',
coverageProvider: 'v8',
// testPathIgnorePatterns: ['dist/**/*'],
testTimeout: 9999,
transform: {
'^.+\\.tsx?$': 'ts-jest',
// '^.+\\.js$': '../../node_modules/babel-jest',
},
testRegex: ['.*\\.spec\\.[jt]sx?$'],
};
exports.default = config;
//# sourceMappingURL=jest.config.js.map