mirror of
https://github.com/dzeiocom/libs.git
synced 2025-04-22 10:52:11 +00:00
19 lines
424 B
JavaScript
19 lines
424 B
JavaScript
module.exports = {
|
|
globals: {
|
|
'ts-jest': {
|
|
tsConfig: 'tsconfig.test.json'
|
|
},
|
|
"transform": {
|
|
".(ts|tsx)": " ../../node_modules/ts-jest/preprocessor.js"
|
|
},
|
|
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
|
|
"testResultsProcessor": "../../node_modules/ts-jest/coverageprocessor.js",
|
|
"collectCoverageFrom": ["src/URLManager.ts"],
|
|
"moduleFileExtensions": [
|
|
"ts",
|
|
"tsx",
|
|
"js"
|
|
],
|
|
},
|
|
}
|