Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Additional compiler option cleanup
  • Loading branch information
rbuckton committed May 14, 2015
commit 1ecd2e78459b7525a1bc6ac07de125224e3c625f
16 changes: 8 additions & 8 deletions src/compiler/commandLineParser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,27 +17,27 @@ module ts {
description: Diagnostics.Generates_corresponding_d_ts_file,
},
{
name: "packageMain",
name: "packageName",
type: "string",
isFilePath: true,
experimental: true,
description: Diagnostics.Specifies_the_main_module_for_the_package,
paramType: Diagnostics.FILE
description: Diagnostics.Specifies_the_name_of_the_package,
paramType: Diagnostics.NAME
},
{
name: "packageName",
name: "packageMain",
type: "string",
isFilePath: true,
experimental: true,
description: Diagnostics.Specifies_the_name_of_the_package,
paramType: Diagnostics.NAME
description: Diagnostics.Specifies_the_main_module_for_the_package,
paramType: Diagnostics.FILE
},
{
name: "packageDeclaration",
type: "string",
isFilePath: true,
experimental: true,
description: Diagnostics.Specifies_the_output_path_for_the_package_declaration,
paramType: Diagnostics.LOCATION
paramType: Diagnostics.FILE
},
{
name: "packageDir",
Expand Down