typescript 5.8.3 → 5.9.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/_tsc.js +6798 -5816
- package/lib/cs/diagnosticMessages.generated.json +32 -15
- package/lib/de/diagnosticMessages.generated.json +32 -15
- package/lib/es/diagnosticMessages.generated.json +32 -15
- package/lib/fr/diagnosticMessages.generated.json +32 -15
- package/lib/it/diagnosticMessages.generated.json +32 -15
- package/lib/ja/diagnosticMessages.generated.json +32 -15
- package/lib/ko/diagnosticMessages.generated.json +32 -15
- package/lib/lib.dom.d.ts +14642 -4823
- package/lib/lib.dom.iterable.d.ts +103 -25
- package/lib/lib.es2015.symbol.wellknown.d.ts +1 -1
- package/lib/lib.es2017.sharedmemory.d.ts +1 -1
- package/lib/lib.es2022.intl.d.ts +25 -1
- package/lib/lib.es5.d.ts +9 -2
- package/lib/lib.esnext.d.ts +2 -0
- package/lib/lib.esnext.error.d.ts +24 -0
- package/lib/lib.esnext.sharedmemory.d.ts +25 -0
- package/lib/lib.webworker.d.ts +4593 -1337
- package/lib/lib.webworker.iterable.d.ts +72 -19
- package/lib/pl/diagnosticMessages.generated.json +32 -15
- package/lib/pt-br/diagnosticMessages.generated.json +32 -15
- package/lib/ru/diagnosticMessages.generated.json +32 -15
- package/lib/tr/diagnosticMessages.generated.json +32 -15
- package/lib/typescript.d.ts +252 -213
- package/lib/typescript.js +9139 -8006
- package/lib/zh-cn/diagnosticMessages.generated.json +32 -15
- package/lib/zh-tw/diagnosticMessages.generated.json +32 -15
- package/package.json +22 -22
|
@@ -203,7 +203,7 @@
|
|
|
203
203
|
"All_imports_in_import_declaration_are_unused_6192": "Tutte le importazioni nella dichiarazione di importazione sono inutilizzate.",
|
|
204
204
|
"All_type_parameters_are_unused_6205": "Tutti i parametri di tipo sono inutilizzati.",
|
|
205
205
|
"All_variables_are_unused_6199": "Tutte le variabili sono inutilizzate.",
|
|
206
|
-
"
|
|
206
|
+
"Allow_JavaScript_files_to_be_a_part_of_your_program_Use_the_checkJs_option_to_get_errors_from_these__6600": "Acconsenti che i file JavaScript facciano parte del tuo programma. Usa l'opzione 'checkJs' per acquisire gli errori da questi file.",
|
|
207
207
|
"Allow_accessing_UMD_globals_from_modules_6602": "Consentire l'accesso alle istruzioni globali UMD dai moduli.",
|
|
208
208
|
"Allow_default_imports_from_modules_with_no_default_export_This_does_not_affect_code_emit_just_typech_6011": "Consente di eseguire importazioni predefinite da moduli senza esportazione predefinita. Non influisce sulla creazione del codice ma solo sul controllo dei tipi.",
|
|
209
209
|
"Allow_import_x_from_y_when_a_module_doesn_t_have_a_default_export_6601": "Consente 'import x from y' quando un modulo non contiene un'esportazione predefinita.",
|
|
@@ -329,6 +329,7 @@
|
|
|
329
329
|
"Call_signature_return_types_0_and_1_are_incompatible_2202": "I tipi restituiti delle firme di chiamata '{0}' e '{1}' sono incompatibili.",
|
|
330
330
|
"Call_signature_which_lacks_return_type_annotation_implicitly_has_an_any_return_type_7020": "La firma di chiamata, in cui manca l'annotazione di tipo restituito, contiene implicitamente un tipo restituito 'any'.",
|
|
331
331
|
"Call_signatures_with_no_arguments_have_incompatible_return_types_0_and_1_2204": "Le firme di chiamata senza argomenti contengono i tipi restituiti incompatibili '{0}' e '{1}'.",
|
|
332
|
+
"Call_target_does_not_contain_any_signatures_2346": "La destinazione della chiamata non contiene alcuna firma.",
|
|
332
333
|
"Can_only_convert_logical_AND_access_chains_95142": "È possibile convertire solo catene di accesso AND logiche",
|
|
333
334
|
"Can_only_convert_named_export_95164": "È possibile solo convertire l'esportazione denominata",
|
|
334
335
|
"Can_only_convert_property_with_modifier_95137": "È possibile convertire solo la proprietà con il modificatore",
|
|
@@ -438,7 +439,7 @@
|
|
|
438
439
|
"Class_decorators_can_t_be_used_with_static_private_identifier_Consider_removing_the_experimental_dec_18036": "Non è possibile elementi Decorator di classe con l'identificatore privato statico. Provare a rimuovere l'elemento Decorator sperimentale.",
|
|
439
440
|
"Class_field_0_defined_by_the_parent_class_is_not_accessible_in_the_child_class_via_super_2855": "Il campo della classe '{0}' definito dalla classe padre non è accessibile nella classe figlio tramite super.",
|
|
440
441
|
"Class_name_cannot_be_0_2414": "Il nome della classe non può essere '{0}'.",
|
|
441
|
-
"
|
|
442
|
+
"Class_name_cannot_be_Object_when_targeting_ES5_and_above_with_module_0_2725": "Il nome della classe non può essere 'Object' quando la destinazione è ES5 o superiore con il modulo {0}.",
|
|
442
443
|
"Class_static_side_0_incorrectly_extends_base_class_static_side_1_2417": "Il lato statico '{0}' della classe estende in modo errato il lato statico '{1}' della classe di base.",
|
|
443
444
|
"Classes_can_only_extend_a_single_class_1174": "Le classi possono estendere solo un'unica classe.",
|
|
444
445
|
"Classes_may_not_have_a_field_named_constructor_18006": "Le classi non possono includere un campo denominato 'constructor'.",
|
|
@@ -569,8 +570,10 @@
|
|
|
569
570
|
"Default_catch_clause_variables_as_unknown_instead_of_any_6803": "Le variabili della clausola catch predefinite sono 'unknown' anziché 'any'.",
|
|
570
571
|
"Default_export_of_the_module_has_or_is_using_private_name_0_4082": "L'esportazione predefinita del modulo contiene o usa il nome privato '{0}'.",
|
|
571
572
|
"Default_exports_can_t_be_inferred_with_isolatedDeclarations_9037": "Non è possibile dedurre le esportazioni predefinite con --isolatedDeclarations.",
|
|
573
|
+
"Default_imports_are_not_allowed_in_a_deferred_import_18058": "Le importazioni predefinite non sono consentite in un'importazione posticipata.",
|
|
572
574
|
"Default_library_1424": "Libreria predefinita",
|
|
573
575
|
"Default_library_for_target_0_1425": "Libreria predefinita per la destinazione '{0}'",
|
|
576
|
+
"Deferred_imports_are_only_supported_when_the_module_flag_is_set_to_esnext_or_preserve_18060": "Le importazioni posticipate sono supportate solo quando il flag '--module' è impostato su 'esnext' o 'preserve'.",
|
|
574
577
|
"Definitions_of_the_following_identifiers_conflict_with_those_in_another_file_Colon_0_6200": "Le definizioni degli identificatori seguenti sono in conflitto con quelle di un altro file: {0}",
|
|
575
578
|
"Delete_all_unused_declarations_95024": "Eliminare tutte le dichiarazioni non usate",
|
|
576
579
|
"Delete_all_unused_imports_95147": "Eliminare tutte le direttive import non usate",
|
|
@@ -647,9 +650,9 @@
|
|
|
647
650
|
"Duplicate_property_0_2718": "La proprietà '{0}' è duplicata.",
|
|
648
651
|
"Duplicate_regular_expression_flag_1500": "Flag di espressione regolare duplicato.",
|
|
649
652
|
"Dynamic_import_s_specifier_must_be_of_type_string_but_here_has_type_0_7036": "L'identificatore dell'importazione dinamica deve essere di tipo 'string', ma il tipo specificato qui è '{0}'.",
|
|
650
|
-
"Dynamic_imports_are_only_supported_when_the_module_flag_is_set_to_es2020_es2022_esnext_commonjs_amd__1323": "Le importazioni dinamiche sono supportate solo quando il flag '--module' è impostato su 'es2020', 'es2022', 'esnext', 'commonjs', 'amd', 'system', 'umd', 'node16', 'node18' o 'nodenext'.",
|
|
653
|
+
"Dynamic_imports_are_only_supported_when_the_module_flag_is_set_to_es2020_es2022_esnext_commonjs_amd__1323": "Le importazioni dinamiche sono supportate solo quando il flag '--module' è impostato su 'es2020', 'es2022', 'esnext', 'commonjs', 'amd', 'system', 'umd', 'node16', 'node18', 'node20' o 'nodenext'.",
|
|
651
654
|
"Dynamic_imports_can_only_accept_a_module_specifier_and_an_optional_set_of_attributes_as_arguments_1450": "Le importazioni dinamiche possono accettare come argomenti solo un identificatore di modulo e un set di attributi facoltativi",
|
|
652
|
-
"Dynamic_imports_only_support_a_second_argument_when_the_module_option_is_set_to_esnext_node16_node18_1324": "Le importazioni dinamiche supportano un secondo argomento solo quando l'opzione '--module' è impostata su 'esnext', 'node16', 'node18', 'nodenext' o 'preserve'.",
|
|
655
|
+
"Dynamic_imports_only_support_a_second_argument_when_the_module_option_is_set_to_esnext_node16_node18_1324": "Le importazioni dinamiche supportano un secondo argomento solo quando l'opzione '--module' è impostata su 'esnext', 'node16', 'node18', 'node20', 'nodenext' o 'preserve'.",
|
|
653
656
|
"ESM_syntax_is_not_allowed_in_a_CommonJS_module_when_module_is_set_to_preserve_1293": "Sintassi ESM non consentita in un modulo CommonJS quando 'module' è impostato su 'preserve'.",
|
|
654
657
|
"ESM_syntax_is_not_allowed_in_a_CommonJS_module_when_verbatimModuleSyntax_is_enabled_1286": "Sintassi ESM non consentita in un modulo CommonJS quando 'verbatimModuleSyntax' è abilitato.",
|
|
655
658
|
"Each_declaration_of_0_1_differs_in_its_value_where_2_was_expected_but_3_was_given_4125": "Il valore di ogni dichiarazione di '{0}.{1}' è diverso, dove '{2}' è previsto mentre '{3}' è specificato.",
|
|
@@ -713,6 +716,7 @@
|
|
|
713
716
|
"Enum_member_initializers_must_be_computable_without_references_to_external_symbols_with_isolatedDecl_9020": "Gli inizializzatori di membri di enumerazione devono essere calcolabili senza riferimenti a simboli esterni con --isolatedDeclarations.",
|
|
714
717
|
"Enum_member_must_have_initializer_1061": "Il membro di enumerazione deve contenere l'inizializzatore.",
|
|
715
718
|
"Enum_name_cannot_be_0_2431": "Il nome dell'enumerazione non può essere '{0}'.",
|
|
719
|
+
"Environment_Settings_6285": "Impostazioni ambiente",
|
|
716
720
|
"Errors_Files_6041": "File di errori",
|
|
717
721
|
"Escape_sequence_0_is_not_allowed_1488": "Sequenza di escape '{0}' non consentita.",
|
|
718
722
|
"Examples_Colon_0_6026": "Esempi: {0}",
|
|
@@ -789,6 +793,7 @@
|
|
|
789
793
|
"File_0_is_not_listed_within_the_file_list_of_project_1_Projects_must_list_all_files_or_use_an_includ_6307": "Il file '{0}' non è incluso nell'elenco file del progetto '{1}'. I progetti devono elencare tutti i file o usare un criterio 'include'.",
|
|
790
794
|
"File_0_is_not_under_rootDir_1_rootDir_is_expected_to_contain_all_source_files_6059": "Il file '{0}' non si trova in 'rootDir' '{1}'. 'rootDir' deve contenere tutti i file di origine.",
|
|
791
795
|
"File_0_not_found_6053": "Il file '{0}' non è stato trovato.",
|
|
796
|
+
"File_Layout_6284": "Layout file",
|
|
792
797
|
"File_Management_6245": "Gestione dei file",
|
|
793
798
|
"File_appears_to_be_binary_1490": "Il file sembra essere binario.",
|
|
794
799
|
"File_change_detected_Starting_incremental_compilation_6032": "È stata rilevata una modifica ai file. Verrà avviata la compilazione incrementale...",
|
|
@@ -821,6 +826,7 @@
|
|
|
821
826
|
"Fix_all_implicit_this_errors_95107": "Correggere tutti gli errori relativi a 'this' implicito",
|
|
822
827
|
"Fix_all_incorrect_return_type_of_an_async_functions_90037": "Correggere tutti i tipi restituiti non corretti di una funzione asincrona",
|
|
823
828
|
"Fix_all_with_type_only_imports_95182": "Correggere tutto con importazioni type-only",
|
|
829
|
+
"For_nodejs_Colon_6287": "Per nodejs:",
|
|
824
830
|
"Found_0_errors_6217": "Sono stati trovati {0} errori.",
|
|
825
831
|
"Found_0_errors_Watching_for_file_changes_6194": "Sono stati trovati {0} errori. Verranno individuate le modifiche ai file.",
|
|
826
832
|
"Found_0_errors_in_1_files_6261": "Sono stati trovati {0} errori nei file {1}.",
|
|
@@ -890,13 +896,13 @@
|
|
|
890
896
|
"Import_0_from_1_90013": "Importare '{0}' da \"{1}\".",
|
|
891
897
|
"Import_assertion_values_must_be_string_literal_expressions_2837": "I valori di asserzione di importazione devono essere espressioni letterali delle stringhe.",
|
|
892
898
|
"Import_assertions_are_not_allowed_on_statements_that_compile_to_CommonJS_require_calls_2836": "Le asserzioni di importazione non sono consentite nelle istruzioni che compilano nelle chiamate 'require' di CommonJS.",
|
|
893
|
-
"
|
|
899
|
+
"Import_assertions_are_only_supported_when_the_module_option_is_set_to_esnext_node18_node20_nodenext__2821": "Le asserzioni di importazione sono supportate solo quando l'opzione '--module' è impostata su 'esnext', 'node18', 'node20', 'nodenext' o 'preserve'.",
|
|
894
900
|
"Import_assertions_cannot_be_used_with_type_only_imports_or_exports_2822": "Non è possibile usare asserzioni di importazione con importazioni o esportazioni di solo tipo.",
|
|
895
901
|
"Import_assertions_have_been_replaced_by_import_attributes_Use_with_instead_of_assert_2880": "Le asserzioni di importazione sono state sostituite dagli attributi di importazione. Usare 'with' invece di 'assert'.",
|
|
896
902
|
"Import_assignment_cannot_be_used_when_targeting_ECMAScript_modules_Consider_using_import_Asterisk_as_1202": "Non è possibile usare l'assegnazione di importazione se destinata a moduli ECMAScript. Provare a usare 'import * as ns from \"mod\"', 'import {a} from \"mod\"', 'import d from \"mod\"' o un altro formato di modulo.",
|
|
897
903
|
"Import_attribute_values_must_be_string_literal_expressions_2858": "I valori degli attributi di importazione devono essere espressioni letterali delle stringhe.",
|
|
898
904
|
"Import_attributes_are_not_allowed_on_statements_that_compile_to_CommonJS_require_calls_2856": "Gli attributi di importazione non sono consentiti nelle istruzioni che compilano nelle chiamate 'require' di CommonJS.",
|
|
899
|
-
"
|
|
905
|
+
"Import_attributes_are_only_supported_when_the_module_option_is_set_to_esnext_node18_node20_nodenext__2823": "Gli attributi di importazione sono supportati solo quando l'opzione '--module' è impostata su 'esnext', 'node18', 'node20', 'nodenext' o 'preserve'.",
|
|
900
906
|
"Import_attributes_cannot_be_used_with_type_only_imports_or_exports_2857": "Non è possibile usare attributi di importazione con importazioni o esportazioni type-only.",
|
|
901
907
|
"Import_declaration_0_is_using_private_name_1_4000": "La dichiarazione di importazione '{0}' usa il nome privato '{1}'.",
|
|
902
908
|
"Import_declaration_conflicts_with_local_declaration_of_0_2440": "La dichiarazione di importazione è in conflitto con la dichiarazione locale di '{0}'.",
|
|
@@ -1065,6 +1071,7 @@
|
|
|
1065
1071
|
"Name_is_not_valid_95136": "Nome non valido.",
|
|
1066
1072
|
"Named_capturing_groups_are_only_available_when_targeting_ES2018_or_later_1503": "I gruppi di acquisizione denominati sono disponibili solo se destinati a 'ES2018' o versioni successive.",
|
|
1067
1073
|
"Named_capturing_groups_with_the_same_name_must_be_mutually_exclusive_to_each_other_1515": "I gruppi di acquisizione denominati con lo stesso nome devono escludersi a vicenda.",
|
|
1074
|
+
"Named_imports_are_not_allowed_in_a_deferred_import_18059": "Le importazioni denominate non sono consentite in un'importazione posticipata.",
|
|
1068
1075
|
"Named_imports_from_a_JSON_file_into_an_ECMAScript_module_are_not_allowed_when_module_is_set_to_0_1544": "Le importazioni denominate da un file JSON in un modulo ECMAScript non sono consentite quando \"module\" è impostato su \"{0}\".",
|
|
1069
1076
|
"Named_property_0_of_types_1_and_2_are_not_identical_2319": "Le proprietà denominate '{0}' dei tipi '{1}' e '{2}' non sono identiche.",
|
|
1070
1077
|
"Namespace_0_has_no_exported_member_1_2694": "Lo spazio dei nomi '{0}' non contiene un membro esportato '{1}'.",
|
|
@@ -1153,6 +1160,7 @@
|
|
|
1153
1160
|
"Option_verbatimModuleSyntax_cannot_be_used_when_module_is_set_to_UMD_AMD_or_System_5105": "Non è possibile usare l'opzione 'verbatimModuleSyntax' quando 'module' è impostato su 'UMD', 'AMD' o 'System'.",
|
|
1154
1161
|
"Options_0_and_1_cannot_be_combined_6370": "Non è possibile combinare le opzioni '{0}' e '{1}'.",
|
|
1155
1162
|
"Options_Colon_6027": "Opzioni:",
|
|
1163
|
+
"Other_Outputs_6291": "Altri output",
|
|
1156
1164
|
"Output_Formatting_6256": "Formattazione dell'output",
|
|
1157
1165
|
"Output_compiler_performance_information_after_building_6615": "Restituisce informazioni sulle prestazioni del compilatore dopo la compilazione.",
|
|
1158
1166
|
"Output_directory_for_generated_declaration_files_6166": "Directory di output per i file di dichiarazione generati.",
|
|
@@ -1231,8 +1239,8 @@
|
|
|
1231
1239
|
"Private_identifiers_are_only_available_when_targeting_ECMAScript_2015_and_higher_18028": "Gli identificatori privati sono disponibili solo se destinati a ECMAScript 2015 e versioni successive.",
|
|
1232
1240
|
"Private_identifiers_cannot_be_used_as_parameters_18009": "Non è possibile usare gli identificatori privati come parametri.",
|
|
1233
1241
|
"Private_or_protected_member_0_cannot_be_accessed_on_a_type_parameter_4105": "Non è possibile accedere al membro privato o protetto '{0}' in un parametro di tipo.",
|
|
1234
|
-
"Project_0_can_t_be_built_because_its_dependency_1_has_errors_6363": "
|
|
1235
|
-
"Project_0_can_t_be_built_because_its_dependency_1_was_not_built_6383": "
|
|
1242
|
+
"Project_0_can_t_be_built_because_its_dependency_1_has_errors_6363": "Non è possibile compilare il progetto '{0}' perché la dipendenza '{1}' contiene errori",
|
|
1243
|
+
"Project_0_can_t_be_built_because_its_dependency_1_was_not_built_6383": "Non è possibile compilare il progetto '{0}' perché la relativa dipendenza '{1}' non è stata compilata",
|
|
1236
1244
|
"Project_0_is_being_forcibly_rebuilt_6388": "Il progetto '{0}' è stato ricompilato forzatamente",
|
|
1237
1245
|
"Project_0_is_out_of_date_because_1_6420": "Il progetto '{0}' non è aggiornato perché {1}.",
|
|
1238
1246
|
"Project_0_is_out_of_date_because_buildinfo_file_1_indicates_that_file_2_was_root_file_of_compilation_6412": "Il progetto '{0}' non è aggiornato perché il file buildinfo '{1}' indica che il file '{2}' era un file radice di compilazione ma non più aggiornato.",
|
|
@@ -1315,6 +1323,7 @@
|
|
|
1315
1323
|
"Range_out_of_order_in_character_class_1517": "Intervallo non in ordine nella classe di caratteri.",
|
|
1316
1324
|
"Re_exporting_a_type_when_0_is_enabled_requires_using_export_type_1205": "Riesportare un tipo quando '{0}' è abilitato richiede l'uso di 'export type'.",
|
|
1317
1325
|
"React_components_cannot_include_JSX_namespace_names_2639": "I componenti React non possono includere nomi di spazio dei nomi JSX",
|
|
1326
|
+
"Recommended_Options_6294": "Opzioni consigliate",
|
|
1318
1327
|
"Redirect_output_structure_to_the_directory_6006": "Reindirizza la struttura di output alla directory.",
|
|
1319
1328
|
"Reduce_the_number_of_projects_loaded_automatically_by_TypeScript_6617": "Riduce il numero di progetti caricati automaticamente da TypeScript.",
|
|
1320
1329
|
"Referenced_project_0_may_not_disable_emit_6310": "Il progetto di riferimento '{0}' non può disabilitare la creazione.",
|
|
@@ -1429,6 +1438,7 @@
|
|
|
1429
1438
|
"Scoped_package_detected_looking_in_0_6182": "Il pacchetto con ambito è stato rilevato. Verrà eseguita una ricerca in '{0}'",
|
|
1430
1439
|
"Searching_all_ancestor_node_modules_directories_for_fallback_extensions_Colon_0_6418": "Ricerca di estensioni di fallback in tutte le directory node_modules predecessori: {0}.",
|
|
1431
1440
|
"Searching_all_ancestor_node_modules_directories_for_preferred_extensions_Colon_0_6417": "Ricerca di estensioni preferite in tutte le directory node_modules predecessori: {0}.",
|
|
1441
|
+
"See_also_https_Colon_Slash_Slashaka_ms_Slashtsconfig_Slashmodule_6286": "Vedi anche https://aka.ms/tsconfig/module",
|
|
1432
1442
|
"Selection_is_not_a_valid_statement_or_statements_95155": "La selezione non corrisponde a una o più istruzioni valide",
|
|
1433
1443
|
"Selection_is_not_a_valid_type_node_95133": "La selezione non corrisponde a un nodo di tipo valido",
|
|
1434
1444
|
"Set_the_JavaScript_language_version_for_emitted_JavaScript_and_include_compatible_library_declaratio_6705": "Imposta la versione del linguaggio JavaScript per il codice JavaScript creato e include le dichiarazioni di libreria compatibili.",
|
|
@@ -1447,8 +1457,8 @@
|
|
|
1447
1457
|
"Skip_type_checking_all_d_ts_files_6693": "Ignora il controllo del tipo di tutti i file .d.ts.",
|
|
1448
1458
|
"Skip_type_checking_d_ts_files_that_are_included_with_TypeScript_6692": "Ignora il controllo dei tipi dei file .d.ts inclusi con TypeScript.",
|
|
1449
1459
|
"Skip_type_checking_of_declaration_files_6012": "Ignora il controllo del tipo dei file di dichiarazione.",
|
|
1450
|
-
"Skipping_build_of_project_0_because_its_dependency_1_has_errors_6362": "
|
|
1451
|
-
"Skipping_build_of_project_0_because_its_dependency_1_was_not_built_6382": "
|
|
1460
|
+
"Skipping_build_of_project_0_because_its_dependency_1_has_errors_6362": "La compilazione del progetto '{0}' verrà ignorata perché la dipendenza '{1}' contiene errori",
|
|
1461
|
+
"Skipping_build_of_project_0_because_its_dependency_1_was_not_built_6382": "La compilazione del progetto '{0}' verrà ignorata perché la dipendenza '{1}' non è stata compilata",
|
|
1452
1462
|
"Skipping_module_0_that_looks_like_an_absolute_URI_target_file_types_Colon_1_6164": "Vine ignorato il modulo '{0}' che sembra un URI assoluto, tipi di file di destinazione: {1}.",
|
|
1453
1463
|
"Source_from_referenced_project_0_included_because_1_specified_1414": "L'origine del progetto di riferimento '{0}' è inclusa perché è stato specificato '{1}'",
|
|
1454
1464
|
"Source_from_referenced_project_0_included_because_module_is_specified_as_none_1415": "L'origine del progetto di riferimento '{0}' è inclusa perché il valore specificato per '--module' è 'none'",
|
|
@@ -1508,9 +1518,11 @@
|
|
|
1508
1518
|
"Statements_are_not_allowed_in_ambient_contexts_1036": "Le istruzioni non sono consentite in contesti di ambiente.",
|
|
1509
1519
|
"Static_members_cannot_reference_class_type_parameters_2302": "I membri statici non possono fare riferimento a parametri di tipo classe.",
|
|
1510
1520
|
"Static_property_0_conflicts_with_built_in_property_Function_0_of_constructor_function_1_2699": "La proprietà statica '{0}' è in conflitto con la proprietà predefinita 'Function.{0}' della funzione del costruttore '{1}'.",
|
|
1521
|
+
"Stricter_Typechecking_Options_6292": "Opzioni di controllo dei tipi più rigorose",
|
|
1511
1522
|
"String_literal_expected_1141": "È previsto un valore letterale stringa.",
|
|
1512
1523
|
"String_literal_import_and_export_names_are_not_supported_when_the_module_flag_is_set_to_es2015_or_es_18057": "I nomi di importazione ed esportazione di valori letterali stringa non sono supportati quando il flag '--module' è impostato su 'es2015' o 'es2020'.",
|
|
1513
1524
|
"String_literal_with_double_quotes_expected_1327": "È previsto un valore letterale stringa con virgolette doppie.",
|
|
1525
|
+
"Style_Options_6293": "Opzioni di stile",
|
|
1514
1526
|
"Stylize_errors_and_messages_using_color_and_context_experimental_6073": "Applica stili a errori e messaggi usando colore e contesto (sperimentale).",
|
|
1515
1527
|
"Subpattern_flags_must_be_present_when_there_is_a_minus_sign_1504": "Quando è presente un segno meno, devono essere presenti flag di criteri secondari.",
|
|
1516
1528
|
"Subsequent_property_declarations_must_have_the_same_type_Property_0_must_be_of_type_1_but_here_has_t_2717": "Le dichiarazioni di proprietà successive devono essere dello stesso tipo. La proprietà '{0}' deve essere di tipo '{1}', ma qui è di tipo '{2}'.",
|
|
@@ -1562,7 +1574,7 @@
|
|
|
1562
1574
|
"The_global_type_JSX_0_may_not_have_more_than_one_property_2608": "Il tipo globale 'JSX.{0}' non può contenere più di una proprietà.",
|
|
1563
1575
|
"The_implementation_signature_is_declared_here_2750": "In questo punto viene dichiarata la firma di implementazione.",
|
|
1564
1576
|
"The_import_meta_meta_property_is_not_allowed_in_files_which_will_build_into_CommonJS_output_1470": "La metaproprietà' Import. meta ' non è consentita per i file che vengono compilati nell'output di CommonJS.",
|
|
1565
|
-
"The_import_meta_meta_property_is_only_allowed_when_the_module_option_is_es2020_es2022_esnext_system__1343": "La metaproprietà 'import.meta' è consentita solo quando l'opzione '--module' è 'es2020', 'es2022', 'esnext', 'system', 'node16', 'node18' o 'nodenext'.",
|
|
1577
|
+
"The_import_meta_meta_property_is_only_allowed_when_the_module_option_is_es2020_es2022_esnext_system__1343": "La metaproprietà 'import.meta' è consentita solo quando l'opzione '--module' è 'es2020', 'es2022', 'esnext', 'system', 'node16', 'node18', 'node20' o 'nodenext'.",
|
|
1566
1578
|
"The_inferred_type_of_0_cannot_be_named_without_a_reference_to_1_This_is_likely_not_portable_A_type_a_2742": "Non è possibile assegnare un nome al tipo derivato di '{0}' senza un riferimento a '{1}'. È probabile che non sia portabile. È necessaria un'annotazione di tipo.",
|
|
1567
1579
|
"The_inferred_type_of_0_references_a_type_with_a_cyclic_structure_which_cannot_be_trivially_serialize_5088": "Il tipo dedotto di '{0}' fa riferimento a un tipo con una struttura ciclica che non può essere facilmente serializzata. È necessaria un'annotazione di tipo.",
|
|
1568
1580
|
"The_inferred_type_of_0_references_an_inaccessible_1_type_A_type_annotation_is_necessary_2527": "Il tipo dedotto di '{0}' fa riferimento a un tipo '{1}' non accessibile. È necessaria un'annotazione di tipo.",
|
|
@@ -1655,6 +1667,7 @@
|
|
|
1655
1667
|
"This_condition_will_always_return_true_since_this_function_is_always_defined_Did_you_mean_to_call_it_2774": "Questa condizione restituirà sempre true perché questa funzione è sempre definita. Si intendeva chiamarla?",
|
|
1656
1668
|
"This_constructor_function_may_be_converted_to_a_class_declaration_80002": "Questa funzione del costruttore può essere convertita in una dichiarazione di classe.",
|
|
1657
1669
|
"This_expression_is_always_nullish_2871": "Questa espressione è sempre nullish.",
|
|
1670
|
+
"This_expression_is_never_nullish_2881": "Questa espressione non è mai null.",
|
|
1658
1671
|
"This_expression_is_not_callable_2349": "Questa espressione non può essere chiamata.",
|
|
1659
1672
|
"This_expression_is_not_callable_because_it_is_a_get_accessor_Did_you_mean_to_use_it_without_6234": "Non è possibile chiamare questa espressione perché è una funzione di accesso 'get'. Si intendeva usarla senza '()'?",
|
|
1660
1673
|
"This_expression_is_not_constructable_2351": "Questa espressione non può essere costruita.",
|
|
@@ -1700,10 +1713,10 @@
|
|
|
1700
1713
|
"To_convert_this_file_to_an_ECMAScript_module_change_its_file_extension_to_0_or_add_the_field_type_Co_1481": "Per convertire il file in un modulo ECMAScript, modificarne l'estensione in '{0}' oppure aggiungere il campo '\"type\": \"module\"' a '{1}'.",
|
|
1701
1714
|
"To_convert_this_file_to_an_ECMAScript_module_change_its_file_extension_to_0_or_create_a_local_packag_1480": "Per convertire questo file in un modulo ECMAScript, modificarne l'estensione in '{0}' o creare un file package.json locale con '{ \"type\": \"module\" }'.",
|
|
1702
1715
|
"To_convert_this_file_to_an_ECMAScript_module_create_a_local_package_json_file_with_type_Colon_module_1483": "Per convertire questo file in un modulo ECMAScript, creare un file package.json locale con '{ \"type\": \"module\" }'.",
|
|
1703
|
-
"Top_level_await_expressions_are_only_allowed_when_the_module_option_is_set_to_es2022_esnext_system_n_1378": "Le espressioni 'await' di primo livello sono consentite solo quando l'opzione 'module' è impostata su 'es2022', 'esnext', 'system', 'node16', 'node18', 'nodenext', o 'preserve' e l'opzione 'target' è impostata su 'es2017' o versione successiva.",
|
|
1704
|
-
"Top_level_await_using_statements_are_only_allowed_when_the_module_option_is_set_to_es2022_esnext_sys_2854": "Le istruzioni 'await using' di primo livello sono consentite solo quando l'opzione 'module' è impostata su 'es2022', 'esnext', 'system', 'node16', 'node18', 'nodenext' o 'preserve' e l'opzione 'target' è impostata su 'es2017' o versione successiva.",
|
|
1716
|
+
"Top_level_await_expressions_are_only_allowed_when_the_module_option_is_set_to_es2022_esnext_system_n_1378": "Le espressioni 'await' di primo livello sono consentite solo quando l'opzione 'module' è impostata su 'es2022', 'esnext', 'system', 'node16', 'node18', 'node20', 'nodenext', o 'preserve' e l'opzione 'target' è impostata su 'es2017' o versione successiva.",
|
|
1717
|
+
"Top_level_await_using_statements_are_only_allowed_when_the_module_option_is_set_to_es2022_esnext_sys_2854": "Le istruzioni 'await using' di primo livello sono consentite solo quando l'opzione 'module' è impostata su 'es2022', 'esnext', 'system', 'node16', 'node18', 'node20', 'nodenext' o 'preserve' e l'opzione 'target' è impostata su 'es2017' o versione successiva.",
|
|
1705
1718
|
"Top_level_declarations_in_d_ts_files_must_start_with_either_a_declare_or_export_modifier_1046": "Le dichiarazioni di primo livello nei file con estensione d.ts devono iniziare con un modificatore 'declare' o 'export'.",
|
|
1706
|
-
"Top_level_for_await_loops_are_only_allowed_when_the_module_option_is_set_to_es2022_esnext_system_nod_1432": "I cicli 'for await' di primo livello sono consentiti solo quando l'opzione 'module' è impostata su 'es2022', 'esnext', 'system', 'node16', 'node18', 'nodenext' o 'preserve' e l'opzione 'target' è impostata su 'es2017' o versione successiva.",
|
|
1719
|
+
"Top_level_for_await_loops_are_only_allowed_when_the_module_option_is_set_to_es2022_esnext_system_nod_1432": "I cicli 'for await' di primo livello sono consentiti solo quando l'opzione 'module' è impostata su 'es2022', 'esnext', 'system', 'node16', 'node18', 'node20', 'nodenext' o 'preserve' e l'opzione 'target' è impostata su 'es2017' o versione successiva.",
|
|
1707
1720
|
"Trailing_comma_not_allowed_1009": "La virgola finale non è consentita.",
|
|
1708
1721
|
"Transpile_each_file_as_a_separate_module_similar_to_ts_transpileModule_6153": "Esegue il transpile di ogni file in un modulo separato (simile a 'ts.transpileModule').",
|
|
1709
1722
|
"Try_npm_i_save_dev_types_Slash_1_if_it_exists_or_add_a_new_declaration_d_ts_file_containing_declare__7035": "Provare con `npm i --save-dev @types/{1}` se esiste oppure aggiungere un nuovo file di dichiarazione con estensione d.ts contenente `declare module '{0}';`",
|
|
@@ -1946,6 +1959,7 @@
|
|
|
1946
1959
|
"_0_is_defined_as_an_accessor_in_class_1_but_is_overridden_here_in_2_as_an_instance_property_2610": "'{0}' è definito come funzione di accesso nella classe '{1}', ma in questo punto ne viene eseguito l'override in '{2}' come proprietà di istanza.",
|
|
1947
1960
|
"_0_is_deprecated_6385": "'{0}' è deprecato.",
|
|
1948
1961
|
"_0_is_not_a_valid_meta_property_for_keyword_1_Did_you_mean_2_17012": "'{0}' non è una metaproprietà valida per la parola chiave '{1}'. Si intendeva '{2}'?",
|
|
1962
|
+
"_0_is_not_a_valid_meta_property_for_keyword_import_Did_you_mean_meta_or_defer_18061": "'{0}' non è una metaproprietà valida per la parola chiave 'import'. Intendevi 'meta' o 'defer'?",
|
|
1949
1963
|
"_0_is_not_allowed_as_a_parameter_name_1390": "'{0}' non è un nome di parametro consentito.",
|
|
1950
1964
|
"_0_is_not_allowed_as_a_variable_declaration_name_1389": "'{0}' non è consentito come nome di una dichiarazione di variabile.",
|
|
1951
1965
|
"_0_is_of_type_unknown_18046": "'{0}' è di tipo 'unknown'.",
|
|
@@ -1997,13 +2011,15 @@
|
|
|
1997
2011
|
"abstract_modifier_can_only_appear_on_a_class_method_or_property_declaration_1242": "Il modificatore 'abstract' può essere incluso solo in una dichiarazione di classe, metodo o proprietà.",
|
|
1998
2012
|
"accessor_modifier_can_only_appear_on_a_property_declaration_1275": "Il modificatore 'accessor' può essere visualizzato solo in una dichiarazione di proprietà.",
|
|
1999
2013
|
"and_here_6204": "e in questo punto.",
|
|
2000
|
-
"
|
|
2014
|
+
"and_npm_install_D_types_Slashnode_6290": "e npm install -D @types/node",
|
|
2015
|
+
"arguments_cannot_be_referenced_in_property_initializers_or_class_static_initialization_blocks_2815": "Non è possibile fare riferimento ad 'arguments' negli inizializzatori di proprietà o nei blocchi di inizializzazione statica delle classi.",
|
|
2001
2016
|
"auto_Colon_Treat_files_with_imports_exports_import_meta_jsx_with_jsx_Colon_react_jsx_or_esm_format_w_1476": "\"auto\": considera i file con importazioni, esportazioni, import.meta, jsx (con jsx: react-jsx) o il formato esm (con modulo: node16+) come moduli.",
|
|
2002
2017
|
"await_expression_cannot_be_used_inside_a_class_static_block_18037": "Non è possibile usare l'espressione 'await' all'interno di un blocco statico di classe.",
|
|
2003
2018
|
"await_expressions_are_only_allowed_at_the_top_level_of_a_file_when_that_file_is_a_module_but_this_fi_1375": "Le espressioni 'await' sono consentite solo al primo livello di un file quando il file è un modulo, ma questo file non contiene importazioni o esportazioni. Provare ad aggiungere un elemento 'export {}' vuoto per trasformare il file in un modulo.",
|
|
2004
2019
|
"await_expressions_are_only_allowed_within_async_functions_and_at_the_top_levels_of_modules_1308": "Le espressioni 'await' sono consentite solo all'interno di funzioni asincrone e al primo livello di moduli.",
|
|
2005
2020
|
"await_expressions_cannot_be_used_in_a_parameter_initializer_2524": "Non è possibile usare le espressioni 'await' in un inizializzatore di parametri.",
|
|
2006
2021
|
"await_has_no_effect_on_the_type_of_this_expression_80007": "'await' non ha alcun effetto sul tipo di questa espressione.",
|
|
2022
|
+
"await_using_declarations_are_not_allowed_in_ambient_contexts_1546": "Le dichiarazioni 'await using' non sono consentite nei contesti ambientali.",
|
|
2007
2023
|
"await_using_statements_are_only_allowed_at_the_top_level_of_a_file_when_that_file_is_a_module_but_th_2853": "Le istruzioni 'await using' sono consentite solo al primo livello di un file quando il file è un modulo, ma questo file non contiene importazioni o esportazioni. Provare ad aggiungere un elemento 'export {}' vuoto per trasformare il file in un modulo.",
|
|
2008
2024
|
"await_using_statements_are_only_allowed_within_async_functions_and_at_the_top_levels_of_modules_2852": "Le istruzioni 'await using' sono consentite solo all'interno di funzioni asincrone e al primo livello di moduli.",
|
|
2009
2025
|
"await_using_statements_cannot_be_used_inside_a_class_static_block_18054": "Non è possibile usare le istruzioni 'await using' all'interno di un blocco statico di classe.",
|
|
@@ -2098,6 +2114,7 @@
|
|
|
2098
2114
|
"unique_symbol_types_may_not_be_used_on_a_variable_declaration_with_a_binding_name_1333": "Non è possibile usare i tipi 'unique symbol' in una dichiarazione di variabile con nome di binding.",
|
|
2099
2115
|
"use_strict_directive_cannot_be_used_with_non_simple_parameter_list_1347": "Non è possibile usare la direttiva 'use strict' con un elenco di parametri non semplice.",
|
|
2100
2116
|
"use_strict_directive_used_here_1349": "In questo punto è stata usata la direttiva 'use strict'.",
|
|
2117
|
+
"using_declarations_are_not_allowed_in_ambient_contexts_1545": "Le dichiarazioni 'using' non sono consentite nei contesti ambientali.",
|
|
2101
2118
|
"with_statements_are_not_allowed_in_an_async_function_block_1300": "Le istruzioni 'with' non sono consentite in un blocco di funzione asincrona.",
|
|
2102
2119
|
"with_statements_are_not_allowed_in_strict_mode_1101": "Le istruzioni 'with' non sono consentite in modalità strict.",
|
|
2103
2120
|
"yield_expression_implicitly_results_in_an_any_type_because_its_containing_generator_lacks_a_return_t_7057": "Con l'espressione 'yield' viene restituito implicitamente un tipo 'any' perché per il generatore che lo contiene non è presente un'annotazione di tipo restituito.",
|
|
@@ -203,7 +203,7 @@
|
|
|
203
203
|
"All_imports_in_import_declaration_are_unused_6192": "インポート宣言内のインポートはすべて未使用です。",
|
|
204
204
|
"All_type_parameters_are_unused_6205": "すべての型パラメーターが使用されていません。",
|
|
205
205
|
"All_variables_are_unused_6199": "すべての変数は未使用です。",
|
|
206
|
-
"
|
|
206
|
+
"Allow_JavaScript_files_to_be_a_part_of_your_program_Use_the_checkJs_option_to_get_errors_from_these__6600": "JavaScript ファイルをプログラムの一部として使用することを許可します。'checkJs' オプションを使用して、これらのファイルからエラーを取得してください。",
|
|
207
207
|
"Allow_accessing_UMD_globals_from_modules_6602": "モジュールから UMD グローバルへのアクセスを許可します。",
|
|
208
208
|
"Allow_default_imports_from_modules_with_no_default_export_This_does_not_affect_code_emit_just_typech_6011": "既定のエクスポートがないモジュールからの既定のインポートを許可します。これは、型チェックのみのため、コード生成には影響を与えません。",
|
|
209
209
|
"Allow_import_x_from_y_when_a_module_doesn_t_have_a_default_export_6601": "モジュールに既定のエクスポートがない場合は、'import x from y' を許可します。",
|
|
@@ -329,6 +329,7 @@
|
|
|
329
329
|
"Call_signature_return_types_0_and_1_are_incompatible_2202": "呼び出しシグネチャの戻り値の型 '{0}' と '{1}' には互換性がありません。",
|
|
330
330
|
"Call_signature_which_lacks_return_type_annotation_implicitly_has_an_any_return_type_7020": "戻り値の型の注釈がない呼び出しシグネチャの戻り値の型は、暗黙的に 'any' になります。",
|
|
331
331
|
"Call_signatures_with_no_arguments_have_incompatible_return_types_0_and_1_2204": "引数なしの呼び出しシグネチャに、互換性のない戻り値の型 '{0}' と '{1}' が含まれています。",
|
|
332
|
+
"Call_target_does_not_contain_any_signatures_2346": "呼び出しターゲットにシグネチャが含まれていません。",
|
|
332
333
|
"Can_only_convert_logical_AND_access_chains_95142": "論理 AND のアクセス チェーンのみを変換できます",
|
|
333
334
|
"Can_only_convert_named_export_95164": "名前付きエクスポートのみを変換できます",
|
|
334
335
|
"Can_only_convert_property_with_modifier_95137": "修飾子を伴うプロパティの変換のみ可能です",
|
|
@@ -438,7 +439,7 @@
|
|
|
438
439
|
"Class_decorators_can_t_be_used_with_static_private_identifier_Consider_removing_the_experimental_dec_18036": "クラス デコレーターは、静的プライベート識別子と共に使用することはできません。試験段階のデコレーターを削除することをご検討ください。",
|
|
439
440
|
"Class_field_0_defined_by_the_parent_class_is_not_accessible_in_the_child_class_via_super_2855": "親クラスによって定義されたクラス フィールド '{0}' は、super を介して子クラスでアクセスすることはできません。",
|
|
440
441
|
"Class_name_cannot_be_0_2414": "クラス名を '{0}' にすることはできません。",
|
|
441
|
-
"
|
|
442
|
+
"Class_name_cannot_be_Object_when_targeting_ES5_and_above_with_module_0_2725": "モジュール {0} で ES5 以降を対象とする場合、クラス名を 'Object' にすることはできません。",
|
|
442
443
|
"Class_static_side_0_incorrectly_extends_base_class_static_side_1_2417": "クラス側の静的な '{0}' が基底クラス側の静的な '{1}' を正しく拡張していません。",
|
|
443
444
|
"Classes_can_only_extend_a_single_class_1174": "クラスで拡張できるクラスは 1 つのみです。",
|
|
444
445
|
"Classes_may_not_have_a_field_named_constructor_18006": "クラスに 'constructor' という名前のフィールドを含めることはできません。",
|
|
@@ -569,8 +570,10 @@
|
|
|
569
570
|
"Default_catch_clause_variables_as_unknown_instead_of_any_6803": "既定の catch 句の変数は '任意' ではなく '不明' です。",
|
|
570
571
|
"Default_export_of_the_module_has_or_is_using_private_name_0_4082": "モジュールの既定エクスポートがプライベート名 '{0}' を持っているか、使用しています。",
|
|
571
572
|
"Default_exports_can_t_be_inferred_with_isolatedDeclarations_9037": "既定のエクスポートを --isolatedDeclarations と共に推論することはできません。",
|
|
573
|
+
"Default_imports_are_not_allowed_in_a_deferred_import_18058": "遅延インポートでは、既定のインポートは許可されません。",
|
|
572
574
|
"Default_library_1424": "既定のライブラリ",
|
|
573
575
|
"Default_library_for_target_0_1425": "ターゲット '{0}' の既定のライブラリ",
|
|
576
|
+
"Deferred_imports_are_only_supported_when_the_module_flag_is_set_to_esnext_or_preserve_18060": "遅延インポートは、'--module' フラグが 'esnext' または 'preserve' に設定されている場合にのみサポートされます。",
|
|
574
577
|
"Definitions_of_the_following_identifiers_conflict_with_those_in_another_file_Colon_0_6200": "次の識別子の定義が、別のファイル内の定義と競合しています: {0}",
|
|
575
578
|
"Delete_all_unused_declarations_95024": "未使用の宣言をすべて削除します",
|
|
576
579
|
"Delete_all_unused_imports_95147": "未使用の import をすべて削除します",
|
|
@@ -647,9 +650,9 @@
|
|
|
647
650
|
"Duplicate_property_0_2718": "プロパティ '{0}' が重複しています。",
|
|
648
651
|
"Duplicate_regular_expression_flag_1500": "正規表現フラグが重複しています。",
|
|
649
652
|
"Dynamic_import_s_specifier_must_be_of_type_string_but_here_has_type_0_7036": "動的インポートの指定子の型は 'string' である必要がありますが、ここでは型 '{0}' が指定されています。",
|
|
650
|
-
"Dynamic_imports_are_only_supported_when_the_module_flag_is_set_to_es2020_es2022_esnext_commonjs_amd__1323": "動的インポートは、'--module' フラグが 'es2020'、'es2022'、'esnext'、'commonjs'、'amd'、'system'、'umd'、'node16'、'node18'、または 'nodenext' に設定されている場合にのみサポートされます。",
|
|
653
|
+
"Dynamic_imports_are_only_supported_when_the_module_flag_is_set_to_es2020_es2022_esnext_commonjs_amd__1323": "動的インポートは、'--module' フラグが 'es2020'、'es2022'、'esnext'、'commonjs'、'amd'、'system'、'umd'、'node16'、'node18'、'node20'、または 'nodenext' に設定されている場合にのみサポートされます。",
|
|
651
654
|
"Dynamic_imports_can_only_accept_a_module_specifier_and_an_optional_set_of_attributes_as_arguments_1450": "動的インポートでは、引数として、モジュール指定子とオプションの属性セットのみを受け取ることができます",
|
|
652
|
-
"Dynamic_imports_only_support_a_second_argument_when_the_module_option_is_set_to_esnext_node16_node18_1324": "動的インポートは、'--module' オプションが 'esnext'、'node16'、'node18'、'nodenext'、または 'preserve' に設定されている場合にのみ、2 番目の引数をサポートします。",
|
|
655
|
+
"Dynamic_imports_only_support_a_second_argument_when_the_module_option_is_set_to_esnext_node16_node18_1324": "動的インポートは、'--module' オプションが 'esnext'、'node16'、'node18'、'node20'、'nodenext'、または 'preserve' に設定されている場合にのみ、2 番目の引数をサポートします。",
|
|
653
656
|
"ESM_syntax_is_not_allowed_in_a_CommonJS_module_when_module_is_set_to_preserve_1293": "'module' が 'preserve' に設定されている場合、CommonJS モジュールでは ESM 構文を使用できません。",
|
|
654
657
|
"ESM_syntax_is_not_allowed_in_a_CommonJS_module_when_verbatimModuleSyntax_is_enabled_1286": "'verbatimModuleSyntax' が有効である場合、CommonJS モジュールで ESM 構文は許可されません。",
|
|
655
658
|
"Each_declaration_of_0_1_differs_in_its_value_where_2_was_expected_but_3_was_given_4125": "'{0}.{1}' の各宣言の値が異なります。'{2}' が必要ですが、'{3}' が指定されました。",
|
|
@@ -713,6 +716,7 @@
|
|
|
713
716
|
"Enum_member_initializers_must_be_computable_without_references_to_external_symbols_with_isolatedDecl_9020": "列挙型メンバー初期化子は、--isolatedDeclarations を含む外部シンボルへの参照なしで計算可能である必要があります。",
|
|
714
717
|
"Enum_member_must_have_initializer_1061": "列挙型メンバーには初期化子が必要です。",
|
|
715
718
|
"Enum_name_cannot_be_0_2431": "列挙型の名前を '{0}' にすることはできません。",
|
|
719
|
+
"Environment_Settings_6285": "環境の設定",
|
|
716
720
|
"Errors_Files_6041": "エラーの発生したファイル",
|
|
717
721
|
"Escape_sequence_0_is_not_allowed_1488": "エスケープ シーケンス '{0}' は許可されていません。",
|
|
718
722
|
"Examples_Colon_0_6026": "例: {0}",
|
|
@@ -789,6 +793,7 @@
|
|
|
789
793
|
"File_0_is_not_listed_within_the_file_list_of_project_1_Projects_must_list_all_files_or_use_an_includ_6307": "ファイル '{0}' がプロジェクト '{1}' のファイル リストに含まれていません。プロジェクトではすべてのファイルをリストするか、'include' パターンを使用する必要があります。",
|
|
790
794
|
"File_0_is_not_under_rootDir_1_rootDir_is_expected_to_contain_all_source_files_6059": "ファイル '{0}' が 'rootDir' '{1}' の下にありません。'rootDir' にすべてにソース ファイルが含まれている必要があります。",
|
|
791
795
|
"File_0_not_found_6053": "ファイル '{0}' が見つかりません。",
|
|
796
|
+
"File_Layout_6284": "ファイル レイアウト",
|
|
792
797
|
"File_Management_6245": "ファイルの管理",
|
|
793
798
|
"File_appears_to_be_binary_1490": "ファイルはバイナリのようです。",
|
|
794
799
|
"File_change_detected_Starting_incremental_compilation_6032": "ファイルの変更が検出されました。インクリメンタル コンパイルを開始しています...",
|
|
@@ -821,6 +826,7 @@
|
|
|
821
826
|
"Fix_all_implicit_this_errors_95107": "すべての暗黙的な 'this' エラーを修正する",
|
|
822
827
|
"Fix_all_incorrect_return_type_of_an_async_functions_90037": "非同期関数の無効な戻り値の型をすべて修正します",
|
|
823
828
|
"Fix_all_with_type_only_imports_95182": "型のみのインポートを使用してすべてを修正する",
|
|
829
|
+
"For_nodejs_Colon_6287": "Node.js の場合:",
|
|
824
830
|
"Found_0_errors_6217": "{0} 件のエラーが見つかりました。",
|
|
825
831
|
"Found_0_errors_Watching_for_file_changes_6194": "{0} 件のエラーが見つかりました。ファイルの変更をモニタリングしています。",
|
|
826
832
|
"Found_0_errors_in_1_files_6261": "{1} ファイルに {0} 件のエラーが見つかりました。",
|
|
@@ -890,13 +896,13 @@
|
|
|
890
896
|
"Import_0_from_1_90013": "\"{1}\" から `{0}` をインポートします。",
|
|
891
897
|
"Import_assertion_values_must_be_string_literal_expressions_2837": "インポート アサーションの値は、文字列リテラル式である必要があります。",
|
|
892
898
|
"Import_assertions_are_not_allowed_on_statements_that_compile_to_CommonJS_require_calls_2836": "インポート アサーションは、commonjs 'require' 呼び出しにコンパイルするステートメントでは許可されません。",
|
|
893
|
-
"
|
|
899
|
+
"Import_assertions_are_only_supported_when_the_module_option_is_set_to_esnext_node18_node20_nodenext__2821": "インポート アサーションは、'--module' オプションが 'esnext'、'node18'、'node20'、'nodenext' または 'preserve' に設定されている場合にのみサポートされます。",
|
|
894
900
|
"Import_assertions_cannot_be_used_with_type_only_imports_or_exports_2822": "インポート アサーションは、型のみのインポートまたはエクスポートでは使用できません。",
|
|
895
901
|
"Import_assertions_have_been_replaced_by_import_attributes_Use_with_instead_of_assert_2880": "インポート アサーションはインポート属性に置き換えられました。'assert' ではなく 'with' を使用してください。",
|
|
896
902
|
"Import_assignment_cannot_be_used_when_targeting_ECMAScript_modules_Consider_using_import_Asterisk_as_1202": "ECMAScript モジュールを対象にする場合は、インポート代入を使用できません。代わりに 'import * as ns from \"mod\"'、'import {a} from \"mod\"'、'import d from \"mod\"' などのモジュール書式の使用をご検討ください。",
|
|
897
903
|
"Import_attribute_values_must_be_string_literal_expressions_2858": "インポート 属性の値は、文字列リテラル式である必要があります。",
|
|
898
904
|
"Import_attributes_are_not_allowed_on_statements_that_compile_to_CommonJS_require_calls_2856": "インポート属性は、commonjs 'require' 呼び出しにコンパイルするステートメントでは許可されません。",
|
|
899
|
-
"
|
|
905
|
+
"Import_attributes_are_only_supported_when_the_module_option_is_set_to_esnext_node18_node20_nodenext__2823": "インポート属性は、'--module' オプションが 'esnext'、'node18'、'node20'、'nodenext' または 'preserve' に設定されている場合にのみサポートされます。",
|
|
900
906
|
"Import_attributes_cannot_be_used_with_type_only_imports_or_exports_2857": "インポート属性は、型のみのインポートまたはエクスポートでは使用できません。",
|
|
901
907
|
"Import_declaration_0_is_using_private_name_1_4000": "インポート宣言 '{0}' がプライベート名 '{1}' を使用しています。",
|
|
902
908
|
"Import_declaration_conflicts_with_local_declaration_of_0_2440": "インポート宣言が、'{0}' のローカル宣言と競合しています。",
|
|
@@ -1065,6 +1071,7 @@
|
|
|
1065
1071
|
"Name_is_not_valid_95136": "名前が無効です",
|
|
1066
1072
|
"Named_capturing_groups_are_only_available_when_targeting_ES2018_or_later_1503": "名前付きキャプチャ グループは、'ES2018' 以降をターゲットにする場合にのみ使用できます。",
|
|
1067
1073
|
"Named_capturing_groups_with_the_same_name_must_be_mutually_exclusive_to_each_other_1515": "同じ名前の名前の名前付きキャプチャ グループは、相互に排他的である必要があります。",
|
|
1074
|
+
"Named_imports_are_not_allowed_in_a_deferred_import_18059": "遅延インポートでは、名前付きインポートは許可されません。",
|
|
1068
1075
|
"Named_imports_from_a_JSON_file_into_an_ECMAScript_module_are_not_allowed_when_module_is_set_to_0_1544": "'module' が '{0}' に設定されている場合、JSON ファイルから ECMAScript モジュールへの名前付きインポートは許可されません。",
|
|
1069
1076
|
"Named_property_0_of_types_1_and_2_are_not_identical_2319": "'{1}' 型および '{2}' 型の名前付きプロパティ '{0}' が一致しません。",
|
|
1070
1077
|
"Namespace_0_has_no_exported_member_1_2694": "名前空間 '{0}' にエクスポートされたメンバー '{1}' がありません。",
|
|
@@ -1153,6 +1160,7 @@
|
|
|
1153
1160
|
"Option_verbatimModuleSyntax_cannot_be_used_when_module_is_set_to_UMD_AMD_or_System_5105": "'module' が 'UMD'、'AMD'、または 'System' に設定されている場合、オプション 'verbatimModuleSyntax' は使用できません。",
|
|
1154
1161
|
"Options_0_and_1_cannot_be_combined_6370": "オプション '{0}' と '{1}' を組み合わせることはできません。",
|
|
1155
1162
|
"Options_Colon_6027": "オプション:",
|
|
1163
|
+
"Other_Outputs_6291": "その他の出力",
|
|
1156
1164
|
"Output_Formatting_6256": "出力データ形式",
|
|
1157
1165
|
"Output_compiler_performance_information_after_building_6615": "ビルド後にコンパイラのパフォーマンス情報を出力します。",
|
|
1158
1166
|
"Output_directory_for_generated_declaration_files_6166": "生成された宣言ファイルの出力ディレクトリ。",
|
|
@@ -1231,8 +1239,8 @@
|
|
|
1231
1239
|
"Private_identifiers_are_only_available_when_targeting_ECMAScript_2015_and_higher_18028": "private 識別子は ECMAScript 2015 以上をターゲットにする場合にのみ使用できます。",
|
|
1232
1240
|
"Private_identifiers_cannot_be_used_as_parameters_18009": "private 識別子はパラメーターとして使用できません。",
|
|
1233
1241
|
"Private_or_protected_member_0_cannot_be_accessed_on_a_type_parameter_4105": "private または protected メンバー '{0}' には、型パラメーターではアクセスできません。",
|
|
1234
|
-
"Project_0_can_t_be_built_because_its_dependency_1_has_errors_6363": "
|
|
1235
|
-
"Project_0_can_t_be_built_because_its_dependency_1_was_not_built_6383": "
|
|
1242
|
+
"Project_0_can_t_be_built_because_its_dependency_1_has_errors_6363": "プロジェクト '{0}' はその依存関係 '{1}' にエラーがあるためビルドできません",
|
|
1243
|
+
"Project_0_can_t_be_built_because_its_dependency_1_was_not_built_6383": "依存関係 '{1}' がビルドされていないため、プロジェクト '{0}' はビルドできません",
|
|
1236
1244
|
"Project_0_is_being_forcibly_rebuilt_6388": "プロジェクト '{0}' が強制的にリビルドされています",
|
|
1237
1245
|
"Project_0_is_out_of_date_because_1_6420": "{1}のため、プロジェクト '{0}' は古くなっています。",
|
|
1238
1246
|
"Project_0_is_out_of_date_because_buildinfo_file_1_indicates_that_file_2_was_root_file_of_compilation_6412": "buildinfo ファイル '{1}' は、ファイル '{2}' がコンパイルのルート ファイルでしたが、それ以上はないことを示しているため、プロジェクト '{0}' は最新ではありません。",
|
|
@@ -1315,6 +1323,7 @@
|
|
|
1315
1323
|
"Range_out_of_order_in_character_class_1517": "文字クラスの順序が正しくありません。",
|
|
1316
1324
|
"Re_exporting_a_type_when_0_is_enabled_requires_using_export_type_1205": "'{0}' が有効な場合に型を再エクスポートするには、'export type' を使用する必要があります。",
|
|
1317
1325
|
"React_components_cannot_include_JSX_namespace_names_2639": "React コンポーネントに JSX 名前空間名を含めることはできません",
|
|
1326
|
+
"Recommended_Options_6294": "推奨オプション",
|
|
1318
1327
|
"Redirect_output_structure_to_the_directory_6006": "ディレクトリへ出力構造をリダイレクトします。",
|
|
1319
1328
|
"Reduce_the_number_of_projects_loaded_automatically_by_TypeScript_6617": "TypeScript によって自動的に読み込まれるプロジェクトの数を減らします。",
|
|
1320
1329
|
"Referenced_project_0_may_not_disable_emit_6310": "参照されたプロジェクト '{0}' は、生成を無効にできません。",
|
|
@@ -1429,6 +1438,7 @@
|
|
|
1429
1438
|
"Scoped_package_detected_looking_in_0_6182": "'{0}' 内を検索して、スコープ パッケージが検出されました",
|
|
1430
1439
|
"Searching_all_ancestor_node_modules_directories_for_fallback_extensions_Colon_0_6418": "すべての先祖 node_modules ディレクトリでフォールバック拡張子を検索しています: {0}。",
|
|
1431
1440
|
"Searching_all_ancestor_node_modules_directories_for_preferred_extensions_Colon_0_6417": "すべての先祖 node_modules ディレクトリで優先する拡張子を検索しています: {0}。",
|
|
1441
|
+
"See_also_https_Colon_Slash_Slashaka_ms_Slashtsconfig_Slashmodule_6286": "https://aka.ms/tsconfig/module も参照",
|
|
1432
1442
|
"Selection_is_not_a_valid_statement_or_statements_95155": "選択内容は有効なステートメントではありません",
|
|
1433
1443
|
"Selection_is_not_a_valid_type_node_95133": "選択は有効な型ノードではありません",
|
|
1434
1444
|
"Set_the_JavaScript_language_version_for_emitted_JavaScript_and_include_compatible_library_declaratio_6705": "生成された JavaScript の JavaScript 言語バージョンを設定し、互換性のあるライブラリ宣言を含めます。",
|
|
@@ -1447,8 +1457,8 @@
|
|
|
1447
1457
|
"Skip_type_checking_all_d_ts_files_6693": "すべての .d.ts ファイルについて型チェックをスキップします。",
|
|
1448
1458
|
"Skip_type_checking_d_ts_files_that_are_included_with_TypeScript_6692": "TypeScript に含まれている .d.ts ファイルの型チェックをスキップします。",
|
|
1449
1459
|
"Skip_type_checking_of_declaration_files_6012": "宣言ファイルの型チェックをスキップします。",
|
|
1450
|
-
"Skipping_build_of_project_0_because_its_dependency_1_has_errors_6362": "
|
|
1451
|
-
"Skipping_build_of_project_0_because_its_dependency_1_was_not_built_6382": "
|
|
1460
|
+
"Skipping_build_of_project_0_because_its_dependency_1_has_errors_6362": "プロジェクト '{0}' のビルドは、その依存関係 '{1}' にエラーがあるため、スキップしています",
|
|
1461
|
+
"Skipping_build_of_project_0_because_its_dependency_1_was_not_built_6382": "依存関係 '{1}' がビルドされていないため、プロジェクト '{0}' のビルドをスキップしています",
|
|
1452
1462
|
"Skipping_module_0_that_looks_like_an_absolute_URI_target_file_types_Colon_1_6164": "絶対 URI のように見えるモジュール '{0}' をスキップしています。ターゲット ファイルの種類: {1}。",
|
|
1453
1463
|
"Source_from_referenced_project_0_included_because_1_specified_1414": "'{1}' が指定されたため、参照先プロジェクト '{0}' からソースがインクルードされました",
|
|
1454
1464
|
"Source_from_referenced_project_0_included_because_module_is_specified_as_none_1415": "'--module' が 'none' として指定されたため、参照先プロジェクト '{0}' からソースがインクルードされました",
|
|
@@ -1508,9 +1518,11 @@
|
|
|
1508
1518
|
"Statements_are_not_allowed_in_ambient_contexts_1036": "ステートメントは環境コンテキストでは使用できません。",
|
|
1509
1519
|
"Static_members_cannot_reference_class_type_parameters_2302": "静的メンバーはクラスの型パラメーターを参照できません。",
|
|
1510
1520
|
"Static_property_0_conflicts_with_built_in_property_Function_0_of_constructor_function_1_2699": "静的プロパティ '{0}' がコンストラクター関数 '{1}' のビルトイン プロパティ 'Function.{0}' と競合しています。",
|
|
1521
|
+
"Stricter_Typechecking_Options_6292": "より厳密な型チェック オプション",
|
|
1511
1522
|
"String_literal_expected_1141": "文字列リテラルが必要です。",
|
|
1512
1523
|
"String_literal_import_and_export_names_are_not_supported_when_the_module_flag_is_set_to_es2015_or_es_18057": "'--module' フラグが 'es2015' または 'es2020' に設定されている場合、文字列リテラルのインポートおよびエクスポート名はサポートされません。",
|
|
1513
1524
|
"String_literal_with_double_quotes_expected_1327": "二重引用符を含む文字列リテラルが必要です。",
|
|
1525
|
+
"Style_Options_6293": "スタイル オプション",
|
|
1514
1526
|
"Stylize_errors_and_messages_using_color_and_context_experimental_6073": "色とコンテキストを使用してエラーとメッセージにスタイルを適用します (試験的)。",
|
|
1515
1527
|
"Subpattern_flags_must_be_present_when_there_is_a_minus_sign_1504": "マイナス記号がある場合は、サブパターン フラグが存在する必要があります。",
|
|
1516
1528
|
"Subsequent_property_declarations_must_have_the_same_type_Property_0_must_be_of_type_1_but_here_has_t_2717": "後続のプロパティ宣言は同じ型でなければなりません。プロパティ '{0}' の型は '{1}' である必要がありますが、ここでは型が '{2}' になっています。",
|
|
@@ -1562,7 +1574,7 @@
|
|
|
1562
1574
|
"The_global_type_JSX_0_may_not_have_more_than_one_property_2608": "グローバル型 'JSX.{0}' には複数のプロパティが含まれていない可能性があります。",
|
|
1563
1575
|
"The_implementation_signature_is_declared_here_2750": "実装シグネチャはここで宣言されています。",
|
|
1564
1576
|
"The_import_meta_meta_property_is_not_allowed_in_files_which_will_build_into_CommonJS_output_1470": "'import.meta' メタプロパティは、CommonJS 出力にビルドするファイルでは許可されていません。",
|
|
1565
|
-
"The_import_meta_meta_property_is_only_allowed_when_the_module_option_is_es2020_es2022_esnext_system__1343": "'import.meta' メタプロパティは、'--module' オプションが 'es2020'、'es2022'、'esnext'、'system'、'node16'、'node18'、または 'nodenext' である場合にのみ許可されます。",
|
|
1577
|
+
"The_import_meta_meta_property_is_only_allowed_when_the_module_option_is_es2020_es2022_esnext_system__1343": "'import.meta' メタプロパティは、'--module' オプションが 'es2020'、'es2022'、'esnext'、'system'、'node16'、'node18'、'node20'、または 'nodenext' である場合にのみ許可されます。",
|
|
1566
1578
|
"The_inferred_type_of_0_cannot_be_named_without_a_reference_to_1_This_is_likely_not_portable_A_type_a_2742": "'{0}' の推論された型には、'{1}' への参照なしで名前を付けることはできません。これは、移植性がない可能性があります。型の注釈が必要です。",
|
|
1567
1579
|
"The_inferred_type_of_0_references_a_type_with_a_cyclic_structure_which_cannot_be_trivially_serialize_5088": "'{0}' の推論された型は、循環構造を持つ型を参照しています。この型のシリアル化は自明ではありません。型の注釈が必要です。",
|
|
1568
1580
|
"The_inferred_type_of_0_references_an_inaccessible_1_type_A_type_annotation_is_necessary_2527": "'{0}' の推定型はアクセス不可能な '{1}' 型を参照します。型の注釈が必要です。",
|
|
@@ -1655,6 +1667,7 @@
|
|
|
1655
1667
|
"This_condition_will_always_return_true_since_this_function_is_always_defined_Did_you_mean_to_call_it_2774": "この関数は常に定義されているため、この条件は常に true を返します。代わりにこれを呼び出すことを意図していましたか?",
|
|
1656
1668
|
"This_constructor_function_may_be_converted_to_a_class_declaration_80002": "このコンストラクター関数はクラス宣言に変換される可能性があります。",
|
|
1657
1669
|
"This_expression_is_always_nullish_2871": "この式は常に null です。",
|
|
1670
|
+
"This_expression_is_never_nullish_2881": "この式が NULL 値になることはありません。",
|
|
1658
1671
|
"This_expression_is_not_callable_2349": "この式は呼び出し可能ではありません。",
|
|
1659
1672
|
"This_expression_is_not_callable_because_it_is_a_get_accessor_Did_you_mean_to_use_it_without_6234": "この式は 'get' アクセサーであるため、呼び出すことができません。'()' なしで使用しますか?",
|
|
1660
1673
|
"This_expression_is_not_constructable_2351": "この式はコンストラクト可能ではありません。",
|
|
@@ -1700,10 +1713,10 @@
|
|
|
1700
1713
|
"To_convert_this_file_to_an_ECMAScript_module_change_its_file_extension_to_0_or_add_the_field_type_Co_1481": "このファイルを ECMAScript モジュールに変換するには、ファイル拡張子を '{0}' に変更するか、フィールド '\"type\": \"module\"' を '{1}' に追加します。",
|
|
1701
1714
|
"To_convert_this_file_to_an_ECMAScript_module_change_its_file_extension_to_0_or_create_a_local_packag_1480": "このファイルを ECMAScript モジュールに変換するには、ファイル拡張子を '{0}' に変更するか、'{ \"type\": \"module\" }' を含むローカルの package.json ファイルを作成します。",
|
|
1702
1715
|
"To_convert_this_file_to_an_ECMAScript_module_create_a_local_package_json_file_with_type_Colon_module_1483": "このファイルを ECMAScript モジュールに変換するには、'{ \"type\": \"module\" }' を含むローカルの package.json ファイルを作成します。",
|
|
1703
|
-
"Top_level_await_expressions_are_only_allowed_when_the_module_option_is_set_to_es2022_esnext_system_n_1378": "トップレベルの 'await' 式は、'module' オプションが 'es2022'、'esnext'、'system'、'node16'、'node18'、'nodenext'、または 'preserve' に設定されていて、'target' オプションが 'es2017' 以上に設定されている場合にのみ許可されています。",
|
|
1704
|
-
"Top_level_await_using_statements_are_only_allowed_when_the_module_option_is_set_to_es2022_esnext_sys_2854": "トップレベルの 'await using' ステートメントは、'module' オプションが 'es2022'、'esnext'、'system'、'node16'、'node18'、'nodenext'、または 'preserve' に設定されていて、'target' オプションが 'es2017' 以上に設定されている場合にのみ許可されています。",
|
|
1716
|
+
"Top_level_await_expressions_are_only_allowed_when_the_module_option_is_set_to_es2022_esnext_system_n_1378": "トップレベルの 'await' 式は、'module' オプションが 'es2022'、'esnext'、'system'、'node16'、'node18'、'node20'、'nodenext'、または 'preserve' に設定されていて、'target' オプションが 'es2017' 以上に設定されている場合にのみ許可されています。",
|
|
1717
|
+
"Top_level_await_using_statements_are_only_allowed_when_the_module_option_is_set_to_es2022_esnext_sys_2854": "トップレベルの 'await using' ステートメントは、'module' オプションが 'es2022'、'esnext'、'system'、'node16'、'node18'、'node20'、'nodenext'、または 'preserve' に設定されていて、'target' オプションが 'es2017' 以上に設定されている場合にのみ許可されています。",
|
|
1705
1718
|
"Top_level_declarations_in_d_ts_files_must_start_with_either_a_declare_or_export_modifier_1046": ".d.ts ファイルのトップレベルの宣言は、'declare' または 'export' 修飾子で始める必要があります。",
|
|
1706
|
-
"Top_level_for_await_loops_are_only_allowed_when_the_module_option_is_set_to_es2022_esnext_system_nod_1432": "トップレベルの 'for await' ループは、'module' オプションが 'es2022'、'esnext'、'system'、'node16'、'node18'、'nodenext'、または 'preserve' に設定されていて、'target' オプションが 'es2017' 以上に設定されている場合にのみ許可されています。",
|
|
1719
|
+
"Top_level_for_await_loops_are_only_allowed_when_the_module_option_is_set_to_es2022_esnext_system_nod_1432": "トップレベルの 'for await' ループは、'module' オプションが 'es2022'、'esnext'、'system'、'node16'、'node18'、'node20'、'nodenext'、または 'preserve' に設定されていて、'target' オプションが 'es2017' 以上に設定されている場合にのみ許可されています。",
|
|
1707
1720
|
"Trailing_comma_not_allowed_1009": "末尾にコンマは使用できません。",
|
|
1708
1721
|
"Transpile_each_file_as_a_separate_module_similar_to_ts_transpileModule_6153": "個々のモジュールとして各ファイルをトランスパイルします ('ts.transpileModule' に類似)。",
|
|
1709
1722
|
"Try_npm_i_save_dev_types_Slash_1_if_it_exists_or_add_a_new_declaration_d_ts_file_containing_declare__7035": "存在する場合は `npm i --save-dev @types/{1}` を試すか、`declare module '{0}';` を含む新しい宣言 (.d.ts) ファイルを追加します",
|
|
@@ -1946,6 +1959,7 @@
|
|
|
1946
1959
|
"_0_is_defined_as_an_accessor_in_class_1_but_is_overridden_here_in_2_as_an_instance_property_2610": "'{0}' はクラス '{1}' でアクセサーとして定義されていますが、ここではインスタンス プロパティとして '{2}' でオーバーライドされています。",
|
|
1947
1960
|
"_0_is_deprecated_6385": "'{0}' は非推奨です。",
|
|
1948
1961
|
"_0_is_not_a_valid_meta_property_for_keyword_1_Did_you_mean_2_17012": "'{0}' はキーワード '{1}' に関するメタプロパティとして無効です。候補: '{2}'。",
|
|
1962
|
+
"_0_is_not_a_valid_meta_property_for_keyword_import_Did_you_mean_meta_or_defer_18061": "'{0}' はキーワード 'import' の有効なメタプロパティではありません。'meta' または 'defer' という意味ですか?",
|
|
1949
1963
|
"_0_is_not_allowed_as_a_parameter_name_1390": "'{0}' はパラメーター名として使用できません。",
|
|
1950
1964
|
"_0_is_not_allowed_as_a_variable_declaration_name_1389": "'{0}' は変数宣言の名前として使用できません。",
|
|
1951
1965
|
"_0_is_of_type_unknown_18046": "'{0}''は 'unknown' 型です。",
|
|
@@ -1997,13 +2011,15 @@
|
|
|
1997
2011
|
"abstract_modifier_can_only_appear_on_a_class_method_or_property_declaration_1242": "'abstract' 修飾子は、クラス宣言、メソッド宣言、またはプロパティ宣言のみに使用できます。",
|
|
1998
2012
|
"accessor_modifier_can_only_appear_on_a_property_declaration_1275": "'accessor' 修飾子は、プロパティ宣言でのみ使用できます。",
|
|
1999
2013
|
"and_here_6204": "およびここで。",
|
|
2000
|
-
"
|
|
2014
|
+
"and_npm_install_D_types_Slashnode_6290": "および npm install -D @types/node",
|
|
2015
|
+
"arguments_cannot_be_referenced_in_property_initializers_or_class_static_initialization_blocks_2815": "'arguments' は、プロパティ初期化子やクラスの静的初期化ブロック内では参照できません。",
|
|
2001
2016
|
"auto_Colon_Treat_files_with_imports_exports_import_meta_jsx_with_jsx_Colon_react_jsx_or_esm_format_w_1476": "\"auto\": インポート、エクスポート、import.meta、jsx (jsx: react-jsx を使用)、または esm 形式 (モジュール: node16+) でファイルをモジュールとして扱います。",
|
|
2002
2017
|
"await_expression_cannot_be_used_inside_a_class_static_block_18037": "'await' 式はクラスの静的ブロック内では使用できません。",
|
|
2003
2018
|
"await_expressions_are_only_allowed_at_the_top_level_of_a_file_when_that_file_is_a_module_but_this_fi_1375": "ファイルがモジュールの場合、'await' 式はそのファイルのトップ レベルでのみ使用できますが、このファイルにはインポートもエクスポートも含まれていません。空の 'export {}' を追加して、このファイルをモジュールにすることを検討してください。",
|
|
2004
2019
|
"await_expressions_are_only_allowed_within_async_functions_and_at_the_top_levels_of_modules_1308": "'await' 式は、非同期関数内と、モジュールのトップ レベルでのみ許可されます。",
|
|
2005
2020
|
"await_expressions_cannot_be_used_in_a_parameter_initializer_2524": "'await' 式は、パラメーター初期化子では使用できません。",
|
|
2006
2021
|
"await_has_no_effect_on_the_type_of_this_expression_80007": "'await' は、この式の型に対しては効果がありません。",
|
|
2022
|
+
"await_using_declarations_are_not_allowed_in_ambient_contexts_1546": "'await using' 宣言はアンビエント コンテキストでは使用できません。",
|
|
2007
2023
|
"await_using_statements_are_only_allowed_at_the_top_level_of_a_file_when_that_file_is_a_module_but_th_2853": "'await using' ステートメントは、ファイルがモジュールである場合、そのファイルのトップ レベルでのみ使用できますが、このファイルにはインポートもエクスポートも含まれていません。空の 'export {}' を追加して、このファイルをモジュールにすることを検討してください。",
|
|
2008
2024
|
"await_using_statements_are_only_allowed_within_async_functions_and_at_the_top_levels_of_modules_2852": "'await using' ステートメントは、非同期関数内と、モジュールのトップ レベルでのみ許可されます。",
|
|
2009
2025
|
"await_using_statements_cannot_be_used_inside_a_class_static_block_18054": "'await using' ステートメントをクラスの静的ブロック内で使用することはできません。",
|
|
@@ -2098,6 +2114,7 @@
|
|
|
2098
2114
|
"unique_symbol_types_may_not_be_used_on_a_variable_declaration_with_a_binding_name_1333": "'unique symbol' 型は、バインディング名を持つ変数の宣言では使用できません。",
|
|
2099
2115
|
"use_strict_directive_cannot_be_used_with_non_simple_parameter_list_1347": "'use strict' ディレクティブは、複雑なパラメーター リストでは使用できません。",
|
|
2100
2116
|
"use_strict_directive_used_here_1349": "'use strict' ディレクティブがここで使用されています。",
|
|
2117
|
+
"using_declarations_are_not_allowed_in_ambient_contexts_1545": "'using' 宣言はアンビエント コンテキストでは使用できません。",
|
|
2101
2118
|
"with_statements_are_not_allowed_in_an_async_function_block_1300": "'with' 式は、非同期関数ブロックでは使用できません。",
|
|
2102
2119
|
"with_statements_are_not_allowed_in_strict_mode_1101": "厳格モードでは 'with' ステートメントは使用できません。",
|
|
2103
2120
|
"yield_expression_implicitly_results_in_an_any_type_because_its_containing_generator_lacks_a_return_t_7057": "'yield' 式は、それを含むジェネレーターに戻り値の型の注釈がないため、暗黙的に 'any' 型になります。",
|