From 9e70fcb28a21ebdc083540692c4ad0e77c74273f Mon Sep 17 00:00:00 2001 From: gabriel20xx Date: Sun, 26 Oct 2025 15:19:19 +0100 Subject: [PATCH] fix: remove WebSocket type from tsconfig to streamline type definitions --- CollabTableServer/tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CollabTableServer/tsconfig.json b/CollabTableServer/tsconfig.json index abf0b7f..6d52522 100644 --- a/CollabTableServer/tsconfig.json +++ b/CollabTableServer/tsconfig.json @@ -3,7 +3,7 @@ "target": "ES2020", "module": "commonjs", "lib": ["ES2020"], - "types": ["node", "ws"], + "types": ["node"], "outDir": "./dist", "rootDir": "./src", "strict": true,