mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-07-25 15:40:06 +03:00
redux-devtools-remote
This commit is contained in:
parent
f3b6725a38
commit
4c464966ba
|
@ -1,2 +0,0 @@
|
|||
examples
|
||||
lib
|
|
@ -1,13 +0,0 @@
|
|||
module.exports = {
|
||||
extends: '../../eslintrc.js.base.json',
|
||||
overrides: [
|
||||
{
|
||||
files: ['*.ts'],
|
||||
extends: '../../eslintrc.ts.base.json',
|
||||
parserOptions: {
|
||||
tsconfigRootDir: __dirname,
|
||||
project: true,
|
||||
},
|
||||
},
|
||||
],
|
||||
};
|
10
packages/redux-devtools-remote/eslint.config.mjs
Normal file
10
packages/redux-devtools-remote/eslint.config.mjs
Normal file
|
@ -0,0 +1,10 @@
|
|||
import eslintJs from '../../eslint.js.config.base.mjs';
|
||||
import eslintTs from '../../eslint.ts.config.base.mjs';
|
||||
|
||||
export default [
|
||||
...eslintJs,
|
||||
...eslintTs(import.meta.dirname),
|
||||
{
|
||||
ignores: ['examples', 'lib'],
|
||||
},
|
||||
];
|
|
@ -35,7 +35,7 @@
|
|||
"build:esm": "babel src --config-file ./babel.config.esm.json --extensions \".ts\" --out-dir lib/esm",
|
||||
"build:types": "tsc --emitDeclarationOnly",
|
||||
"clean": "rimraf lib",
|
||||
"lint": "eslint . --ext .ts",
|
||||
"lint": "eslint .",
|
||||
"type-check": "tsc --noEmit",
|
||||
"prepack": "pnpm run clean && pnpm run build",
|
||||
"prepublish": "pnpm run type-check && pnpm run lint"
|
||||
|
|
Loading…
Reference in New Issue
Block a user