diff --git a/.eslintrc.json b/.eslintrc.json index 3d9cf99..3b19439 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -9,9 +9,8 @@ "parserOptions": { "ecmaVersion": "latest", "sourceType": "module", - "project": "./tsconfig.json", - "createDefaultProgram": true + "project": "./tsconfig.json" }, "rules": {}, - "ignorePatterns": ["coverage", "dist", "node_modules"] + "ignorePatterns": ["coverage", "dist"] } diff --git a/tsconfig.json b/tsconfig.json index 706fb34..e2edcd6 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -11,5 +11,5 @@ "@/*": ["./*"] } }, - "include": ["./src/**/*", "./__test__/**/*", "eslintrc.json"] + "include": ["./src/**/*", "./__test__/**/*", ".eslintrc.json"] }