From a375e9b0737ede74e23bd017afea219b95a88d1c Mon Sep 17 00:00:00 2001 From: Antoine Niek Date: Mon, 20 Jan 2025 16:25:49 -0500 Subject: [PATCH] Ignore dist/ when running tsc --- lib/tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/tsconfig.json b/lib/tsconfig.json index 70beefe..dccf9c4 100644 --- a/lib/tsconfig.json +++ b/lib/tsconfig.json @@ -9,5 +9,5 @@ "lib": ["DOM", "DOM.Iterable", "ES6"] }, "include": ["./build.json", "."], - "exclude": ["./**/*.test.ts", "./test"] + "exclude": ["./**/*.test.ts", "./test", "./dist"] }