From 83a80e21fb2444fdc4e05f1d513910c3a9d7a254 Mon Sep 17 00:00:00 2001 From: YeonGyu-Kim Date: Tue, 7 Apr 2026 18:36:56 +0900 Subject: [PATCH] fix(ci): add skipLibCheck to script tsconfig to avoid bun-types/@types/node conflicts CI ubuntu-latest has @types/node ambient types that conflict with bun-types for CompressionStream/DecompressionStream declarations. skipLibCheck skips checking .d.ts files from node_modules. --- script/tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/script/tsconfig.json b/script/tsconfig.json index 330ebffce..44f60d25b 100644 --- a/script/tsconfig.json +++ b/script/tsconfig.json @@ -7,6 +7,7 @@ "resolveJsonModule": true, "lib": ["ESNext"], "types": ["bun-types"], + "skipLibCheck": true, "allowImportingTsExtensions": true, "noEmit": true },