fix(compiler-cli): don't join errors with comma (#19331)
This commit is contained in:
parent
2e1fec17f5
commit
e889c68aff
|
@ -43,7 +43,7 @@ export function formatDiagnostics(options: api.CompilerOptions, diags: Diagnosti
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.join();
|
.join('');
|
||||||
} else
|
} else
|
||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue