From ec486737c10a5a27068d05aaf28575e031a44d6c Mon Sep 17 00:00:00 2001 From: Julian Gilbey Date: Fri, 23 Dec 2022 09:16:10 +0000 Subject: [PATCH] Exclude test files from rollup --- rollup.config.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/rollup.config.js b/rollup.config.js index 75959de4..390d7b21 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -15,7 +15,9 @@ const external = [ ]; const plugins = [ - typescript(), + typescript({ + exclude: ["**/*.test*.ts"] + }), commonjs(), ];