From 30fbe8b1dbf23ae416be5d51c89e5e15611b0f12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Maur=C3=A9?= Date: Wed, 22 Jul 2026 15:08:29 -0400 Subject: [PATCH] fix: replace error notification with silent log when tsconfig.json not found --- server/src/server.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/server.ts b/server/src/server.ts index 305abad..d74e401 100644 --- a/server/src/server.ts +++ b/server/src/server.ts @@ -54,7 +54,7 @@ connection.onInitialized(async () => { try { const result = await findTypeScriptProject(connection); if (result.isErr()) { - connection.window.showErrorMessage(result.error.message); + connection.console.log(`ts2famix: ${result.error.message}`); return err(result.error); } const { tsConfigPath, baseUrl } = result.value;