From d0f0be6887c1112600da8a69d5b1d8e4182a6824 Mon Sep 17 00:00:00 2001 From: VityaSchel <59040542+VityaSchel@users.noreply.github.com> Date: Mon, 2 Oct 2023 20:36:55 +0400 Subject: [PATCH] Add src/shadcn to TypeScript ignored paths --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 8392698..585db3b 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -35,6 +35,7 @@ ".next/types/**/*.ts" ], "exclude": [ - "node_modules" + "node_modules", + "src/shadcn" ] }