From 3347c49fa29663706a8fa3a537f87d3750df6341 Mon Sep 17 00:00:00 2001 From: Jack Hadrill Date: Mon, 31 Jan 2022 00:53:10 +0000 Subject: [PATCH] Exclude dist from compiler input --- tsconfig.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index ddf02ee..aabd87d 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -12,5 +12,8 @@ "skipLibCheck": true, /* Skip type checking all .d.ts files. */ "declaration": true }, - "exclude": ["tests"] + "exclude": [ + "./tests/**/*", + "./dist/**/*" + ] }