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.
This commit is contained in:
YeonGyu-Kim
2026-04-07 18:36:56 +09:00
parent a00fe13122
commit 83a80e21fb
+1
View File
@@ -7,6 +7,7 @@
"resolveJsonModule": true,
"lib": ["ESNext"],
"types": ["bun-types"],
"skipLibCheck": true,
"allowImportingTsExtensions": true,
"noEmit": true
},