From 1976affdff2ed8fe04d7e88a84168221384255e8 Mon Sep 17 00:00:00 2001 From: Ilia Mashkov Date: Fri, 16 Jan 2026 13:14:33 +0300 Subject: [PATCH] fix(tsconfig): add noEmit param to awoid errors --- tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/tsconfig.json b/tsconfig.json index 1c223e3..c215265 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -10,6 +10,7 @@ /* Strictness & Safety */ "strict": true, "allowJs": true, + "noEmit": true, "checkJs": true, "esModuleInterop": true, "forceConsistentCasingInFileNames": true,