From 22f9278910e3119d03a11817167964996236cdd1 Mon Sep 17 00:00:00 2001 From: Florian Imdahl Date: Tue, 30 Mar 2021 23:57:27 +0200 Subject: [PATCH] fix: Exclude index.d.ts from tsconfig (#48) --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index e52dc67..5b2842b 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -12,5 +12,6 @@ "outDir": "./dist", "strict": true, "esModuleInterop": true - } + }, + "exclude": ["index.d.ts"] }