mirror of
https://github.com/faa/zk-keeper.git
synced 2026-01-09 14:18:04 -05:00
21 lines
537 B
JSON
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
|
|
}
|
|
}
|
|
}
|