You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/compiler/types.ts
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -604,10 +604,11 @@ module ts {
604
604
// Return code used by getEmitOutput function to indicate status of the function
605
605
exportenumEmitReturnStatus{
606
606
Succeeded=0,// All outputs generated as requested (.js, .map, .d.ts), no errors reported
607
-
AllOutputGenerationSkipped=1,// No .js generated because of syntax errors, or compiler options errors, nothing generated
607
+
AllOutputGenerationSkipped=1,// No .js generated because of syntax errors, nothing generated
608
608
JSGeneratedWithSemanticErrors=2,// .js and .map generated with semantic errors
609
609
DeclarationGenerationSkipped=3,// .d.ts generation skipped because of semantic errors or declaration emitter specific errors; Output .js with semantic errors
610
-
EmitErrorsEncountered=4// Emitter errors occurred during emitting process
610
+
EmitErrorsEncountered=4,// Emitter errors occurred during emitting process
611
+
CompilerOptionsErrors=5,// Errors occurred in parsing compiler options, nothing generated
0 commit comments