From 39f0ec4085280809cc95d4309483b9cbf6e78913 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 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/agent/tsconfig.json b/apps/agent/tsconfig.json index 4845a354..a39e28eb 100644 --- a/apps/agent/tsconfig.json +++ b/apps/agent/tsconfig.json @@ -2,11 +2,12 @@ "compilerOptions": { "plugins": [{ "name": "@effect/language-service" }], // Environment setup & latest features - "lib": ["ESNext"], + "lib": ["DOM", "ESNext"], "target": "ESNext", "module": "Preserve", "moduleDetection": "force", "jsx": "react-jsx", + "types": ["bun", "node"], "allowJs": true, // Bundler mode