UNPKG

299 BJavaScriptView Raw
1module.exports = {
2 roots: ['<rootDir>/src', '<rootDir>/test'],
3 transform: {
4 '^.+\\.tsx?$': 'ts-jest',
5 },
6 testEnvironment: 'node',
7 coverageThreshold: {
8 global: {
9 branches: 70,
10 functions: 70,
11 lines: 70,
12 statements: 70,
13 },
14 },
15 collectCoverage: true,
16};