diff --git a/package.json b/package.json index 005ea81..73d9bd8 100644 --- a/package.json +++ b/package.json @@ -11,8 +11,8 @@ ], "scripts": { "build": "rollup -c", - "lint": "eslint --ext ts --fix src test", - "prettier": "prettier --write --config .prettierrc \"{src,test}/**/*.{js,ts}\"", + "lint": "eslint --ext ts --fix src __tests__", + "prettier": "prettier --write --config .prettierrc \"{src,__tests__}/**/*.{js,ts}\"", "test": "jest", "test:watch": "yarn test -- --watch", "test:cov": "yarn test -- --coverage", diff --git a/tsconfig.json b/tsconfig.json index 580fd21..5d3d26f 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,7 +3,6 @@ "target": "esnext", "module": "esnext", "lib": [ - "dom", "es2020" ], "declaration": true,