From d23509bc00aacf8eee67215d027927dbddf51941 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..247c697b2 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -8,5 +8,6 @@ "checkJs": true, "rootDir": "." }, - "include": ["."] + "include": ["."], + "exclude": ["dist*", "examples", "website"] }