From a60ab6e565a60c7508577f14db262241db4c2e0f Mon Sep 17 00:00:00 2001 From: rosbeldev Date: Mon, 26 Jan 2026 21:37:02 +0100 Subject: [PATCH] fix: disable filename hashing to resolve type definition errors --- tsdown.config.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tsdown.config.ts b/tsdown.config.ts index f7c13ed..b3cb308 100644 --- a/tsdown.config.ts +++ b/tsdown.config.ts @@ -6,6 +6,7 @@ export default defineConfig([ format: ['cjs', 'esm'], dts: true, sourcemap: true, + hash: false, }, { entry: ['src/internal/index.ts'], @@ -13,5 +14,6 @@ export default defineConfig([ format: ['cjs', 'esm'], dts: true, sourcemap: true, + hash: false, }, ])