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