mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-13 21:26:44 +03:00
22 lines
473 B
JavaScript
22 lines
473 B
JavaScript
|
module.exports = {
|
||
|
extends: '../../.eslintrc',
|
||
|
overrides: [
|
||
|
{
|
||
|
files: ['*.ts'],
|
||
|
extends: '../../eslintrc.ts.base.json',
|
||
|
parserOptions: {
|
||
|
tsconfigRootDir: __dirname,
|
||
|
project: ['./tsconfig.json'],
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
files: ['webpack.config.umd.ts'],
|
||
|
extends: '../../eslintrc.ts.base.json',
|
||
|
parserOptions: {
|
||
|
tsconfigRootDir: __dirname,
|
||
|
project: ['./tsconfig.webpack.json'],
|
||
|
},
|
||
|
},
|
||
|
],
|
||
|
};
|