mirror of
				https://github.com/reduxjs/redux-devtools.git
				synced 2025-11-04 09:57:26 +03:00 
			
		
		
		
	Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Nathan Bierema <nbierema@gmail.com>
		
			
				
	
	
		
			12 lines
		
	
	
		
			348 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			348 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
module.exports = {
 | 
						|
  preset: 'ts-jest',
 | 
						|
  testEnvironment: 'jsdom',
 | 
						|
  transform: {
 | 
						|
    '^.+\\.jsx?$': 'babel-jest',
 | 
						|
    '^.+\\.tsx?$': ['ts-jest', { tsconfig: 'tsconfig.test.json' }],
 | 
						|
  },
 | 
						|
  transformIgnorePatterns: [
 | 
						|
    'node_modules/(?!.pnpm|@babel/code-frame|@babel/highlight|@babel/helper-validator-identifier|chalk|color|lodash-es)',
 | 
						|
  ],
 | 
						|
};
 |