From fce62fbbe536c6001848a75bc43ace28016c59ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adri=C3=A1n=20UB?= <22903142+adrian-ub@users.noreply.github.com> Date: Fri, 4 Oct 2024 20:13:43 -0500 Subject: [PATCH] chore: exclude "playground" directory in tsconfig.json --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index ff79c14..0653a32 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -11,5 +11,6 @@ "esModuleInterop": true, "skipDefaultLibCheck": true, "skipLibCheck": true - } + }, + "exclude": ["playground"] }