mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-10 19:56:54 +03:00
97ca2fc781
* Start work * More work * More work * Prettify * Fix * More work * Fix * Cleanup
18 lines
409 B
JavaScript
18 lines
409 B
JavaScript
module.exports = {
|
|
extends: '../../eslintrc.ts.react.base.json',
|
|
parserOptions: {
|
|
tsconfigRootDir: __dirname,
|
|
project: ['./tsconfig.json'],
|
|
},
|
|
overrides: [
|
|
{
|
|
files: ['test/**/*.ts', 'test/**/*.tsx'],
|
|
extends: '../../eslintrc.ts.react.jest.base.json',
|
|
parserOptions: {
|
|
tsconfigRootDir: __dirname,
|
|
project: ['./test/tsconfig.json'],
|
|
},
|
|
},
|
|
],
|
|
};
|