Skip to content
This repository was archived by the owner on Apr 14, 2026. It is now read-only.

Commit 7b7e4dc

Browse files
BarisSozenclaude
andcommitted
fix: add DOM lib to tsconfig for fetch type resolution
DTS build was failing with 'Cannot find name fetch' because tsconfig only had ES2022 lib. Adding DOM resolves the global fetch type needed by HashLockConfig.fetch property. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 2580708 commit 7b7e4dc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"target": "ES2022",
44
"module": "ESNext",
55
"moduleResolution": "bundler",
6-
"lib": ["ES2022"],
6+
"lib": ["ES2022", "DOM"],
77
"strict": true,
88
"esModuleInterop": true,
99
"skipLibCheck": true,

0 commit comments

Comments
 (0)