mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-12-02 07:45:39 +03:00
* fix(deps): update all non-major dependencies * Format * Updates * Update * Update --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Nathan Bierema <nbierema@gmail.com>
15 lines
385 B
JavaScript
15 lines
385 B
JavaScript
module.exports = {
|
|
preset: 'ts-jest',
|
|
testEnvironment: 'jsdom',
|
|
moduleNameMapper: {
|
|
'\\.css$': '<rootDir>/test/__mocks__/styleMock.ts',
|
|
},
|
|
transform: {
|
|
'^.+\\.jsx?$': 'babel-jest',
|
|
'^.+\\.tsx?$': ['ts-jest', { tsconfig: 'tsconfig.test.json' }],
|
|
},
|
|
transformIgnorePatterns: [
|
|
'node_modules/(?!.pnpm|@x0k/json-schema-merge|color|lodash-es|nanoid)',
|
|
],
|
|
};
|