From 160c5581ec8acfb6928fb27f25487057645f48ea Mon Sep 17 00:00:00 2001 From: Chris Bartholomew Date: Fri, 12 Dec 2025 11:34:47 -0500 Subject: [PATCH] fix: add DOM.Iterable lib to resolve URLSearchParams.entries() type error (#27) The generated queryKeySerializer.gen.ts uses URLSearchParams.entries() which requires DOM.Iterable in the TypeScript lib config for proper type definitions. --- hindsight-clients/typescript/tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hindsight-clients/typescript/tsconfig.json b/hindsight-clients/typescript/tsconfig.json index afcd36ea..4685ac36 100644 --- a/hindsight-clients/typescript/tsconfig.json +++ b/hindsight-clients/typescript/tsconfig.json @@ -2,7 +2,7 @@ "compilerOptions": { "target": "ES2020", "module": "commonjs", - "lib": ["ES2020", "DOM"], + "lib": ["ES2020", "DOM", "DOM.Iterable"], "declaration": true, "outDir": "./dist", "rootDir": "./",