typescript 6.0.0-dev.20260203 → 6.0.0-dev.20260204
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 +3 -3
- package/lib/typescript.js +3 -3
- 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.20260204`;
|
|
22
22
|
|
|
23
23
|
// src/compiler/core.ts
|
|
24
24
|
var emptyArray = [];
|
|
@@ -18221,7 +18221,7 @@ function moduleSupportsImportAttributes(moduleKind) {
|
|
|
18221
18221
|
return 101 /* Node18 */ <= moduleKind && moduleKind <= 199 /* NodeNext */ || moduleKind === 200 /* Preserve */ || moduleKind === 99 /* ESNext */;
|
|
18222
18222
|
}
|
|
18223
18223
|
function getStrictOptionValue(compilerOptions, flag) {
|
|
18224
|
-
return compilerOptions[flag] === void 0 ?
|
|
18224
|
+
return compilerOptions[flag] === void 0 ? compilerOptions.strict !== false : !!compilerOptions[flag];
|
|
18225
18225
|
}
|
|
18226
18226
|
function getNameOfScriptTarget(scriptTarget) {
|
|
18227
18227
|
return forEachEntry(targetOptionDeclaration.type, (value, key) => value === scriptTarget ? key : void 0);
|
|
@@ -37088,7 +37088,7 @@ var commandOptionsWithoutBuild = [
|
|
|
37088
37088
|
showInSimplifiedHelpView: true,
|
|
37089
37089
|
category: Diagnostics.Type_Checking,
|
|
37090
37090
|
description: Diagnostics.Enable_all_strict_type_checking_options,
|
|
37091
|
-
defaultValueDescription:
|
|
37091
|
+
defaultValueDescription: true
|
|
37092
37092
|
},
|
|
37093
37093
|
{
|
|
37094
37094
|
name: "noImplicitAny",
|
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.20260204`;
|
|
2290
2290
|
var Comparison = /* @__PURE__ */ ((Comparison3) => {
|
|
2291
2291
|
Comparison3[Comparison3["LessThan"] = -1] = "LessThan";
|
|
2292
2292
|
Comparison3[Comparison3["EqualTo"] = 0] = "EqualTo";
|
|
@@ -22192,7 +22192,7 @@ function moduleSupportsImportAttributes(moduleKind) {
|
|
|
22192
22192
|
return 101 /* Node18 */ <= moduleKind && moduleKind <= 199 /* NodeNext */ || moduleKind === 200 /* Preserve */ || moduleKind === 99 /* ESNext */;
|
|
22193
22193
|
}
|
|
22194
22194
|
function getStrictOptionValue(compilerOptions, flag) {
|
|
22195
|
-
return compilerOptions[flag] === void 0 ?
|
|
22195
|
+
return compilerOptions[flag] === void 0 ? compilerOptions.strict !== false : !!compilerOptions[flag];
|
|
22196
22196
|
}
|
|
22197
22197
|
function getNameOfScriptTarget(scriptTarget) {
|
|
22198
22198
|
return forEachEntry(targetOptionDeclaration.type, (value, key) => value === scriptTarget ? key : void 0);
|
|
@@ -41367,7 +41367,7 @@ var commandOptionsWithoutBuild = [
|
|
|
41367
41367
|
showInSimplifiedHelpView: true,
|
|
41368
41368
|
category: Diagnostics.Type_Checking,
|
|
41369
41369
|
description: Diagnostics.Enable_all_strict_type_checking_options,
|
|
41370
|
-
defaultValueDescription:
|
|
41370
|
+
defaultValueDescription: true
|
|
41371
41371
|
},
|
|
41372
41372
|
{
|
|
41373
41373
|
name: "noImplicitAny",
|
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.20260204",
|
|
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": "01c23d68b1113a4b71acb8484f1bf78a98307933"
|
|
119
119
|
}
|