Skip to content

Commit

Permalink
Mark some more options as advanced
Browse files Browse the repository at this point in the history
  • Loading branch information
mhegazy committed Feb 9, 2017
1 parent c97673c commit 4de44ee
Showing 1 changed file with 50 additions and 50 deletions.
100 changes: 50 additions & 50 deletions src/compiler/commandLineParser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -204,14 +204,6 @@ namespace ts {
category: Diagnostics.Basic_Options,
description: Diagnostics.Specify_the_root_directory_of_input_files_Use_to_control_the_output_directory_structure_with_outDir,
},
{
name: "declarationDir",
type: "string",
isFilePath: true,
paramType: Diagnostics.DIRECTORY,
category: Diagnostics.Basic_Options,
description: Diagnostics.Output_directory_for_generated_declaration_files
},
{
name: "removeComments",
type: "boolean",
Expand All @@ -232,12 +224,6 @@ namespace ts {
category: Diagnostics.Basic_Options,
description: Diagnostics.Import_emit_helpers_from_tslib
},
{
name: "skipLibCheck",
type: "boolean",
category: Diagnostics.Basic_Options,
description: Diagnostics.Skip_type_checking_of_declaration_files,
},
{
name: "isolatedModules",
type: "boolean",
Expand Down Expand Up @@ -302,36 +288,6 @@ namespace ts {
category: Diagnostics.Strict_Checks,
description: Diagnostics.Report_errors_for_fallthrough_cases_in_switch_statement
},
{
name: "allowUnusedLabels",
type: "boolean",
category: Diagnostics.Strict_Checks,
description: Diagnostics.Do_not_report_errors_on_unused_labels
},
{
name: "allowUnreachableCode",
type: "boolean",
category: Diagnostics.Strict_Checks,
description: Diagnostics.Do_not_report_errors_on_unreachable_code
},
{
name: "suppressExcessPropertyErrors",
type: "boolean",
category: Diagnostics.Strict_Checks,
description: Diagnostics.Suppress_excess_property_checks_for_object_literals,
},
{
name: "suppressImplicitAnyIndexErrors",
type: "boolean",
category: Diagnostics.Strict_Checks,
description: Diagnostics.Suppress_noImplicitAny_errors_for_indexing_objects_lacking_index_signatures,
},
{
name: "forceConsistentCasingInFileNames",
type: "boolean",
category: Diagnostics.Strict_Checks,
description: Diagnostics.Disallow_inconsistently_cased_references_to_the_same_file
},

// Module Resolution
{
Expand Down Expand Up @@ -403,12 +359,6 @@ namespace ts {
category: Diagnostics.Module_Resolution_Options,
description: Diagnostics.Allow_default_imports_from_modules_with_no_default_export_This_does_not_affect_code_emit_just_typechecking
},
{
name: "maxNodeModuleJsDepth",
type: "number",
category: Diagnostics.Module_Resolution_Options,
description: Diagnostics.The_maximum_dependency_depth_to_search_under_node_modules_and_load_JavaScript_files
},

// Source Maps
{
Expand Down Expand Up @@ -599,6 +549,56 @@ namespace ts {
category: Diagnostics.Advanced_Options,
description: Diagnostics.Do_not_erase_const_enum_declarations_in_generated_code
},
{
name: "declarationDir",
type: "string",
isFilePath: true,
paramType: Diagnostics.DIRECTORY,
category: Diagnostics.Advanced_Options,
description: Diagnostics.Output_directory_for_generated_declaration_files
},
{
name: "skipLibCheck",
type: "boolean",
category: Diagnostics.Advanced_Options,
description: Diagnostics.Skip_type_checking_of_declaration_files,
},
{
name: "allowUnusedLabels",
type: "boolean",
category: Diagnostics.Advanced_Options,
description: Diagnostics.Do_not_report_errors_on_unused_labels
},
{
name: "allowUnreachableCode",
type: "boolean",
category: Diagnostics.Advanced_Options,
description: Diagnostics.Do_not_report_errors_on_unreachable_code
},
{
name: "suppressExcessPropertyErrors",
type: "boolean",
category: Diagnostics.Advanced_Options,
description: Diagnostics.Suppress_excess_property_checks_for_object_literals,
},
{
name: "suppressImplicitAnyIndexErrors",
type: "boolean",
category: Diagnostics.Advanced_Options,
description: Diagnostics.Suppress_noImplicitAny_errors_for_indexing_objects_lacking_index_signatures,
},
{
name: "forceConsistentCasingInFileNames",
type: "boolean",
category: Diagnostics.Advanced_Options,
description: Diagnostics.Disallow_inconsistently_cased_references_to_the_same_file
},
{
name: "maxNodeModuleJsDepth",
type: "number",
category: Diagnostics.Advanced_Options,
description: Diagnostics.The_maximum_dependency_depth_to_search_under_node_modules_and_load_JavaScript_files
},
];

/* @internal */
Expand Down

0 comments on commit 4de44ee

Please sign in to comment.