This repository has been archived on 2023-05-29. You can view files and clone it, but cannot push or open issues or pull requests.
fp-ts-training/jest.config.js
Hugo Saracino 40472e3fb7
Add exercise 8 for defining new combinators (#109)
*  Add exercise 8 for defining new combinators

* ♻️ Handle review comments

* 💬 Add more helpful instructions
2023-01-11 09:41:36 +07:00

11 lines
207 B
JavaScript

module.exports = {
preset: 'ts-jest',
testEnvironment: 'node',
testPathIgnorePatterns: ['/dist/', '/node_modules/'],
globals: {
'ts-jest': {
diagnostics: { warnOnly: true },
},
},
};