typescript 6.0.0-dev.20260127 → 6.0.0-dev.20260129
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 +8 -2
- package/lib/typescript.js +11 -2
- 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 = "6.0";
|
|
21
|
-
var version = `${versionMajorMinor}.0-dev.
|
|
21
|
+
var version = `${versionMajorMinor}.0-dev.20260129`;
|
|
22
22
|
|
|
23
23
|
// src/compiler/core.ts
|
|
24
24
|
var emptyArray = [];
|
|
@@ -131673,7 +131673,13 @@ function updateReportDiagnostic(sys2, existing, options) {
|
|
|
131673
131673
|
) : existing;
|
|
131674
131674
|
}
|
|
131675
131675
|
function defaultIsPretty(sys2) {
|
|
131676
|
-
|
|
131676
|
+
if (sys2.getEnvironmentVariable("NO_COLOR")) {
|
|
131677
|
+
return false;
|
|
131678
|
+
}
|
|
131679
|
+
if (sys2.getEnvironmentVariable("FORCE_COLOR")) {
|
|
131680
|
+
return true;
|
|
131681
|
+
}
|
|
131682
|
+
return !!sys2.writeOutputIsTTY && sys2.writeOutputIsTTY();
|
|
131677
131683
|
}
|
|
131678
131684
|
function shouldBePretty(sys2, options) {
|
|
131679
131685
|
if (!options || typeof options.pretty === "undefined") {
|
package/lib/typescript.js
CHANGED
|
@@ -2286,7 +2286,7 @@ module.exports = __toCommonJS(typescript_exports);
|
|
|
2286
2286
|
|
|
2287
2287
|
// src/compiler/corePublic.ts
|
|
2288
2288
|
var versionMajorMinor = "6.0";
|
|
2289
|
-
var version = `${versionMajorMinor}.0-dev.
|
|
2289
|
+
var version = `${versionMajorMinor}.0-dev.20260129`;
|
|
2290
2290
|
var Comparison = /* @__PURE__ */ ((Comparison3) => {
|
|
2291
2291
|
Comparison3[Comparison3["LessThan"] = -1] = "LessThan";
|
|
2292
2292
|
Comparison3[Comparison3["EqualTo"] = 0] = "EqualTo";
|
|
@@ -136659,7 +136659,13 @@ function updateReportDiagnostic(sys2, existing, options) {
|
|
|
136659
136659
|
) : existing;
|
|
136660
136660
|
}
|
|
136661
136661
|
function defaultIsPretty(sys2) {
|
|
136662
|
-
|
|
136662
|
+
if (sys2.getEnvironmentVariable("NO_COLOR")) {
|
|
136663
|
+
return false;
|
|
136664
|
+
}
|
|
136665
|
+
if (sys2.getEnvironmentVariable("FORCE_COLOR")) {
|
|
136666
|
+
return true;
|
|
136667
|
+
}
|
|
136668
|
+
return !!sys2.writeOutputIsTTY && sys2.writeOutputIsTTY();
|
|
136663
136669
|
}
|
|
136664
136670
|
function shouldBePretty(sys2, options) {
|
|
136665
136671
|
if (!options || typeof options.pretty === "undefined") {
|
|
@@ -189681,6 +189687,9 @@ function convertCompilerOptions(protocolOptions) {
|
|
|
189681
189687
|
protocolOptions[id] = mappedValues.get(propertyValue.toLowerCase());
|
|
189682
189688
|
}
|
|
189683
189689
|
});
|
|
189690
|
+
if (isArray(protocolOptions.lib)) {
|
|
189691
|
+
protocolOptions.lib = protocolOptions.lib.map((libName) => libMap.get(libName) ?? libName);
|
|
189692
|
+
}
|
|
189684
189693
|
return protocolOptions;
|
|
189685
189694
|
}
|
|
189686
189695
|
function convertWatchOptions(protocolOptions, currentDirectory) {
|
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": "6.0.0-dev.
|
|
5
|
+
"version": "6.0.0-dev.20260129",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"description": "TypeScript is a language for application scale JavaScript development",
|
|
8
8
|
"keywords": [
|
|
@@ -115,5 +115,5 @@
|
|
|
115
115
|
"node": "20.1.0",
|
|
116
116
|
"npm": "8.19.4"
|
|
117
117
|
},
|
|
118
|
-
"gitHead": "
|
|
118
|
+
"gitHead": "c1592ada0e9e05a0933326afb9055fa73f268fda"
|
|
119
119
|
}
|