-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathjest.config.json
45 lines (45 loc) · 895 Bytes
/
jest.config.json
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
39
40
41
42
43
44
45
{
"roots": [
"<rootDir>"
],
"preset": "ts-jest",
"testEnvironment": "node",
"transform": {
"^.+\\.ts?$": "ts-jest"
},
"modulePaths": [
"<rootDir>/node_modules",
"<rootDir>/src"
],
"testMatch": [
"**/?(*.)+(spec|test).[tj]s?(x)"
],
"moduleNameMapper": {
"^src/(.*)$": "<rootDir>/src/$1"
},
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.{ts,tsx}"
],
"coveragePathIgnorePatterns": [
"<rootDir>/node_modules"
],
"coverageReporters": [
"json",
"lcov",
"text"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"moduleFileExtensions": [
"ts",
"js",
"json"
]
}