40472e3fb7
* ✨ Add exercise 8 for defining new combinators * ♻️ Handle review comments * 💬 Add more helpful instructions
10 lines
207 B
JavaScript
10 lines
207 B
JavaScript
module.exports = {
|
|
preset: 'ts-jest',
|
|
testEnvironment: 'node',
|
|
testPathIgnorePatterns: ['/dist/', '/node_modules/'],
|
|
globals: {
|
|
'ts-jest': {
|
|
diagnostics: { warnOnly: true },
|
|
},
|
|
},
|
|
};
|