You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/compiler/diagnosticInformationMap.generated.ts
+8-3Lines changed: 8 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -161,7 +161,7 @@ module ts {
161
161
Line_terminator_not_permitted_before_arrow: {code: 1200,category: DiagnosticCategory.Error,key: "Line terminator not permitted before arrow."},
162
162
Import_assignment_cannot_be_used_when_targeting_ECMAScript_6_or_higher_Consider_using_import_Asterisk_as_ns_from_mod_import_a_from_mod_or_import_d_from_mod_instead: {code: 1202,category: DiagnosticCategory.Error,key: "Import assignment cannot be used when targeting ECMAScript 6 or higher. Consider using 'import * as ns from \"mod\"', 'import {a} from \"mod\"' or 'import d from \"mod\"' instead."},
163
163
Export_assignment_cannot_be_used_when_targeting_ECMAScript_6_or_higher_Consider_using_export_default_instead: {code: 1203,category: DiagnosticCategory.Error,key: "Export assignment cannot be used when targeting ECMAScript 6 or higher. Consider using 'export default' instead."},
164
-
Cannot_compile_modules_into_amd_commonjs_or_umd_when_targeting_ES6_or_higher: {code: 1204,category: DiagnosticCategory.Error,key: "Cannot compile modules into 'amd', 'commonjs' or 'umd' when targeting 'ES6' or higher."},
164
+
Cannot_compile_modules_into_commonjs_amd_system_or_umd_when_targeting_ES6_or_higher: {code: 1204,category: DiagnosticCategory.Error,key: "Cannot compile modules into 'commonjs', 'amd', 'system' or 'umd' when targeting 'ES6' or higher."},
165
165
Decorators_are_only_available_when_targeting_ECMAScript_5_and_higher: {code: 1205,category: DiagnosticCategory.Error,key: "Decorators are only available when targeting ECMAScript 5 and higher."},
166
166
Decorators_are_not_valid_here: {code: 1206,category: DiagnosticCategory.Error,key: "Decorators are not valid here."},
167
167
Decorators_cannot_be_applied_to_multiple_get_Slashset_accessors_of_the_same_name: {code: 1207,category: DiagnosticCategory.Error,key: "Decorators cannot be applied to multiple get/set accessors of the same name."},
@@ -173,6 +173,7 @@ module ts {
173
173
Identifier_expected_0_is_a_reserved_word_in_strict_mode_Class_definitions_are_automatically_in_strict_mode: {code: 1213,category: DiagnosticCategory.Error,key: "Identifier expected. '{0}' is a reserved word in strict mode. Class definitions are automatically in strict mode."},
174
174
Type_expected_0_is_a_reserved_word_in_strict_mode: {code: 1215,category: DiagnosticCategory.Error,key: "Type expected. '{0}' is a reserved word in strict mode"},
175
175
Type_expected_0_is_a_reserved_word_in_strict_mode_Class_definitions_are_automatically_in_strict_mode: {code: 1216,category: DiagnosticCategory.Error,key: "Type expected. '{0}' is a reserved word in strict mode. Class definitions are automatically in strict mode."},
176
+
Export_assignment_is_not_supported_when_module_flag_is_system: {code: 1218,category: DiagnosticCategory.Error,key: "Export assignment is not supported when '--module' flag is 'system'."},
Initializer_of_instance_member_variable_0_cannot_reference_identifier_1_declared_in_the_constructor: {code: 2301,category: DiagnosticCategory.Error,key: "Initializer of instance member variable '{0}' cannot reference identifier '{1}' declared in the constructor."},
178
179
Static_members_cannot_reference_class_type_parameters: {code: 2302,category: DiagnosticCategory.Error,key: "Static members cannot reference class type parameters."},
@@ -451,6 +452,10 @@ module ts {
451
452
Option_noEmitOnError_cannot_be_specified_with_option_separateCompilation: {code: 5045,category: DiagnosticCategory.Error,key: "Option 'noEmitOnError' cannot be specified with option 'separateCompilation'."},
452
453
Option_out_cannot_be_specified_with_option_separateCompilation: {code: 5046,category: DiagnosticCategory.Error,key: "Option 'out' cannot be specified with option 'separateCompilation'."},
453
454
Option_separateCompilation_can_only_be_used_when_either_option_module_is_provided_or_option_target_is_ES6_or_higher: {code: 5047,category: DiagnosticCategory.Error,key: "Option 'separateCompilation' can only be used when either option'--module' is provided or option 'target' is 'ES6' or higher."},
455
+
Option_sourceMap_cannot_be_specified_with_option_inlineSourceMap: {code: 5048,category: DiagnosticCategory.Error,key: "Option 'sourceMap' cannot be specified with option 'inlineSourceMap'."},
456
+
Option_sourceRoot_cannot_be_specified_with_option_inlineSourceMap: {code: 5049,category: DiagnosticCategory.Error,key: "Option 'sourceRoot' cannot be specified with option 'inlineSourceMap'."},
457
+
Option_mapRoot_cannot_be_specified_with_option_inlineSourceMap: {code: 5050,category: DiagnosticCategory.Error,key: "Option 'mapRoot' cannot be specified with option 'inlineSourceMap'."},
458
+
Option_inlineSources_can_only_be_used_when_either_option_inlineSourceMap_or_option_sourceMap_is_provided: {code: 5051,category: DiagnosticCategory.Error,key: "Option 'inlineSources' can only be used when either option '--inlineSourceMap' or option '--sourceMap' is provided."},
454
459
Concatenate_and_emit_output_to_single_file: {code: 6001,category: DiagnosticCategory.Message,key: "Concatenate and emit output to single file."},
Specifies_the_location_where_debugger_should_locate_map_files_instead_of_generated_locations: {code: 6003,category: DiagnosticCategory.Message,key: "Specifies the location where debugger should locate map files instead of generated locations."},
@@ -462,7 +467,7 @@ module ts {
462
467
Do_not_emit_comments_to_output: {code: 6009,category: DiagnosticCategory.Message,key: "Do not emit comments to output."},
463
468
Do_not_emit_outputs: {code: 6010,category: DiagnosticCategory.Message,key: "Do not emit outputs."},
Argument_for_module_option_must_be_commonjs_amd_or_umd: {code: 6046,category: DiagnosticCategory.Error,key: "Argument for '--module' option must be 'commonjs', 'amd', or 'umd'."},
491
+
Argument_for_module_option_must_be_commonjs_amd_system_or_umd: {code: 6046,category: DiagnosticCategory.Error,key: "Argument for '--module' option must be 'commonjs', 'amd', 'system' or 'umd'."},
487
492
Argument_for_target_option_must_be_ES3_ES5_or_ES6: {code: 6047,category: DiagnosticCategory.Error,key: "Argument for '--target' option must be 'ES3', 'ES5', or 'ES6'."},
488
493
Locale_must_be_of_the_form_language_or_language_territory_For_example_0_or_1: {code: 6048,category: DiagnosticCategory.Error,key: "Locale must be of the form <language> or <language>-<territory>. For example '{0}' or '{1}'."},
0 commit comments