mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-11 20:27:07 +03:00
6af7103e41
* stash * stash
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'],
|
|
},
|
|
},
|
|
],
|
|
};
|