mirror of
https://github.com/zoriya/flood.git
synced 2025-12-05 23:06:20 +00:00
13 lines
260 B
JavaScript
13 lines
260 B
JavaScript
module.exports = {
|
|
transformIgnorePatterns: ['node_modules/.pnpm/(?!(p-queue|p-timeout).*/)'],
|
|
transform: {
|
|
// transform ESM only package to CommonJS
|
|
'^.+\\.(t|j)sx?$': [
|
|
'jest-esbuild',
|
|
{
|
|
format: 'cjs',
|
|
},
|
|
],
|
|
},
|
|
};
|