@@ -396,7 +396,7 @@ namespace ts {
396
396
output = [
397
397
...output ,
398
398
...generateSectionOptionsOutput ( sys , getDiagnosticText ( Diagnostics . COMMAND_LINE_FLAGS ) , cliCommands , /*subCategory*/ false , /* beforeOptionsDescription */ undefined , /* afterOptionsDescription*/ undefined ) ,
399
- ...generateSectionOptionsOutput ( sys , getDiagnosticText ( Diagnostics . COMMON_COMPILER_OPTIONS ) , configOpts , /*subCategory*/ false , /* beforeOptionsDescription */ undefined , formatMessage ( /*_dummy*/ undefined , Diagnostics . You_can_learn_about_all_of_the_compiler_options_at_0 , "https://aka.ms/tsconfig-reference " ) )
399
+ ...generateSectionOptionsOutput ( sys , getDiagnosticText ( Diagnostics . COMMON_COMPILER_OPTIONS ) , configOpts , /*subCategory*/ false , /* beforeOptionsDescription */ undefined , formatMessage ( /*_dummy*/ undefined , Diagnostics . You_can_learn_about_all_of_the_compiler_options_at_0 , "https://aka.ms/tsc " ) )
400
400
] ;
401
401
402
402
for ( const line of output ) {
@@ -414,7 +414,7 @@ namespace ts {
414
414
415
415
function printAllHelp ( sys : System , compilerOptions : readonly CommandLineOption [ ] , buildOptions : readonly CommandLineOption [ ] , watchOptions : readonly CommandLineOption [ ] ) {
416
416
let output : string [ ] = [ ...getHeader ( sys , `${ getDiagnosticText ( Diagnostics . tsc_Colon_The_TypeScript_Compiler ) } - ${ getDiagnosticText ( Diagnostics . Version_0 , version ) } ` ) ] ;
417
- output = [ ...output , ...generateSectionOptionsOutput ( sys , getDiagnosticText ( Diagnostics . ALL_COMPILER_OPTIONS ) , compilerOptions , /*subCategory*/ true , /* beforeOptionsDescription */ undefined , formatMessage ( /*_dummy*/ undefined , Diagnostics . You_can_learn_about_all_of_the_compiler_options_at_0 , "https://aka.ms/tsconfig-reference " ) ) ] ;
417
+ output = [ ...output , ...generateSectionOptionsOutput ( sys , getDiagnosticText ( Diagnostics . ALL_COMPILER_OPTIONS ) , compilerOptions , /*subCategory*/ true , /* beforeOptionsDescription */ undefined , formatMessage ( /*_dummy*/ undefined , Diagnostics . You_can_learn_about_all_of_the_compiler_options_at_0 , "https://aka.ms/tsc " ) ) ] ;
418
418
output = [ ...output , ...generateSectionOptionsOutput ( sys , getDiagnosticText ( Diagnostics . WATCH_OPTIONS ) , watchOptions , /*subCategory*/ false , getDiagnosticText ( Diagnostics . Including_watch_w_will_start_watching_the_current_project_for_the_file_changes_Once_set_you_can_config_watch_mode_with_Colon ) ) ] ;
419
419
output = [ ...output , ...generateSectionOptionsOutput ( sys , getDiagnosticText ( Diagnostics . BUILD_OPTIONS ) , buildOptions , /*subCategory*/ false , formatMessage ( /*_dummy*/ undefined , Diagnostics . Using_build_b_will_make_tsc_behave_more_like_a_build_orchestrator_than_a_compiler_This_is_used_to_trigger_building_composite_projects_which_you_can_learn_more_about_at_0 , "https://aka.ms/tsc-composite-builds" ) ) ] ;
420
420
for ( const line of output ) {
@@ -1061,7 +1061,7 @@ namespace ts {
1061
1061
sys . writeFile ( file , generateTSConfig ( options , fileNames , sys . newLine ) ) ;
1062
1062
const output : string [ ] = [ sys . newLine , ...getHeader ( sys , "Created a new tsconfig.json with:" ) ] ;
1063
1063
output . push ( getCompilerOptionsDiffValue ( options , sys . newLine ) + sys . newLine + sys . newLine ) ;
1064
- output . push ( `You can learn more at https://aka.ms/tsconfig.json ` + sys . newLine ) ;
1064
+ output . push ( `You can learn more at https://aka.ms/tsconfig` + sys . newLine ) ;
1065
1065
for ( const line of output ) {
1066
1066
sys . write ( line ) ;
1067
1067
}
0 commit comments