-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathjest.config.ts
38 lines (36 loc) · 1.01 KB
/
jest.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import type { JestConfigWithTsJest } from 'ts-jest';
const jestConfig: JestConfigWithTsJest = {
preset: 'ts-jest/presets/default-esm',
moduleNameMapper: {
'^(\\.{1,2}/.*)\\.js$': '$1',
},
moduleFileExtensions: ['js', 'json', 'jsx', 'node', 'ts', 'tsx'],
transform: {
// '^.+\\.tsx?$' to process ts with `ts-jest`
// '^.+\\.[tj]sx?$' to process js/ts with `ts-jest`
// '^.+\\.m?[tj]sx?$' to process js/ts/mjs/mts with `ts-jest`
'^.+\\.m?[tj]sx?$': [
'ts-jest',
{
useESM: true,
},
],
},
extensionsToTreatAsEsm: ['.ts'],
verbose: true,
testEnvironment: 'node',
coverageDirectory: './coverage',
coverageProvider: 'v8',
coverageReporters: ['lcov', 'text', 'html', 'json', 'cobertura', 'clover'],
collectCoverageFrom: ['src/**/*.ts'],
coveragePathIgnorePatterns: ['/node_modules/', 'src/__tests__/'],
coverageThreshold: {
global: {
statements: 75,
branches: 53,
functions: 63,
lines: 75,
},
},
};
export default jestConfig;