From 5a1ee7103411034cad4aabcf5345c717fd10e20d Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Tue, 18 Feb 2025 14:51:37 +0100 Subject: [PATCH] fix rollup config properly export types --- rollup.config.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/rollup.config.js b/rollup.config.js index 5e64f969..0370b6cc 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -81,12 +81,11 @@ export default [ plugins: [ aliasConfig, dts({ - respectExternal: true, compilerOptions: { skipLibCheck: true, }, }), ], - external: [/\.css$/, /\.d\.ts$/], + external: [/\.css$/], //, /\.d\.ts$/ }, ]