17 lines
362 B
JSON
17 lines
362 B
JSON
{
|
|
"transform": {
|
|
"^.+\\.(t|j)sx?$": "ts-jest"
|
|
},
|
|
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
|
|
"moduleFileExtensions": ["ts", "tsx", "js", "jsx", "json", "node"],
|
|
"collectCoverage": true,
|
|
"coverageThreshold": {
|
|
"global": {
|
|
"branches": 50,
|
|
"functions": 50,
|
|
"lines": 50,
|
|
"statements": 50
|
|
}
|
|
}
|
|
}
|