We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Previously we had:
success : output.emitOutputStatus === ts.EmitReturnStatus.Succeeded; emitOnly: !success && outputFiles.length
output.emitOutputStatus === ts.EmitReturnStatus.Succeeded;
!success && outputFiles.length
Now getEmitOutput only returns :
getEmitOutput
interface EmitOutput { outputFiles: OutputFile[]; emitSkipped: boolean; }
With only emitSkipped we don't know if it was a complete success i.e. a semantically valid emit or just a bland emit.
emitSkipped
The text was updated successfully, but these errors were encountered:
refs #179 (comment)
Sorry, something went wrong.
refs microsoft/TypeScript#2289
You can use the --noEmitOnError flag for this, even though the message says it only pertains to type checking.
--noEmitOnError
@DanielRosenwasser I still want to get an emit. So did this : 02622f9#diff-578ff651be440fee29ecfe22d52e81a4L41
No branches or pull requests
Previously we had:
success :
output.emitOutputStatus === ts.EmitReturnStatus.Succeeded;
emitOnly:
!success && outputFiles.length
Now
getEmitOutput
only returns :With only
emitSkipped
we don't know if it was a complete success i.e. a semantically valid emit or just a bland emit.The text was updated successfully, but these errors were encountered: