From 6bf77ebcefe61f4b0fd3f4d6f83d7dcf9dd65bf0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?John=20Molakvo=C3=A6?= Date: Thu, 19 Jan 2023 09:28:35 +0100 Subject: [PATCH] fix(config): fix tsconfig out dir typings MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: John Molakvoæ --- rollup.config.mjs | 4 +--- tsconfig.json | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/rollup.config.mjs b/rollup.config.mjs index 44917bb4..aa860848 100644 --- a/rollup.config.mjs +++ b/rollup.config.mjs @@ -10,9 +10,7 @@ const config = (input, output) => ({ input, external, plugins: [ - typescript({ - declaration: true, - }), + typescript(), ], output: [output], }) diff --git a/tsconfig.json b/tsconfig.json index be545c14..2b2ce3ad 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -14,5 +14,5 @@ "dom" ] }, - "exclude": ["./dist"] + "exclude": ["./dist", "./tests"] }