From d5d21537bd68d3c7de46bab42b9169665bb826ec Mon Sep 17 00:00:00 2001 From: Youssef-Harby Date: Wed, 10 Apr 2024 04:26:40 +0200 Subject: [PATCH] Update tsconfig.json to exclude node_modules and example directories --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 187a66f..7362baa 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -17,5 +17,6 @@ "noEmit": true, /* If your code runs in the DOM: */ "lib": ["es2022", "dom", "dom.iterable"], - } + }, + "exclude": ["node_modules", "**/node_modules/*", "example", "example/*"] }