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

13 lines
229 B
JavaScript

module.exports = {
preset: "ts-jest",
globals: {
"ts-jest": {
diagnostics: {
ignoreCodes: [
151001 // see https://githubmemory.com/repo/kulshekhar/ts-jest/issues/2722
]
}
}
}
}