generated from diyorbekrustamjonov/typescript-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjest.config.json
51 lines (51 loc) · 1.08 KB
/
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
46
47
48
49
50
51
{
"roots": [
"<rootDir>"
],
"preset": "ts-jest",
"testEnvironment": "node",
"transform": {
"^.+\\.ts?$": "ts-jest"
},
"modulePaths": [
"<rootDir>/node_modules",
"<rootDir>/examples",
"<rootDir>/src",
"<rootDir>/test"
],
"testMatch": [
"**/?(*.)+(spec|test).[tj]s?(x)"
],
"moduleNameMapper": {
"^examples/(.*)$": "<rootDir>/examples/$1",
"^src/(.*)$": "<rootDir>/src/$1",
"^test/(.*)$": "<rootDir>/test/$1"
},
"collectCoverage": true,
"collectCoverageFrom": [
"examples/**/*.{ts,tsx}",
"src/**/*.{ts,tsx}",
"test/**/*.{ts,tsx}"
],
"coveragePathIgnorePatterns": [
"<rootDir>/node_modules"
],
"coverageReporters": [
"json",
"lcov",
"text"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"moduleFileExtensions": [
"ts",
"js",
"json"
]
}