From 89ff01a716dda0eec40a3a358fe2636e945d01e5 Mon Sep 17 00:00:00 2001 From: Aarnav Tale Date: Tue, 11 Oct 2022 13:48:12 -0400 Subject: [PATCH] fix: ignore dist in tsconfig --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 88f0293..047e609 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,5 +1,5 @@ { - "exclude": ["test", "vitest.config.ts"], + "exclude": ["dist", "test", "vitest.config.ts"], "compilerOptions": { "rootDir": "./src", "outDir": "./dist",