mirror of
https://mirror.skon.top/github.com/code-yeongyu/oh-my-opencode
synced 2026-04-20 23:50:14 +08:00
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.
16 lines
367 B
JSON
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"]
|
|
}
|