diff --git a/tsup.config.ts b/tsup.config.ts index 0eeedc0..cb999f3 100644 --- a/tsup.config.ts +++ b/tsup.config.ts @@ -3,6 +3,6 @@ import { defineConfig } from 'tsup' export default defineConfig({ entry: ['src/index.ts'], format: ['esm', 'cjs'], - dts: true, + dts: { resolve: true }, clean: true, })