class-logger
Version:
Boilerplate-free decorator-based class logging
20 lines (19 loc) • 463 B
JavaScript
module.exports = {
roots: ['<rootDir>'],
transform: {
'^.+\\.tsx?$': 'ts-jest',
},
testRegex: '^.+\\.(test|spec)\\.tsx?$',
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node'],
restoreMocks: true,
collectCoverage: true,
coveragePathIgnorePatterns: ['<rootDir>/dist/', '<rootDir>/node_modules/'],
coverageThreshold: {
global: {
branches: 100,
functions: 100,
lines: 100,
statements: 100,
},
},
}