From b869248de84ee5f8b498a22664a2a80cbac9e446 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Sat, 18 Mar 2023 10:27:44 +0100 Subject: [PATCH] fix: linting issue with paths MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 80f498ba..fcd4c45e 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -8,5 +8,6 @@ "strict": true, "verbatimModuleSyntax": true }, - "include": ["src/**/*.ts"] + "include": ["**/*.ts"], + "exclude": ["node_modules", "lib"] } -- 2.34.1