mirror of
				https://github.com/reduxjs/redux-devtools.git
				synced 2025-10-31 07:57:39 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			34 lines
		
	
	
		
			867 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			867 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| module.exports = {
 | |
|   extends: '../../eslintrc.ts.react.base.json',
 | |
|   parserOptions: {
 | |
|     tsconfigRootDir: __dirname,
 | |
|     project: ['./tsconfig.json'],
 | |
|   },
 | |
|   overrides: [
 | |
|     {
 | |
|       files: ['demo/**/*.ts', 'demo/**/*.tsx'],
 | |
|       extends: '../../eslintrc.ts.react.base.json',
 | |
|       parserOptions: {
 | |
|         tsconfigRootDir: __dirname,
 | |
|         project: ['./tsconfig.demo.json'],
 | |
|       },
 | |
|     },
 | |
|     {
 | |
|       files: ['test/**/*.ts', 'test/**/*.tsx'],
 | |
|       extends: '../../eslintrc.ts.react.jest.base.json',
 | |
|       parserOptions: {
 | |
|         tsconfigRootDir: __dirname,
 | |
|         project: ['./test/tsconfig.json'],
 | |
|       },
 | |
|     },
 | |
|     {
 | |
|       files: ['webpack.config.ts', 'webpack.config.umd.ts'],
 | |
|       extends: '../../eslintrc.ts.base.json',
 | |
|       parserOptions: {
 | |
|         tsconfigRootDir: __dirname,
 | |
|         project: ['./tsconfig.webpack.json'],
 | |
|       },
 | |
|     },
 | |
|   ],
 | |
| };
 |