From 07671dc2436e6406d355289bfeb3aa570ec2432c Mon Sep 17 00:00:00 2001 From: Nicolas Meienberger Date: Tue, 7 Apr 2026 22:05:29 +0200 Subject: [PATCH] fix(agent): add Bun and DOM types to agent tsconfig --- apps/agent/tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/agent/tsconfig.json b/apps/agent/tsconfig.json index e30ff81c..5e4c4d18 100644 --- a/apps/agent/tsconfig.json +++ b/apps/agent/tsconfig.json @@ -2,7 +2,7 @@ "compilerOptions": { "plugins": [{ "name": "@effect/language-service" }], // Environment setup & latest features - "lib": ["ESNext"], + "lib": ["DOM", "ESNext"], "target": "ESNext", "module": "Preserve", "moduleDetection": "force",