Files
oh-my-opencode/script/tsconfig.json
YeonGyu-Kim 83a80e21fb 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.
2026-04-07 18:36:56 +09:00

16 lines
367 B
JSON

{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "bundler",
"strict": true,
"resolveJsonModule": true,
"lib": ["ESNext"],
"types": ["bun-types"],
"skipLibCheck": true,
"allowImportingTsExtensions": true,
"noEmit": true
},
"include": ["./publish-workflow.test.ts", "./run-ci-tests.ts"]
}