From 9c4761e8d1a4aec02882a7448ac8df7863cf5a83 Mon Sep 17 00:00:00 2001 From: Alexey Sudilovskiy Date: Fri, 13 Mar 2026 20:22:42 +0000 Subject: [PATCH] fix(build): manually report errors --- src/common/typescript/compile.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/common/typescript/compile.ts b/src/common/typescript/compile.ts index 4d9b066..54a9863 100644 --- a/src/common/typescript/compile.ts +++ b/src/common/typescript/compile.ts @@ -94,6 +94,8 @@ export function compile( } if (hasErrors(allDiagnostics)) { + allDiagnostics.forEach(reportDiagnostic); + logger.error(`Error compile, elapsed time ${elapsedTime(start)}`); process.exit(1); } else {