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
34 lines
842 B
JavaScript
34 lines
842 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'],
|
|
},
|
|
},
|
|
{
|
|
files: ['demo/**/*.ts', 'demo/**/*.tsx'],
|
|
extends: '../../eslintrc.ts.react.base.json',
|
|
parserOptions: {
|
|
tsconfigRootDir: __dirname,
|
|
project: ['./demo/tsconfig.json'],
|
|
},
|
|
},
|
|
{
|
|
files: ['webpack.config.ts'],
|
|
extends: '../../eslintrc.ts.base.json',
|
|
parserOptions: {
|
|
tsconfigRootDir: __dirname,
|
|
project: ['./tsconfig.webpack.json'],
|
|
},
|
|
},
|
|
],
|
|
};
|