-
Notifications
You must be signed in to change notification settings - Fork 13.4k
tsc --help contains a mistake #9735
Copy link
Copy link
Closed
Labels
BugA bug in TypeScriptA bug in TypeScriptFixedA PR has been merged for this issueA PR has been merged for this issueGood First IssueWell scoped, documented and has the green lightWell scoped, documented and has the green lightHelp WantedYou can do thisYou can do this
Milestone
Metadata
Metadata
Assignees
Labels
BugA bug in TypeScriptA bug in TypeScriptFixedA PR has been merged for this issueA PR has been merged for this issueGood First IssueWell scoped, documented and has the green lightWell scoped, documented and has the green lightHelp WantedYou can do thisYou can do this
Type
Fields
Give feedbackNo fields configured for issues without a type.
TypeScript Version: 1.8.0 / nightly (2.0.0-dev.201xxxxx)
Code
// A *self-contained* demonstration of the problem follows...When running tsc --help from the command line, the Examples section shows the obsolete '--out' option:
Version 2.0.0
Syntax: tsc [options] [file ...]
Examples: tsc hello.ts
tsc --out file.js file.ts <-- option '--out' is obsolete
tsc @args.txt
Options:
...
Expected behavior:
Version 2.0.0
Syntax: tsc [options] [file ...]
Examples: tsc hello.ts
tsc --outFile file.js file.ts
tsc @args.txt
Actual behavior: