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 + "\";";