mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-11 20:27:07 +03:00
c68b34e4b8
BREAKING CHANGES: Switch from pure-color to color which could change behavior of string parsing or results. No API changes.
22 lines
486 B
JavaScript
22 lines
486 B
JavaScript
module.exports = {
|
|
extends: '../../.eslintrc',
|
|
overrides: [
|
|
{
|
|
files: ['*.ts', '*.tsx'],
|
|
extends: '../../eslintrc.ts.base.json',
|
|
parserOptions: {
|
|
tsconfigRootDir: __dirname,
|
|
project: ['./tsconfig.json'],
|
|
},
|
|
},
|
|
{
|
|
files: ['test/*.ts', 'test/*.tsx'],
|
|
extends: '../../eslintrc.ts.jest.base.json',
|
|
parserOptions: {
|
|
tsconfigRootDir: __dirname,
|
|
project: ['./test/tsconfig.json'],
|
|
},
|
|
},
|
|
],
|
|
};
|