From e2f7df15d36588aa934debba1fb2062a820065c8 Mon Sep 17 00:00:00 2001 From: Joren Broekema Date: Mon, 10 Aug 2020 13:26:29 +0200 Subject: [PATCH] chore: exclude index.d.ts files from being built to prevent tsc error --- tsconfig.build.types.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.build.types.json b/tsconfig.build.types.json index eb0daa6a4..9f141ac1b 100644 --- a/tsconfig.build.types.json +++ b/tsconfig.build.types.json @@ -4,5 +4,6 @@ "declaration": true, "emitDeclarationOnly": true, "noEmit": false - } + }, + "exclude": ["packages/*/index.d.ts"] }