mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-14 13:46:55 +03:00
10 lines
218 B
JavaScript
10 lines
218 B
JavaScript
|
module.exports = {
|
||
|
extensionsToTreatAsEsm: ['.ts'],
|
||
|
moduleNameMapper: {
|
||
|
'^(\\.{1,2}/.*)\\.js$': '$1',
|
||
|
},
|
||
|
transform: {
|
||
|
'^.+\\.ts$': ['ts-jest', { tsconfig: 'tsconfig.test.json', useESM: true }],
|
||
|
},
|
||
|
};
|