Files
zk-keeper/jest.config.json
2022-04-16 22:11:51 +02:00

21 lines
537 B
JSON

{
"transform": {
"\\.(ts|tsx)": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx)$",
"moduleFileExtensions": ["ts", "js", "tsx"],
"moduleNameMapper": {
"@src/(.*)$": "<rootDir>/src/$1"
},
"coveragePathIgnorePatterns": ["/node_modules/", "/test/"],
"collectCoverageFrom": ["src/**/*.{ts,tsx}"],
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 95,
"lines": 95,
"statements": 95
}
}
}