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