From 33cb3f83df31da3505076589d6b5a452d87a20fe Mon Sep 17 00:00:00 2001 From: Mark Erikson Date: Tue, 10 Dec 2024 17:49:13 -0500 Subject: [PATCH] Exclude stray dist folders and website from tsconfig --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 97650f69a..fa336a179 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -8,5 +8,6 @@ "checkJs": true, "rootDir": "." }, - "include": ["."] + "include": ["."], + "exclude": ["dist*", "website"] }