fix(cli): print tsc error correctly (#11680)

This commit is contained in:
neverland 2023-03-18 08:41:00 +08:00 committed by GitHub
parent 2322f1d765
commit 7dce6d2f30
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -104,7 +104,10 @@ async function buildTypeDeclarations() {
const tsConfig = join(process.cwd(), 'tsconfig.declaration.json');
if (existsSync(tsConfig)) {
await execa('tsc', ['-p', tsConfig]);
await execa('tsc', ['-p', tsConfig], {
stdout: 'inherit',
stderr: 'inherit',
});
}
}