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
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -603,11 +603,11 @@ module ts {
603
603
// Return code used by getEmitOutput function to indicate status of the function
604
604
exportenumEmitReturnStatus{
605
605
Succeeded=0,// All outputs generated as requested (.js, .map, .d.ts), no errors reported
606
-
AllOutputGenerationSkipped=1,// No .js generated because of syntax errors, or compiler options errors, nothing generated
606
+
AllOutputGenerationSkipped=1,// No .js generated because of syntax errors, nothing generated
607
607
JSGeneratedWithSemanticErrors=2,// .js and .map generated with semantic errors
608
608
DeclarationGenerationSkipped=3,// .d.ts generation skipped because of semantic errors or declaration emitter specific errors; Output .js with semantic errors
609
609
EmitErrorsEncountered=4,// Emitter errors occurred during emitting process
610
-
CompilerOptionsErrors=5,// Errors occurred in parsing compiler options
610
+
CompilerOptionsErrors=5,// Errors occurred in parsing compiler options, nothing generated
0 commit comments