Skip to content

Commit 50529ac

Browse files
committed
Merge pull request microsoft#8787 from RyanCavanaugh/cmdLineHelp
Recognize '-?' / '--?' in tsc
2 parents e67df33 + 28f548a commit 50529ac

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

src/compiler/commandLineParser.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,11 @@ namespace ts {
3737
type: "boolean",
3838
description: Diagnostics.Print_this_message,
3939
},
40+
{
41+
name: "help",
42+
shortName: "?",
43+
type: "boolean"
44+
},
4045
{
4146
name: "init",
4247
type: "boolean",

0 commit comments

Comments
 (0)