typescript 5.4.0-dev.20240122 → 5.4.0-dev.20240124
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 +6 -2
- package/lib/tsserver.js +6 -2
- package/lib/typescript.js +6 -2
- package/lib/typingsInstaller.js +1 -1
- package/package.json +2 -2
package/lib/tsc.js
CHANGED
|
@@ -18,7 +18,7 @@ and limitations under the License.
|
|
|
18
18
|
|
|
19
19
|
// src/compiler/corePublic.ts
|
|
20
20
|
var versionMajorMinor = "5.4";
|
|
21
|
-
var version = `${versionMajorMinor}.0-dev.
|
|
21
|
+
var version = `${versionMajorMinor}.0-dev.20240124`;
|
|
22
22
|
|
|
23
23
|
// src/compiler/core.ts
|
|
24
24
|
var emptyArray = [];
|
|
@@ -42806,7 +42806,11 @@ function computeModuleSpecifiers(modulePaths, compilerOptions, importingSourceFi
|
|
|
42806
42806
|
if (modulePath.isRedirect) {
|
|
42807
42807
|
redirectPathsSpecifiers = append(redirectPathsSpecifiers, local);
|
|
42808
42808
|
} else if (pathIsBareSpecifier(local)) {
|
|
42809
|
-
|
|
42809
|
+
if (pathContainsNodeModules(local)) {
|
|
42810
|
+
relativeSpecifiers = append(relativeSpecifiers, local);
|
|
42811
|
+
} else {
|
|
42812
|
+
pathsSpecifiers = append(pathsSpecifiers, local);
|
|
42813
|
+
}
|
|
42810
42814
|
} else if (forAutoImport || !importedFileIsInNodeModules || modulePath.isInNodeModules) {
|
|
42811
42815
|
relativeSpecifiers = append(relativeSpecifiers, local);
|
|
42812
42816
|
}
|
package/lib/tsserver.js
CHANGED
|
@@ -2340,7 +2340,7 @@ module.exports = __toCommonJS(server_exports);
|
|
|
2340
2340
|
|
|
2341
2341
|
// src/compiler/corePublic.ts
|
|
2342
2342
|
var versionMajorMinor = "5.4";
|
|
2343
|
-
var version = `${versionMajorMinor}.0-dev.
|
|
2343
|
+
var version = `${versionMajorMinor}.0-dev.20240124`;
|
|
2344
2344
|
var Comparison = /* @__PURE__ */ ((Comparison3) => {
|
|
2345
2345
|
Comparison3[Comparison3["LessThan"] = -1] = "LessThan";
|
|
2346
2346
|
Comparison3[Comparison3["EqualTo"] = 0] = "EqualTo";
|
|
@@ -47541,7 +47541,11 @@ function computeModuleSpecifiers(modulePaths, compilerOptions, importingSourceFi
|
|
|
47541
47541
|
if (modulePath.isRedirect) {
|
|
47542
47542
|
redirectPathsSpecifiers = append(redirectPathsSpecifiers, local);
|
|
47543
47543
|
} else if (pathIsBareSpecifier(local)) {
|
|
47544
|
-
|
|
47544
|
+
if (pathContainsNodeModules(local)) {
|
|
47545
|
+
relativeSpecifiers = append(relativeSpecifiers, local);
|
|
47546
|
+
} else {
|
|
47547
|
+
pathsSpecifiers = append(pathsSpecifiers, local);
|
|
47548
|
+
}
|
|
47545
47549
|
} else if (forAutoImport || !importedFileIsInNodeModules || modulePath.isInNodeModules) {
|
|
47546
47550
|
relativeSpecifiers = append(relativeSpecifiers, local);
|
|
47547
47551
|
}
|
package/lib/typescript.js
CHANGED
|
@@ -35,7 +35,7 @@ var ts = (() => {
|
|
|
35
35
|
"src/compiler/corePublic.ts"() {
|
|
36
36
|
"use strict";
|
|
37
37
|
versionMajorMinor = "5.4";
|
|
38
|
-
version = `${versionMajorMinor}.0-dev.
|
|
38
|
+
version = `${versionMajorMinor}.0-dev.20240124`;
|
|
39
39
|
Comparison = /* @__PURE__ */ ((Comparison3) => {
|
|
40
40
|
Comparison3[Comparison3["LessThan"] = -1] = "LessThan";
|
|
41
41
|
Comparison3[Comparison3["EqualTo"] = 0] = "EqualTo";
|
|
@@ -45394,7 +45394,11 @@ ${lanes.join("\n")}
|
|
|
45394
45394
|
if (modulePath.isRedirect) {
|
|
45395
45395
|
redirectPathsSpecifiers = append(redirectPathsSpecifiers, local);
|
|
45396
45396
|
} else if (pathIsBareSpecifier(local)) {
|
|
45397
|
-
|
|
45397
|
+
if (pathContainsNodeModules(local)) {
|
|
45398
|
+
relativeSpecifiers = append(relativeSpecifiers, local);
|
|
45399
|
+
} else {
|
|
45400
|
+
pathsSpecifiers = append(pathsSpecifiers, local);
|
|
45401
|
+
}
|
|
45398
45402
|
} else if (forAutoImport || !importedFileIsInNodeModules || modulePath.isInNodeModules) {
|
|
45399
45403
|
relativeSpecifiers = append(relativeSpecifiers, local);
|
|
45400
45404
|
}
|
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.20240124`;
|
|
58
58
|
|
|
59
59
|
// src/compiler/core.ts
|
|
60
60
|
var emptyArray = [];
|
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.20240124",
|
|
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": "5043c503887c515e9e1fd77ddf2f877f89a16cf0"
|
|
117
117
|
}
|