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-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -606,7 +606,8 @@ module ts {
606
606
AllOutputGenerationSkipped=1,// No .js generated because of syntax errors, or compiler options 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
-
EmitErrorsEncountered=4// Emitter errors occurred during emitting process
609
+
EmitErrorsEncountered=4,// Emitter errors occurred during emitting process
610
+
CompilerOptionsErrors=5,// Errors occurred in parsing compiler options
0 commit comments