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 a1a1ea3 commit 078e49dCopy full SHA for 078e49d
src/compiler/tc.ts
@@ -375,7 +375,7 @@ module ts {
375
376
// Sort our options by their names, (e.g. "--noImplicitAny" comes before "--watch")
377
var optsList = optionDeclarations.slice();
378
- optsList.sort((a, b) => compareValues(a.name.toLowerCase(), b.name.toLowerCase()));
+ optsList.sort((a, b) => compareValues<string>(a.name.toLowerCase(), b.name.toLowerCase()));
379
380
// We want our descriptions to align at the same column in our output,
381
// so we keep track of the longest option usage string.
0 commit comments