mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2026-03-09 22:22:42 +03:00
* redux-devtools-app-core * redux-devtools-app * redux-devtools-extension * redux-devtools-serialize * Fix patch * redux-devtools-utils * redux-devtools-remote * extension * Fixes * Fixes * Update package versions to major and convert to ESM Convert remaining packages in the project to ESM. * Updates * Fix * Fix
15 lines
317 B
TypeScript
15 lines
317 B
TypeScript
import { createDefaultEsmPreset, type JestConfigWithTsJest } from 'ts-jest';
|
|
|
|
const presetConfig = createDefaultEsmPreset({
|
|
tsconfig: 'tsconfig.test.json',
|
|
});
|
|
|
|
const jestConfig: JestConfigWithTsJest = {
|
|
...presetConfig,
|
|
moduleNameMapper: {
|
|
'^(\\.{1,2}/.*)\\.js$': '$1',
|
|
},
|
|
};
|
|
|
|
export default jestConfig;
|