From ae7494273b6e7ce5ca5ae23966d03a3d5c4077ff Mon Sep 17 00:00:00 2001 From: Kevin Whitley Date: Tue, 9 Apr 2024 09:37:50 -0500 Subject: [PATCH] remove types from rollup exclude --- rollup.config.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rollup.config.mjs b/rollup.config.mjs index 7ff25f9..595f66f 100644 --- a/rollup.config.mjs +++ b/rollup.config.mjs @@ -7,7 +7,7 @@ import fs from 'fs-extra' // scan files to build const files = (await globby('./src/*.ts', { - ignore: ['**/*.spec.ts', 'examples', '**/types.ts'], + ignore: ['**/*.spec.ts', 'examples'], })).map(path => ({ path, shortPath: path.replace(/(\/src)|(\.ts)/g, '').replace('./index', '.'),