typescript 5.4.0-dev.20240111 → 5.4.0-dev.20240113
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/lib.es5.d.ts +5 -0
- package/lib/lib.esnext.collection.d.ts +29 -0
- package/lib/lib.esnext.d.ts +2 -0
- package/lib/lib.esnext.object.d.ts +29 -0
- package/lib/tsc.js +203 -337
- package/lib/tsserver.js +274 -345
- package/lib/typescript.d.ts +5 -2
- package/lib/typescript.js +275 -345
- package/lib/typingsInstaller.js +6 -3
- package/package.json +2 -2
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.20240113`;
|
|
58
58
|
|
|
59
59
|
// src/compiler/core.ts
|
|
60
60
|
var emptyArray = [];
|
|
@@ -4311,6 +4311,7 @@ var sys = (() => {
|
|
|
4311
4311
|
resolvePath: (path2) => _path.resolve(path2),
|
|
4312
4312
|
fileExists,
|
|
4313
4313
|
directoryExists,
|
|
4314
|
+
getAccessibleFileSystemEntries,
|
|
4314
4315
|
createDirectory(directoryName) {
|
|
4315
4316
|
if (!nodeSystem.directoryExists(directoryName)) {
|
|
4316
4317
|
try {
|
|
@@ -25933,7 +25934,7 @@ var libEntries = [
|
|
|
25933
25934
|
["es2023.array", "lib.es2023.array.d.ts"],
|
|
25934
25935
|
["es2023.collection", "lib.es2023.collection.d.ts"],
|
|
25935
25936
|
["esnext.array", "lib.es2023.array.d.ts"],
|
|
25936
|
-
["esnext.collection", "lib.
|
|
25937
|
+
["esnext.collection", "lib.esnext.collection.d.ts"],
|
|
25937
25938
|
["esnext.symbol", "lib.es2019.symbol.d.ts"],
|
|
25938
25939
|
["esnext.asynciterable", "lib.es2018.asynciterable.d.ts"],
|
|
25939
25940
|
["esnext.intl", "lib.esnext.intl.d.ts"],
|
|
@@ -25943,6 +25944,7 @@ var libEntries = [
|
|
|
25943
25944
|
["esnext.promise", "lib.esnext.promise.d.ts"],
|
|
25944
25945
|
["esnext.weakref", "lib.es2021.weakref.d.ts"],
|
|
25945
25946
|
["esnext.decorators", "lib.esnext.decorators.d.ts"],
|
|
25947
|
+
["esnext.object", "lib.esnext.object.d.ts"],
|
|
25946
25948
|
["decorators", "lib.decorators.d.ts"],
|
|
25947
25949
|
["decorators.legacy", "lib.decorators.legacy.d.ts"]
|
|
25948
25950
|
];
|
|
@@ -29515,7 +29517,8 @@ var intrinsicTypeKinds = new Map(Object.entries({
|
|
|
29515
29517
|
Uppercase: 0 /* Uppercase */,
|
|
29516
29518
|
Lowercase: 1 /* Lowercase */,
|
|
29517
29519
|
Capitalize: 2 /* Capitalize */,
|
|
29518
|
-
Uncapitalize: 3 /* Uncapitalize
|
|
29520
|
+
Uncapitalize: 3 /* Uncapitalize */,
|
|
29521
|
+
NoInfer: 4 /* NoInfer */
|
|
29519
29522
|
}));
|
|
29520
29523
|
function getNodeId(node) {
|
|
29521
29524
|
if (!node.id) {
|
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.20240113",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"description": "TypeScript is a language for application scale JavaScript development",
|
|
8
8
|
"keywords": [
|
|
@@ -113,5 +113,5 @@
|
|
|
113
113
|
"node": "20.1.0",
|
|
114
114
|
"npm": "8.19.4"
|
|
115
115
|
},
|
|
116
|
-
"gitHead": "
|
|
116
|
+
"gitHead": "23faef92703556567ddbcb9afb893f4ba638fc20"
|
|
117
117
|
}
|