We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5657a3 commit 056662dCopy full SHA for 056662d
src/compiler/tsc.ts
@@ -667,7 +667,7 @@ namespace ts {
667
}
668
669
function printHelp() {
670
- const output = [];
+ const output: any = [];
671
672
// We want to align our "syntax" and "examples" commands to a certain margin.
673
const syntaxLength = getDiagnosticText(Diagnostics.Syntax_Colon_0, "").length;
@@ -765,9 +765,9 @@ namespace ts {
765
output.push(sys.newLine);
766
767
768
- output.forEach(function (val) {
+ output.forEach(function (val: any) {
769
sys.write(val);
770
- })
+ });
771
return;
772
773
function getParamType(option: CommandLineOption) {
0 commit comments