typescript 5.4.0-dev.20240118 → 5.4.0-dev.20240120
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/cancellationToken.js +0 -1
- package/lib/tsc.js +186 -164
- package/lib/tsserver.js +687 -435
- package/lib/typescript.d.ts +51 -11
- package/lib/typescript.js +730 -468
- package/lib/typingsInstaller.js +23 -25
- package/package.json +28 -28
package/lib/typingsInstaller.js
CHANGED
|
@@ -54,7 +54,7 @@ var path = __toESM(require("path"));
|
|
|
54
54
|
|
|
55
55
|
// src/compiler/corePublic.ts
|
|
56
56
|
var versionMajorMinor = "5.4";
|
|
57
|
-
var version = `${versionMajorMinor}.0-dev.
|
|
57
|
+
var version = `${versionMajorMinor}.0-dev.20240120`;
|
|
58
58
|
|
|
59
59
|
// src/compiler/core.ts
|
|
60
60
|
var emptyArray = [];
|
|
@@ -3001,7 +3001,7 @@ var SymbolFlags = /* @__PURE__ */ ((SymbolFlags2) => {
|
|
|
3001
3001
|
SymbolFlags2[SymbolFlags2["Transient"] = 33554432] = "Transient";
|
|
3002
3002
|
SymbolFlags2[SymbolFlags2["Assignment"] = 67108864] = "Assignment";
|
|
3003
3003
|
SymbolFlags2[SymbolFlags2["ModuleExports"] = 134217728] = "ModuleExports";
|
|
3004
|
-
SymbolFlags2[SymbolFlags2["All"] =
|
|
3004
|
+
SymbolFlags2[SymbolFlags2["All"] = -1] = "All";
|
|
3005
3005
|
SymbolFlags2[SymbolFlags2["Enum"] = 384] = "Enum";
|
|
3006
3006
|
SymbolFlags2[SymbolFlags2["Variable"] = 3] = "Variable";
|
|
3007
3007
|
SymbolFlags2[SymbolFlags2["Value"] = 111551] = "Value";
|
|
@@ -5383,7 +5383,7 @@ var Diagnostics = {
|
|
|
5383
5383
|
await_expressions_are_only_allowed_at_the_top_level_of_a_file_when_that_file_is_a_module_but_this_file_has_no_imports_or_exports_Consider_adding_an_empty_export_to_make_this_file_a_module: diag(1375, 1 /* Error */, "await_expressions_are_only_allowed_at_the_top_level_of_a_file_when_that_file_is_a_module_but_this_fi_1375", "'await' expressions are only allowed at the top level of a file when that file is a module, but this file has no imports or exports. Consider adding an empty 'export {}' to make this file a module."),
|
|
5384
5384
|
_0_was_imported_here: diag(1376, 3 /* Message */, "_0_was_imported_here_1376", "'{0}' was imported here."),
|
|
5385
5385
|
_0_was_exported_here: diag(1377, 3 /* Message */, "_0_was_exported_here_1377", "'{0}' was exported here."),
|
|
5386
|
-
|
|
5386
|
+
Top_level_await_expressions_are_only_allowed_when_the_module_option_is_set_to_es2022_esnext_system_node16_nodenext_or_preserve_and_the_target_option_is_set_to_es2017_or_higher: diag(1378, 1 /* Error */, "Top_level_await_expressions_are_only_allowed_when_the_module_option_is_set_to_es2022_esnext_system_n_1378", "Top-level 'await' expressions are only allowed when the 'module' option is set to 'es2022', 'esnext', 'system', 'node16', 'nodenext', or 'preserve', and the 'target' option is set to 'es2017' or higher."),
|
|
5387
5387
|
An_import_alias_cannot_reference_a_declaration_that_was_exported_using_export_type: diag(1379, 1 /* Error */, "An_import_alias_cannot_reference_a_declaration_that_was_exported_using_export_type_1379", "An import alias cannot reference a declaration that was exported using 'export type'."),
|
|
5388
5388
|
An_import_alias_cannot_reference_a_declaration_that_was_imported_using_import_type: diag(1380, 1 /* Error */, "An_import_alias_cannot_reference_a_declaration_that_was_imported_using_import_type_1380", "An import alias cannot reference a declaration that was imported using 'import type'."),
|
|
5389
5389
|
Unexpected_token_Did_you_mean_or_rbrace: diag(1381, 1 /* Error */, "Unexpected_token_Did_you_mean_or_rbrace_1381", "Unexpected token. Did you mean `{'}'}` or `}`?"),
|
|
@@ -5434,7 +5434,7 @@ var Diagnostics = {
|
|
|
5434
5434
|
File_redirects_to_file_0: diag(1429, 3 /* Message */, "File_redirects_to_file_0_1429", "File redirects to file '{0}'"),
|
|
5435
5435
|
The_file_is_in_the_program_because_Colon: diag(1430, 3 /* Message */, "The_file_is_in_the_program_because_Colon_1430", "The file is in the program because:"),
|
|
5436
5436
|
for_await_loops_are_only_allowed_at_the_top_level_of_a_file_when_that_file_is_a_module_but_this_file_has_no_imports_or_exports_Consider_adding_an_empty_export_to_make_this_file_a_module: diag(1431, 1 /* Error */, "for_await_loops_are_only_allowed_at_the_top_level_of_a_file_when_that_file_is_a_module_but_this_file_1431", "'for await' loops are only allowed at the top level of a file when that file is a module, but this file has no imports or exports. Consider adding an empty 'export {}' to make this file a module."),
|
|
5437
|
-
|
|
5437
|
+
Top_level_for_await_loops_are_only_allowed_when_the_module_option_is_set_to_es2022_esnext_system_node16_nodenext_or_preserve_and_the_target_option_is_set_to_es2017_or_higher: diag(1432, 1 /* Error */, "Top_level_for_await_loops_are_only_allowed_when_the_module_option_is_set_to_es2022_esnext_system_nod_1432", "Top-level 'for await' loops are only allowed when the 'module' option is set to 'es2022', 'esnext', 'system', 'node16', 'nodenext', or 'preserve', and the 'target' option is set to 'es2017' or higher."),
|
|
5438
5438
|
Neither_decorators_nor_modifiers_may_be_applied_to_this_parameters: diag(1433, 1 /* Error */, "Neither_decorators_nor_modifiers_may_be_applied_to_this_parameters_1433", "Neither decorators nor modifiers may be applied to 'this' parameters."),
|
|
5439
5439
|
Unexpected_keyword_or_identifier: diag(1434, 1 /* Error */, "Unexpected_keyword_or_identifier_1434", "Unexpected keyword or identifier."),
|
|
5440
5440
|
Unknown_keyword_or_identifier_Did_you_mean_0: diag(1435, 1 /* Error */, "Unknown_keyword_or_identifier_Did_you_mean_0_1435", "Unknown keyword or identifier. Did you mean '{0}'?"),
|
|
@@ -6017,9 +6017,9 @@ var Diagnostics = {
|
|
|
6017
6017
|
Duplicate_identifier_0_Compiler_reserves_name_1_when_emitting_super_references_in_static_initializers: diag(2818, 1 /* Error */, "Duplicate_identifier_0_Compiler_reserves_name_1_when_emitting_super_references_in_static_initializer_2818", "Duplicate identifier '{0}'. Compiler reserves name '{1}' when emitting 'super' references in static initializers."),
|
|
6018
6018
|
Namespace_name_cannot_be_0: diag(2819, 1 /* Error */, "Namespace_name_cannot_be_0_2819", "Namespace name cannot be '{0}'."),
|
|
6019
6019
|
Type_0_is_not_assignable_to_type_1_Did_you_mean_2: diag(2820, 1 /* Error */, "Type_0_is_not_assignable_to_type_1_Did_you_mean_2_2820", "Type '{0}' is not assignable to type '{1}'. Did you mean '{2}'?"),
|
|
6020
|
-
|
|
6020
|
+
Import_assertions_are_only_supported_when_the_module_option_is_set_to_esnext_nodenext_or_preserve: diag(2821, 1 /* Error */, "Import_assertions_are_only_supported_when_the_module_option_is_set_to_esnext_nodenext_or_preserve_2821", "Import assertions are only supported when the '--module' option is set to 'esnext', 'nodenext', or 'preserve'."),
|
|
6021
6021
|
Import_assertions_cannot_be_used_with_type_only_imports_or_exports: diag(2822, 1 /* Error */, "Import_assertions_cannot_be_used_with_type_only_imports_or_exports_2822", "Import assertions cannot be used with type-only imports or exports."),
|
|
6022
|
-
|
|
6022
|
+
Import_attributes_are_only_supported_when_the_module_option_is_set_to_esnext_nodenext_or_preserve: diag(2823, 1 /* Error */, "Import_attributes_are_only_supported_when_the_module_option_is_set_to_esnext_nodenext_or_preserve_2823", "Import attributes are only supported when the '--module' option is set to 'esnext', 'nodenext', or 'preserve'."),
|
|
6023
6023
|
Cannot_find_namespace_0_Did_you_mean_1: diag(2833, 1 /* Error */, "Cannot_find_namespace_0_Did_you_mean_1_2833", "Cannot find namespace '{0}'. Did you mean '{1}'?"),
|
|
6024
6024
|
Relative_import_paths_need_explicit_file_extensions_in_ECMAScript_imports_when_moduleResolution_is_node16_or_nodenext_Consider_adding_an_extension_to_the_import_path: diag(2834, 1 /* Error */, "Relative_import_paths_need_explicit_file_extensions_in_ECMAScript_imports_when_moduleResolution_is_n_2834", "Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Consider adding an extension to the import path."),
|
|
6025
6025
|
Relative_import_paths_need_explicit_file_extensions_in_ECMAScript_imports_when_moduleResolution_is_node16_or_nodenext_Did_you_mean_0: diag(2835, 1 /* Error */, "Relative_import_paths_need_explicit_file_extensions_in_ECMAScript_imports_when_moduleResolution_is_n_2835", "Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '{0}'?"),
|
|
@@ -6039,7 +6039,7 @@ var Diagnostics = {
|
|
|
6039
6039
|
The_initializer_of_an_await_using_declaration_must_be_either_an_object_with_a_Symbol_asyncDispose_or_Symbol_dispose_method_or_be_null_or_undefined: diag(2851, 1 /* Error */, "The_initializer_of_an_await_using_declaration_must_be_either_an_object_with_a_Symbol_asyncDispose_or_2851", "The initializer of an 'await using' declaration must be either an object with a '[Symbol.asyncDispose]()' or '[Symbol.dispose]()' method, or be 'null' or 'undefined'."),
|
|
6040
6040
|
await_using_statements_are_only_allowed_within_async_functions_and_at_the_top_levels_of_modules: diag(2852, 1 /* Error */, "await_using_statements_are_only_allowed_within_async_functions_and_at_the_top_levels_of_modules_2852", "'await using' statements are only allowed within async functions and at the top levels of modules."),
|
|
6041
6041
|
await_using_statements_are_only_allowed_at_the_top_level_of_a_file_when_that_file_is_a_module_but_this_file_has_no_imports_or_exports_Consider_adding_an_empty_export_to_make_this_file_a_module: diag(2853, 1 /* Error */, "await_using_statements_are_only_allowed_at_the_top_level_of_a_file_when_that_file_is_a_module_but_th_2853", "'await using' statements are only allowed at the top level of a file when that file is a module, but this file has no imports or exports. Consider adding an empty 'export {}' to make this file a module."),
|
|
6042
|
-
|
|
6042
|
+
Top_level_await_using_statements_are_only_allowed_when_the_module_option_is_set_to_es2022_esnext_system_node16_nodenext_or_preserve_and_the_target_option_is_set_to_es2017_or_higher: diag(2854, 1 /* Error */, "Top_level_await_using_statements_are_only_allowed_when_the_module_option_is_set_to_es2022_esnext_sys_2854", "Top-level 'await using' statements are only allowed when the 'module' option is set to 'es2022', 'esnext', 'system', 'node16', 'nodenext', or 'preserve', and the 'target' option is set to 'es2017' or higher."),
|
|
6043
6043
|
Class_field_0_defined_by_the_parent_class_is_not_accessible_in_the_child_class_via_super: diag(2855, 1 /* Error */, "Class_field_0_defined_by_the_parent_class_is_not_accessible_in_the_child_class_via_super_2855", "Class field '{0}' defined by the parent class is not accessible in the child class via super."),
|
|
6044
6044
|
Import_attributes_are_not_allowed_on_statements_that_compile_to_CommonJS_require_calls: diag(2856, 1 /* Error */, "Import_attributes_are_not_allowed_on_statements_that_compile_to_CommonJS_require_calls_2856", "Import attributes are not allowed on statements that compile to CommonJS 'require' calls."),
|
|
6045
6045
|
Import_attributes_cannot_be_used_with_type_only_imports_or_exports: diag(2857, 1 /* Error */, "Import_attributes_cannot_be_used_with_type_only_imports_or_exports_2857", "Import attributes cannot be used with type-only imports or exports."),
|
|
@@ -6195,7 +6195,7 @@ var Diagnostics = {
|
|
|
6195
6195
|
Adding_a_tsconfig_json_file_will_help_organize_projects_that_contain_both_TypeScript_and_JavaScript_files_Learn_more_at_https_Colon_Slash_Slashaka_ms_Slashtsconfig: diag(5068, 1 /* Error */, "Adding_a_tsconfig_json_file_will_help_organize_projects_that_contain_both_TypeScript_and_JavaScript__5068", "Adding a tsconfig.json file will help organize projects that contain both TypeScript and JavaScript files. Learn more at https://aka.ms/tsconfig."),
|
|
6196
6196
|
Option_0_cannot_be_specified_without_specifying_option_1_or_option_2: diag(5069, 1 /* Error */, "Option_0_cannot_be_specified_without_specifying_option_1_or_option_2_5069", "Option '{0}' cannot be specified without specifying option '{1}' or option '{2}'."),
|
|
6197
6197
|
Option_resolveJsonModule_cannot_be_specified_when_moduleResolution_is_set_to_classic: diag(5070, 1 /* Error */, "Option_resolveJsonModule_cannot_be_specified_when_moduleResolution_is_set_to_classic_5070", "Option '--resolveJsonModule' cannot be specified when 'moduleResolution' is set to 'classic'."),
|
|
6198
|
-
|
|
6198
|
+
Option_resolveJsonModule_cannot_be_specified_when_module_is_set_to_none_system_or_umd: diag(5071, 1 /* Error */, "Option_resolveJsonModule_cannot_be_specified_when_module_is_set_to_none_system_or_umd_5071", "Option '--resolveJsonModule' cannot be specified when 'module' is set to 'none', 'system', or 'umd'."),
|
|
6199
6199
|
Unknown_build_option_0: diag(5072, 1 /* Error */, "Unknown_build_option_0_5072", "Unknown build option '{0}'."),
|
|
6200
6200
|
Build_option_0_requires_a_value_of_type_1: diag(5073, 1 /* Error */, "Build_option_0_requires_a_value_of_type_1_5073", "Build option '{0}' requires a value of type {1}."),
|
|
6201
6201
|
Option_incremental_can_only_be_specified_using_tsconfig_emitting_to_single_file_or_when_option_tsBuildInfoFile_is_specified: diag(5074, 1 /* Error */, "Option_incremental_can_only_be_specified_using_tsconfig_emitting_to_single_file_or_when_option_tsBui_5074", "Option '--incremental' can only be specified using tsconfig, emitting to single file or when option '--tsBuildInfoFile' is specified."),
|
|
@@ -6218,7 +6218,7 @@ var Diagnostics = {
|
|
|
6218
6218
|
The_root_value_of_a_0_file_must_be_an_object: diag(5092, 1 /* Error */, "The_root_value_of_a_0_file_must_be_an_object_5092", "The root value of a '{0}' file must be an object."),
|
|
6219
6219
|
Compiler_option_0_may_only_be_used_with_build: diag(5093, 1 /* Error */, "Compiler_option_0_may_only_be_used_with_build_5093", "Compiler option '--{0}' may only be used with '--build'."),
|
|
6220
6220
|
Compiler_option_0_may_not_be_used_with_build: diag(5094, 1 /* Error */, "Compiler_option_0_may_not_be_used_with_build_5094", "Compiler option '--{0}' may not be used with '--build'."),
|
|
6221
|
-
|
|
6221
|
+
Option_0_can_only_be_used_when_module_is_set_to_preserve_or_to_es2015_or_later: diag(5095, 1 /* Error */, "Option_0_can_only_be_used_when_module_is_set_to_preserve_or_to_es2015_or_later_5095", "Option '{0}' can only be used when 'module' is set to 'preserve' or to 'es2015' or later."),
|
|
6222
6222
|
Option_allowImportingTsExtensions_can_only_be_used_when_either_noEmit_or_emitDeclarationOnly_is_set: diag(5096, 1 /* Error */, "Option_allowImportingTsExtensions_can_only_be_used_when_either_noEmit_or_emitDeclarationOnly_is_set_5096", "Option 'allowImportingTsExtensions' can only be used when either 'noEmit' or 'emitDeclarationOnly' is set."),
|
|
6223
6223
|
An_import_path_can_only_end_with_a_0_extension_when_allowImportingTsExtensions_is_enabled: diag(5097, 1 /* Error */, "An_import_path_can_only_end_with_a_0_extension_when_allowImportingTsExtensions_is_enabled_5097", "An import path can only end with a '{0}' extension when 'allowImportingTsExtensions' is enabled."),
|
|
6224
6224
|
Option_0_can_only_be_used_when_moduleResolution_is_set_to_node16_nodenext_or_bundler: diag(5098, 1 /* Error */, "Option_0_can_only_be_used_when_moduleResolution_is_set_to_node16_nodenext_or_bundler_5098", "Option '{0}' can only be used when 'moduleResolution' is set to 'node16', 'nodenext', or 'bundler'."),
|
|
@@ -7138,6 +7138,12 @@ var Diagnostics = {
|
|
|
7138
7138
|
Could_not_find_variable_to_inline: diag(95185, 3 /* Message */, "Could_not_find_variable_to_inline_95185", "Could not find variable to inline."),
|
|
7139
7139
|
Variables_with_multiple_declarations_cannot_be_inlined: diag(95186, 3 /* Message */, "Variables_with_multiple_declarations_cannot_be_inlined_95186", "Variables with multiple declarations cannot be inlined."),
|
|
7140
7140
|
Add_missing_comma_for_object_member_completion_0: diag(95187, 3 /* Message */, "Add_missing_comma_for_object_member_completion_0_95187", "Add missing comma for object member completion '{0}'."),
|
|
7141
|
+
Add_missing_parameter_to_0: diag(95188, 3 /* Message */, "Add_missing_parameter_to_0_95188", "Add missing parameter to '{0}'"),
|
|
7142
|
+
Add_missing_parameters_to_0: diag(95189, 3 /* Message */, "Add_missing_parameters_to_0_95189", "Add missing parameters to '{0}'"),
|
|
7143
|
+
Add_all_missing_parameters: diag(95190, 3 /* Message */, "Add_all_missing_parameters_95190", "Add all missing parameters"),
|
|
7144
|
+
Add_optional_parameter_to_0: diag(95191, 3 /* Message */, "Add_optional_parameter_to_0_95191", "Add optional parameter to '{0}'"),
|
|
7145
|
+
Add_optional_parameters_to_0: diag(95192, 3 /* Message */, "Add_optional_parameters_to_0_95192", "Add optional parameters to '{0}'"),
|
|
7146
|
+
Add_all_optional_parameters: diag(95193, 3 /* Message */, "Add_all_optional_parameters_95193", "Add all optional parameters"),
|
|
7141
7147
|
No_value_exists_in_scope_for_the_shorthand_property_0_Either_declare_one_or_provide_an_initializer: diag(18004, 1 /* Error */, "No_value_exists_in_scope_for_the_shorthand_property_0_Either_declare_one_or_provide_an_initializer_18004", "No value exists in scope for the shorthand property '{0}'. Either declare one or provide an initializer."),
|
|
7142
7148
|
Classes_may_not_have_a_field_named_constructor: diag(18006, 1 /* Error */, "Classes_may_not_have_a_field_named_constructor_18006", "Classes may not have a field named 'constructor'."),
|
|
7143
7149
|
JSX_expressions_may_not_use_the_comma_operator_Did_you_mean_to_write_an_array: diag(18007, 1 /* Error */, "JSX_expressions_may_not_use_the_comma_operator_Did_you_mean_to_write_an_array_18007", "JSX expressions may not use the comma operator. Did you mean to write an array?"),
|
|
@@ -11336,6 +11342,9 @@ var computedOptions = createComputedCompilerOptions({
|
|
|
11336
11342
|
case 199 /* NodeNext */:
|
|
11337
11343
|
moduleResolution = 99 /* NodeNext */;
|
|
11338
11344
|
break;
|
|
11345
|
+
case 200 /* Preserve */:
|
|
11346
|
+
moduleResolution = 100 /* Bundler */;
|
|
11347
|
+
break;
|
|
11339
11348
|
default:
|
|
11340
11349
|
moduleResolution = 1 /* Classic */;
|
|
11341
11350
|
break;
|
|
@@ -11365,6 +11374,7 @@ var computedOptions = createComputedCompilerOptions({
|
|
|
11365
11374
|
switch (computedOptions.module.computeValue(compilerOptions)) {
|
|
11366
11375
|
case 100 /* Node16 */:
|
|
11367
11376
|
case 199 /* NodeNext */:
|
|
11377
|
+
case 200 /* Preserve */:
|
|
11368
11378
|
return true;
|
|
11369
11379
|
}
|
|
11370
11380
|
return false;
|
|
@@ -11589,7 +11599,7 @@ function getRegularExpressionsForWildcards(specs, basePath, usage) {
|
|
|
11589
11599
|
function isImplicitGlob(lastPathComponent) {
|
|
11590
11600
|
return !/[.*?]/.test(lastPathComponent);
|
|
11591
11601
|
}
|
|
11592
|
-
function getSubPatternFromSpec(spec, basePath, usage, { singleAsteriskRegexFragment, doubleAsteriskRegexFragment, replaceWildcardCharacter: replaceWildcardCharacter2 }) {
|
|
11602
|
+
function getSubPatternFromSpec(spec, basePath, usage, { singleAsteriskRegexFragment, doubleAsteriskRegexFragment, replaceWildcardCharacter: replaceWildcardCharacter2 } = wildcardMatchers[usage]) {
|
|
11593
11603
|
let subpattern = "";
|
|
11594
11604
|
let hasWrittenComponent = false;
|
|
11595
11605
|
const components = getNormalizedPathComponents(spec, basePath);
|
|
@@ -26252,7 +26262,8 @@ var moduleOptionDeclaration = {
|
|
|
26252
26262
|
es2022: 7 /* ES2022 */,
|
|
26253
26263
|
esnext: 99 /* ESNext */,
|
|
26254
26264
|
node16: 100 /* Node16 */,
|
|
26255
|
-
nodenext: 199 /* NodeNext
|
|
26265
|
+
nodenext: 199 /* NodeNext */,
|
|
26266
|
+
preserve: 200 /* Preserve */
|
|
26256
26267
|
})),
|
|
26257
26268
|
affectsSourceFile: true,
|
|
26258
26269
|
affectsModuleResolution: true,
|
|
@@ -27902,20 +27913,7 @@ function resolveModuleName(moduleName, containingFile, compilerOptions, host, ca
|
|
|
27902
27913
|
} else {
|
|
27903
27914
|
let moduleResolution = compilerOptions.moduleResolution;
|
|
27904
27915
|
if (moduleResolution === void 0) {
|
|
27905
|
-
|
|
27906
|
-
case 1 /* CommonJS */:
|
|
27907
|
-
moduleResolution = 2 /* Node10 */;
|
|
27908
|
-
break;
|
|
27909
|
-
case 100 /* Node16 */:
|
|
27910
|
-
moduleResolution = 3 /* Node16 */;
|
|
27911
|
-
break;
|
|
27912
|
-
case 199 /* NodeNext */:
|
|
27913
|
-
moduleResolution = 99 /* NodeNext */;
|
|
27914
|
-
break;
|
|
27915
|
-
default:
|
|
27916
|
-
moduleResolution = 1 /* Classic */;
|
|
27917
|
-
break;
|
|
27918
|
-
}
|
|
27916
|
+
moduleResolution = getEmitModuleResolutionKind(compilerOptions);
|
|
27919
27917
|
if (traceEnabled) {
|
|
27920
27918
|
trace(host, Diagnostics.Module_resolution_kind_is_not_specified_using_0, ModuleResolutionKind[moduleResolution]);
|
|
27921
27919
|
}
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "typescript",
|
|
3
3
|
"author": "Microsoft Corp.",
|
|
4
4
|
"homepage": "https://www.typescriptlang.org/",
|
|
5
|
-
"version": "5.4.0-dev.
|
|
5
|
+
"version": "5.4.0-dev.20240120",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"description": "TypeScript is a language for application scale JavaScript development",
|
|
8
8
|
"keywords": [
|
|
@@ -40,46 +40,46 @@
|
|
|
40
40
|
],
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"@esfx/canceltoken": "^1.0.0",
|
|
43
|
-
"@octokit/rest": "^
|
|
44
|
-
"@types/chai": "^4.3.
|
|
43
|
+
"@octokit/rest": "^20.0.2",
|
|
44
|
+
"@types/chai": "^4.3.11",
|
|
45
45
|
"@types/glob": "^8.1.0",
|
|
46
|
-
"@types/microsoft__typescript-etw": "^0.1.
|
|
47
|
-
"@types/minimist": "^1.2.
|
|
48
|
-
"@types/mocha": "^10.0.
|
|
49
|
-
"@types/ms": "^0.7.
|
|
46
|
+
"@types/microsoft__typescript-etw": "^0.1.3",
|
|
47
|
+
"@types/minimist": "^1.2.5",
|
|
48
|
+
"@types/mocha": "^10.0.6",
|
|
49
|
+
"@types/ms": "^0.7.34",
|
|
50
50
|
"@types/node": "latest",
|
|
51
|
-
"@types/source-map-support": "^0.5.
|
|
52
|
-
"@types/which": "^
|
|
53
|
-
"@typescript-eslint/eslint-plugin": "^6.
|
|
54
|
-
"@typescript-eslint/parser": "^6.
|
|
55
|
-
"@typescript-eslint/utils": "^6.
|
|
56
|
-
"azure-devops-node-api": "^12.
|
|
57
|
-
"c8": "^
|
|
58
|
-
"chai": "^4.
|
|
51
|
+
"@types/source-map-support": "^0.5.10",
|
|
52
|
+
"@types/which": "^3.0.3",
|
|
53
|
+
"@typescript-eslint/eslint-plugin": "^6.19.0",
|
|
54
|
+
"@typescript-eslint/parser": "^6.19.0",
|
|
55
|
+
"@typescript-eslint/utils": "^6.19.0",
|
|
56
|
+
"azure-devops-node-api": "^12.3.0",
|
|
57
|
+
"c8": "^9.1.0",
|
|
58
|
+
"chai": "^4.4.1",
|
|
59
59
|
"chalk": "^4.1.2",
|
|
60
60
|
"chokidar": "^3.5.3",
|
|
61
61
|
"diff": "^5.1.0",
|
|
62
62
|
"dprint": "^0.45.0",
|
|
63
|
-
"esbuild": "^0.19.
|
|
64
|
-
"eslint": "^8.
|
|
65
|
-
"eslint-formatter-autolinkable-stylish": "^1.
|
|
66
|
-
"eslint-plugin-local": "^1.0
|
|
63
|
+
"esbuild": "^0.19.11",
|
|
64
|
+
"eslint": "^8.56.0",
|
|
65
|
+
"eslint-formatter-autolinkable-stylish": "^1.3.0",
|
|
66
|
+
"eslint-plugin-local": "^3.1.0",
|
|
67
67
|
"eslint-plugin-no-null": "^1.0.2",
|
|
68
68
|
"eslint-plugin-simple-import-sort": "^10.0.0",
|
|
69
|
-
"fast-xml-parser": "^4.
|
|
70
|
-
"glob": "^
|
|
71
|
-
"hereby": "^1.
|
|
69
|
+
"fast-xml-parser": "^4.3.3",
|
|
70
|
+
"glob": "^10.3.10",
|
|
71
|
+
"hereby": "^1.8.9",
|
|
72
72
|
"jsonc-parser": "^3.2.0",
|
|
73
73
|
"minimist": "^1.2.8",
|
|
74
74
|
"mocha": "^10.2.0",
|
|
75
75
|
"mocha-fivemat-progress-reporter": "^0.1.0",
|
|
76
76
|
"ms": "^2.1.3",
|
|
77
|
-
"node-fetch": "^3.2
|
|
78
|
-
"playwright": "^1.
|
|
77
|
+
"node-fetch": "^3.3.2",
|
|
78
|
+
"playwright": "^1.41.0",
|
|
79
79
|
"source-map-support": "^0.5.21",
|
|
80
|
-
"tslib": "^2.
|
|
81
|
-
"typescript": "5.4.0-dev.
|
|
82
|
-
"which": "^
|
|
80
|
+
"tslib": "^2.6.2",
|
|
81
|
+
"typescript": "5.4.0-dev.20240119",
|
|
82
|
+
"which": "^3.0.1"
|
|
83
83
|
},
|
|
84
84
|
"overrides": {
|
|
85
85
|
"typescript@*": "$typescript"
|
|
@@ -113,5 +113,5 @@
|
|
|
113
113
|
"node": "20.1.0",
|
|
114
114
|
"npm": "8.19.4"
|
|
115
115
|
},
|
|
116
|
-
"gitHead": "
|
|
116
|
+
"gitHead": "cea0b61320ee69ae863cc9d7bf873113eb420e3b"
|
|
117
117
|
}
|