From a204d29bacef946006db3a332623dac0ed4c16f1 Mon Sep 17 00:00:00 2001 From: Ilia Mashkov Date: Tue, 30 Dec 2025 11:25:50 +0300 Subject: [PATCH] fix(setup): Exclude shadcn components from tsc check --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index c7b9df5..672ded3 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -11,7 +11,8 @@ "sourceMap": true, "strict": true, "moduleResolution": "bundler" - } + }, + "exclude": ["./src/lib/components/ui"] // Path aliases are handled by https://svelte.dev/docs/kit/configuration#alias // except $lib which is handled by https://svelte.dev/docs/kit/configuration#files //