From 180a1ea914e7637efe9dbeb172657b51ae4c06db Mon Sep 17 00:00:00 2001 From: Dmitry Date: Thu, 4 Jul 2024 18:37:03 +0400 Subject: [PATCH] Show errors from build typings in console (#8510) --- build-scripts/webpack-dts-generator.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-scripts/webpack-dts-generator.js b/build-scripts/webpack-dts-generator.js index 7fbad3949d..51470c7b64 100644 --- a/build-scripts/webpack-dts-generator.js +++ b/build-scripts/webpack-dts-generator.js @@ -18,7 +18,7 @@ module.exports = function DtsGeneratorProgressPlugin(options) { command = tsCommand + " " + tsConfigPath + " --outFile " + options.filePath; } console.log("tsc command is \"" + command + "\""); - child_process.execSync(command); + child_process.execSync(command, { stdio: "inherit" }); console.log("typescript end"); let content = "\nexport * from \"./typings/" + options.importName + "\";";