Skip to content

Commit 411fa37

Browse files
committed
fix(build): add skipLibCheck to resolve type conflicts with @tsd/typescript
- Add skipLibCheck: true to tsconfig.json to ignore declaration file type checks - Resolves AbortSignal type conflict between @types/node and @tsd/typescript - Ensures build passes in CI environments
1 parent e4db2b0 commit 411fa37

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

Resources/tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"declaration": true,
44
"declarationDir": "ts",
55
"resolveJsonModule": true,
6-
"esModuleInterop": true
6+
"esModuleInterop": true,
7+
"skipLibCheck": true
78
}
89
}

0 commit comments

Comments
 (0)