From 5a41ef9ad7cf048d1cec7993ef2fa098050e3447 Mon Sep 17 00:00:00 2001 From: Devlin Pajaron Date: Wed, 24 Jun 2026 17:31:22 +0800 Subject: [PATCH] Just fix build error --- tsup.config.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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, });