Description: Exclude test files from rollup (main module)
Author: Israel Galadima <izzygaladima@gmail.com>
Forwarded: not-needed
Last-Update: 2022-12-22

--- a/rollup.config.js
+++ b/rollup.config.js
@@ -15,7 +15,9 @@
 ];
 
 const plugins = [
-  typescript(),
+  typescript({
+    exclude: ["**/*.test*.ts"]
+  }),
   commonjs(),
 ];
 
