From 6f5746d8d39b0a01ff70102b43c52bbb00e1d64d Mon Sep 17 00:00:00 2001 From: Philipp Spitzer Date: Fri, 27 Oct 2023 16:14:57 +0200 Subject: [PATCH] Include *ts files in tsconfig.json as otherwise, vscode does not use tsconfig.json. --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 168dcf8..a76044d 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -15,6 +15,7 @@ "skipLibCheck": true }, "include": [ - "./node_modules/types-mediawiki" + "node_modules/types-mediawiki", + "src/**/*.ts" ] } -- 2.39.5