From a1890dd59fa7716d7789e749a493acee702bb29e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adri=C3=A1n=20UB?= <22903142+adrian-ub@users.noreply.github.com> Date: Tue, 24 Sep 2024 19:59:01 -0500 Subject: [PATCH] chore: exclude "docs" folder from tsc --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index ff79c14..e975565 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -11,5 +11,6 @@ "esModuleInterop": true, "skipDefaultLibCheck": true, "skipLibCheck": true - } + }, + "exclude": ["docs"] }