From f30b97f92dd62963eb3b3d50f6cbbb4113dc9910 Mon Sep 17 00:00:00 2001 From: NeoPilot <221231603+neopilotai@users.noreply.github.com> Date: Wed, 22 Apr 2026 13:27:37 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20fix:=20add=20explicit=20types=20?= =?UTF-8?q?to=20server=20tsconfig=20for=20Docker=20compatibility?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- server/tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/server/tsconfig.json b/server/tsconfig.json index 921c3ae..d741de0 100644 --- a/server/tsconfig.json +++ b/server/tsconfig.json @@ -2,7 +2,8 @@ "extends": "../tsconfig.base.json", "compilerOptions": { "outDir": "dist", - "rootDir": "src" + "rootDir": "src", + "types": ["express", "express-serve-static-core", "node", "ws", "multer", "jsdom", "supertest"] }, "include": ["src"], "exclude": ["src/__tests__"]