From acf14a76882eda7f041378dabdac301830ccefd4 Mon Sep 17 00:00:00 2001 From: vibe-bot Date: Fri, 8 Aug 2025 02:18:23 +0200 Subject: [PATCH] build(ts): include local typeRoots for module shims --- server/tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/server/tsconfig.json b/server/tsconfig.json index 118946b..6d44f12 100644 --- a/server/tsconfig.json +++ b/server/tsconfig.json @@ -7,6 +7,7 @@ "rootDir": "src", "esModuleInterop": true, "allowSyntheticDefaultImports": true, + "typeRoots": ["./src/types", "./node_modules/@types"], "forceConsistentCasingInFileNames": true, "strict": true, "skipLibCheck": true,