14 lines
256 B
JavaScript
14 lines
256 B
JavaScript
module.exports = {
|
|
testEnvironment: 'node',
|
|
preset: "ts-jest",
|
|
globals: {
|
|
"ts-jest": {
|
|
diagnostics: {
|
|
ignoreCodes: [
|
|
151001 // see https://githubmemory.com/repo/kulshekhar/ts-jest/issues/2722
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}
|