diff --git a/tsup.config.ts b/tsup.config.ts index 281b05a..5f492fe 100644 --- a/tsup.config.ts +++ b/tsup.config.ts @@ -3,7 +3,11 @@ import { defineConfig } from 'tsup'; export default defineConfig({ entry: ['src/index.ts'], format: ['cjs', 'esm'], - dts: true, + dts: { + compilerOptions: { + ignoreDeprecations: '6.0', + }, + }, sourcemap: true, clean: true, });