Skip to content

Commit

Permalink
Show errors from build typings in console (#8510)
Browse files Browse the repository at this point in the history
  • Loading branch information
dk981234 authored Jul 4, 2024
1 parent 32a3753 commit 180a1ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build-scripts/webpack-dts-generator.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 + "\";";
Expand Down

0 comments on commit 180a1ea

Please sign in to comment.