2023-07-04 11:01:25 +00:00
|
|
|
const nxPreset = require('@nx/jest/preset').default;
|
2022-02-11 13:56:28 +00:00
|
|
|
|
2023-11-14 14:25:29 +00:00
|
|
|
module.exports = {
|
|
|
|
...nxPreset,
|
|
|
|
moduleNameMapper: {
|
|
|
|
...nxPreset.moduleNameMapper,
|
|
|
|
// this mapping fixes jest breaking if anything tries to import d3 due to esm exports
|
|
|
|
'^d3-(.*)$': 'd3-$1/dist/d3-$1',
|
|
|
|
},
|
|
|
|
};
|