1
0
mirror of https://github.com/sasjs/lint.git synced 2025-12-10 09:34:34 +00:00
Files
lint/jest.config.js

14 lines
254 B
JavaScript

module.exports = {
preset: 'ts-jest',
testEnvironment: 'node',
coverageThreshold: {
global: {
branches: 80,
functions: 80,
lines: 80,
statements: -10
}
},
collectCoverageFrom: ['src/**/{!(index|example),}.ts']
}