mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-11 04:07:34 +03:00
0399d306c0
* stash * more * cli rename * Remove reference * Fix another reference * Fix scripts * Fix package name * Fix tsconfig
30 lines
732 B
JavaScript
30 lines
732 B
JavaScript
module.exports = {
|
|
extends: '../../.eslintrc',
|
|
overrides: [
|
|
{
|
|
files: ['*.ts', '*.tsx'],
|
|
extends: '../../eslintrc.ts.react.base.json',
|
|
parserOptions: {
|
|
tsconfigRootDir: __dirname,
|
|
project: ['./tsconfig.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'],
|
|
},
|
|
},
|
|
],
|
|
};
|