Files
cloud-cap-samples/jest.config.js
2021-07-13 13:01:50 +02:00

16 lines
279 B
JavaScript

module.exports = {
testEnvironment: 'node',
transform: {
"\\.ts$": "ts-jest"
},
globals: {
"ts-jest": {
diagnostics: {
ignoreCodes: [
151001 // see https://githubmemory.com/repo/kulshekhar/ts-jest/issues/2722
]
}
}
}
}