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

16 lines
273 B
JavaScript
Raw Permalink Normal View History

2020-07-03 19:01:45 +03:00
module.exports = {
preset: 'ts-jest',
testEnvironment: 'node',
testPathIgnorePatterns: ['/dist/', '/node_modules/'],
globals: {
2023-04-21 15:24:42 +03:00
transform: {
'*': [
'ts-jest',
{
diagnostics: { warnOnly: true },
},
],
},
},
2020-07-03 19:01:45 +03:00
};