From e1f269f88455e4e93ae64183d4a55ce1f5b54a3f Mon Sep 17 00:00:00 2001 From: Cyrille Derche Date: Fri, 19 May 2023 21:58:18 +0200 Subject: [PATCH] Fix eslintrc --- .eslintrc.json | 3 ++- tsconfig.json | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.eslintrc.json b/.eslintrc.json index b832e27..3d9cf99 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -9,7 +9,8 @@ "parserOptions": { "ecmaVersion": "latest", "sourceType": "module", - "project": ["./tsconfig.json"] + "project": "./tsconfig.json", + "createDefaultProgram": true }, "rules": {}, "ignorePatterns": ["coverage", "dist", "node_modules"] diff --git a/tsconfig.json b/tsconfig.json index 1399811..706fb34 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -9,7 +9,7 @@ "skipLibCheck": true, "paths": { "@/*": ["./*"] - }, + } }, "include": ["./src/**/*", "./__test__/**/*", "eslintrc.json"] }