Skip to content

Commit 056662d

Browse files
committed
Pass the jake test
1 parent c5657a3 commit 056662d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/compiler/tsc.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -667,7 +667,7 @@ namespace ts {
667667
}
668668

669669
function printHelp() {
670-
const output = [];
670+
const output: any = [];
671671

672672
// We want to align our "syntax" and "examples" commands to a certain margin.
673673
const syntaxLength = getDiagnosticText(Diagnostics.Syntax_Colon_0, "").length;
@@ -765,9 +765,9 @@ namespace ts {
765765
output.push(sys.newLine);
766766
}
767767
}
768-
output.forEach(function (val) {
768+
output.forEach(function (val: any) {
769769
sys.write(val);
770-
})
770+
});
771771
return;
772772

773773
function getParamType(option: CommandLineOption) {

0 commit comments

Comments
 (0)