mirror of
https://github.com/sasjs/lint.git
synced 2025-12-10 09:34:34 +00:00
14 lines
272 B
JavaScript
14 lines
272 B
JavaScript
module.exports = {
|
|
preset: 'ts-jest',
|
|
testEnvironment: 'node',
|
|
coverageThreshold: {
|
|
global: {
|
|
branches: 80,
|
|
functions: 80,
|
|
lines: 80,
|
|
statements: -10
|
|
}
|
|
},
|
|
collectCoverageFrom: ['src/**/{!(index|formatExample|lintExample),}.ts']
|
|
}
|