From 60d2196e51711e0b1773cff06fcbf19c2d5e9a08 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gjermund=20H=C3=B8s=C3=B8ien=20Wiggen?= Date: Tue, 9 Jun 2026 10:43:52 +0200 Subject: [PATCH] chore: exclude web and node_modules from tsconfig Co-Authored-By: Claude Opus 4.8 --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index bfa1fa5..538c378 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -27,5 +27,6 @@ "paths": { "@/*": ["./src/*"] } - } + }, + "exclude": ["web", "node_modules"] }