From a02ee1db0fcd1d4bb903090befb4e63cc6325d4c Mon Sep 17 00:00:00 2001 From: Sam Vervaeck Date: Sun, 19 Mar 2023 13:02:43 +0100 Subject: [PATCH] tsc: Only compile what is in src/ --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index a4c57943a..b61a9b28b 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -13,5 +13,6 @@ "forceConsistentCasingInFileNames": true, "strict": true, "skipLibCheck": true - } + }, + "include": ["src"] }