From 79c144830a8a7b8cb3e010a4e744788bbce7abe6 Mon Sep 17 00:00:00 2001 From: Cyrille Derche Date: Fri, 19 May 2023 20:49:52 +0200 Subject: [PATCH] added eslintrc.json to tsconfig.json --- .eslintrc.json | 4 ++-- tsconfig.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.eslintrc.json b/.eslintrc.json index 29d8c6c..b832e27 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -8,8 +8,8 @@ "parser": "@typescript-eslint/parser", "parserOptions": { "ecmaVersion": "latest", - "sourceType": "module" - // "project": ["./tsconfig.json"] + "sourceType": "module", + "project": ["./tsconfig.json"] }, "rules": {}, "ignorePatterns": ["coverage", "dist", "node_modules"] diff --git a/tsconfig.json b/tsconfig.json index b427da4..dca0a0c 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -8,5 +8,5 @@ "strict": true, "skipLibCheck": true }, - "include": ["src/**/*", "__test__/**/*"] + "include": ["src/**/*", "__test__/**/*", "eslintrc.json"] }