@typescript-deploys/pr-build 5.3.0-pr-55638-16 → 5.3.0-pr-55714-7
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 +3 -3
- package/lib/tsc.js +28 -17
- package/lib/tsserver.js +30 -19
- package/lib/typescript.js +30 -19
- package/lib/typingsInstaller.js +1 -2
- package/package.json +2 -2
package/lib/lib.es5.d.ts
CHANGED
|
@@ -1621,17 +1621,17 @@ type NonNullable<T> = T & {};
|
|
|
1621
1621
|
/**
|
|
1622
1622
|
* Obtain the parameters of a function type in a tuple
|
|
1623
1623
|
*/
|
|
1624
|
-
type Parameters<T extends (...args:
|
|
1624
|
+
type Parameters<T extends (...args: never) => any> = T extends (...args: infer P) => any ? P : never;
|
|
1625
1625
|
|
|
1626
1626
|
/**
|
|
1627
1627
|
* Obtain the parameters of a constructor function type in a tuple
|
|
1628
1628
|
*/
|
|
1629
|
-
type ConstructorParameters<T extends abstract new (...args:
|
|
1629
|
+
type ConstructorParameters<T extends abstract new (...args: never) => any> = T extends abstract new (...args: infer P) => any ? P : never;
|
|
1630
1630
|
|
|
1631
1631
|
/**
|
|
1632
1632
|
* Obtain the return type of a function type
|
|
1633
1633
|
*/
|
|
1634
|
-
type ReturnType<T extends (...args:
|
|
1634
|
+
type ReturnType<T extends (...args: never) => any> = T extends (...args: never) => infer R ? R : any;
|
|
1635
1635
|
|
|
1636
1636
|
/**
|
|
1637
1637
|
* Obtain the return type of a constructor function type
|
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.3";
|
|
21
|
-
var version = `${versionMajorMinor}.0-insiders.
|
|
21
|
+
var version = `${versionMajorMinor}.0-insiders.20230911`;
|
|
22
22
|
|
|
23
23
|
// src/compiler/core.ts
|
|
24
24
|
var emptyArray = [];
|
|
@@ -3704,7 +3704,6 @@ var ObjectFlags = /* @__PURE__ */ ((ObjectFlags3) => {
|
|
|
3704
3704
|
ObjectFlags3[ObjectFlags3["ClassOrInterface"] = 3] = "ClassOrInterface";
|
|
3705
3705
|
ObjectFlags3[ObjectFlags3["RequiresWidening"] = 196608] = "RequiresWidening";
|
|
3706
3706
|
ObjectFlags3[ObjectFlags3["PropagatingFlags"] = 458752] = "PropagatingFlags";
|
|
3707
|
-
ObjectFlags3[ObjectFlags3["InstantiatedMapped"] = 96] = "InstantiatedMapped";
|
|
3708
3707
|
ObjectFlags3[ObjectFlags3["ObjectTypeKindMask"] = 1343] = "ObjectTypeKindMask";
|
|
3709
3708
|
ObjectFlags3[ObjectFlags3["ContainsSpread"] = 2097152] = "ContainsSpread";
|
|
3710
3709
|
ObjectFlags3[ObjectFlags3["ObjectRestType"] = 4194304] = "ObjectRestType";
|
|
@@ -14991,7 +14990,31 @@ function getSourceFilesToEmit(host, targetSourceFile, forceDtsEmit) {
|
|
|
14991
14990
|
}
|
|
14992
14991
|
function sourceFileMayBeEmitted(sourceFile, host, forceDtsEmit) {
|
|
14993
14992
|
const options = host.getCompilerOptions();
|
|
14994
|
-
|
|
14993
|
+
if (options.noEmitForJsFiles && isSourceFileJS(sourceFile))
|
|
14994
|
+
return false;
|
|
14995
|
+
if (sourceFile.isDeclarationFile)
|
|
14996
|
+
return false;
|
|
14997
|
+
if (host.isSourceFileFromExternalLibrary(sourceFile))
|
|
14998
|
+
return false;
|
|
14999
|
+
if (forceDtsEmit)
|
|
15000
|
+
return true;
|
|
15001
|
+
if (host.isSourceOfProjectReferenceRedirect(sourceFile.fileName))
|
|
15002
|
+
return false;
|
|
15003
|
+
if (!isJsonSourceFile(sourceFile))
|
|
15004
|
+
return true;
|
|
15005
|
+
if (host.getResolvedProjectReferenceToRedirect(sourceFile.fileName))
|
|
15006
|
+
return false;
|
|
15007
|
+
if (outFile(options))
|
|
15008
|
+
return true;
|
|
15009
|
+
if (!options.outDir)
|
|
15010
|
+
return false;
|
|
15011
|
+
if (options.rootDir || options.composite && options.configFilePath) {
|
|
15012
|
+
const commonDir = getNormalizedAbsolutePath(getCommonSourceDirectory(options, () => [], host.getCurrentDirectory(), host.getCanonicalFileName), host.getCurrentDirectory());
|
|
15013
|
+
const outputPath = getSourceFilePathInNewDirWorker(sourceFile.fileName, options.outDir, host.getCurrentDirectory(), commonDir, host.getCanonicalFileName);
|
|
15014
|
+
if (comparePaths(sourceFile.fileName, outputPath, host.getCurrentDirectory(), !host.useCaseSensitiveFileNames()) === 0 /* EqualTo */)
|
|
15015
|
+
return false;
|
|
15016
|
+
}
|
|
15017
|
+
return true;
|
|
14995
15018
|
}
|
|
14996
15019
|
function getSourceFilePathInNewDir(fileName, host, newDirPath) {
|
|
14997
15020
|
return getSourceFilePathInNewDirWorker(fileName, newDirPath, host.getCurrentDirectory(), host.getCommonSourceDirectory(), (f) => host.getCanonicalFileName(f));
|
|
@@ -62383,13 +62406,8 @@ function createTypeChecker(host) {
|
|
|
62383
62406
|
if (getObjectFlags(type) & 4 /* Reference */ && type.node) {
|
|
62384
62407
|
return type.node;
|
|
62385
62408
|
}
|
|
62386
|
-
if (type.symbol) {
|
|
62387
|
-
|
|
62388
|
-
type = getMappedTargetWithSymbol(type);
|
|
62389
|
-
}
|
|
62390
|
-
if (!(getObjectFlags(type) & 16 /* Anonymous */ && type.symbol.flags & 32 /* Class */)) {
|
|
62391
|
-
return type.symbol;
|
|
62392
|
-
}
|
|
62409
|
+
if (type.symbol && !(getObjectFlags(type) & 16 /* Anonymous */ && type.symbol.flags & 32 /* Class */)) {
|
|
62410
|
+
return type.symbol;
|
|
62393
62411
|
}
|
|
62394
62412
|
if (isTupleType(type)) {
|
|
62395
62413
|
return type.target;
|
|
@@ -62409,13 +62427,6 @@ function createTypeChecker(host) {
|
|
|
62409
62427
|
}
|
|
62410
62428
|
return type;
|
|
62411
62429
|
}
|
|
62412
|
-
function getMappedTargetWithSymbol(type) {
|
|
62413
|
-
let target = type;
|
|
62414
|
-
while ((getObjectFlags(target) & 96 /* InstantiatedMapped */) === 96 /* InstantiatedMapped */ && isMappedTypeWithKeyofConstraintDeclaration(target)) {
|
|
62415
|
-
target = getModifiersTypeFromMappedType(target);
|
|
62416
|
-
}
|
|
62417
|
-
return target.symbol ? target : type;
|
|
62418
|
-
}
|
|
62419
62430
|
function isPropertyIdenticalTo(sourceProp, targetProp) {
|
|
62420
62431
|
return compareProperties(sourceProp, targetProp, compareTypesIdentical) !== 0 /* False */;
|
|
62421
62432
|
}
|
package/lib/tsserver.js
CHANGED
|
@@ -2327,7 +2327,7 @@ module.exports = __toCommonJS(server_exports);
|
|
|
2327
2327
|
|
|
2328
2328
|
// src/compiler/corePublic.ts
|
|
2329
2329
|
var versionMajorMinor = "5.3";
|
|
2330
|
-
var version = `${versionMajorMinor}.0-insiders.
|
|
2330
|
+
var version = `${versionMajorMinor}.0-insiders.20230911`;
|
|
2331
2331
|
var Comparison = /* @__PURE__ */ ((Comparison3) => {
|
|
2332
2332
|
Comparison3[Comparison3["LessThan"] = -1] = "LessThan";
|
|
2333
2333
|
Comparison3[Comparison3["EqualTo"] = 0] = "EqualTo";
|
|
@@ -6695,7 +6695,6 @@ var ObjectFlags = /* @__PURE__ */ ((ObjectFlags3) => {
|
|
|
6695
6695
|
ObjectFlags3[ObjectFlags3["ClassOrInterface"] = 3] = "ClassOrInterface";
|
|
6696
6696
|
ObjectFlags3[ObjectFlags3["RequiresWidening"] = 196608] = "RequiresWidening";
|
|
6697
6697
|
ObjectFlags3[ObjectFlags3["PropagatingFlags"] = 458752] = "PropagatingFlags";
|
|
6698
|
-
ObjectFlags3[ObjectFlags3["InstantiatedMapped"] = 96] = "InstantiatedMapped";
|
|
6699
6698
|
ObjectFlags3[ObjectFlags3["ObjectTypeKindMask"] = 1343] = "ObjectTypeKindMask";
|
|
6700
6699
|
ObjectFlags3[ObjectFlags3["ContainsSpread"] = 2097152] = "ContainsSpread";
|
|
6701
6700
|
ObjectFlags3[ObjectFlags3["ObjectRestType"] = 4194304] = "ObjectRestType";
|
|
@@ -18958,7 +18957,31 @@ function getSourceFilesToEmit(host, targetSourceFile, forceDtsEmit) {
|
|
|
18958
18957
|
}
|
|
18959
18958
|
function sourceFileMayBeEmitted(sourceFile, host, forceDtsEmit) {
|
|
18960
18959
|
const options = host.getCompilerOptions();
|
|
18961
|
-
|
|
18960
|
+
if (options.noEmitForJsFiles && isSourceFileJS(sourceFile))
|
|
18961
|
+
return false;
|
|
18962
|
+
if (sourceFile.isDeclarationFile)
|
|
18963
|
+
return false;
|
|
18964
|
+
if (host.isSourceFileFromExternalLibrary(sourceFile))
|
|
18965
|
+
return false;
|
|
18966
|
+
if (forceDtsEmit)
|
|
18967
|
+
return true;
|
|
18968
|
+
if (host.isSourceOfProjectReferenceRedirect(sourceFile.fileName))
|
|
18969
|
+
return false;
|
|
18970
|
+
if (!isJsonSourceFile(sourceFile))
|
|
18971
|
+
return true;
|
|
18972
|
+
if (host.getResolvedProjectReferenceToRedirect(sourceFile.fileName))
|
|
18973
|
+
return false;
|
|
18974
|
+
if (outFile(options))
|
|
18975
|
+
return true;
|
|
18976
|
+
if (!options.outDir)
|
|
18977
|
+
return false;
|
|
18978
|
+
if (options.rootDir || options.composite && options.configFilePath) {
|
|
18979
|
+
const commonDir = getNormalizedAbsolutePath(getCommonSourceDirectory(options, () => [], host.getCurrentDirectory(), host.getCanonicalFileName), host.getCurrentDirectory());
|
|
18980
|
+
const outputPath = getSourceFilePathInNewDirWorker(sourceFile.fileName, options.outDir, host.getCurrentDirectory(), commonDir, host.getCanonicalFileName);
|
|
18981
|
+
if (comparePaths(sourceFile.fileName, outputPath, host.getCurrentDirectory(), !host.useCaseSensitiveFileNames()) === 0 /* EqualTo */)
|
|
18982
|
+
return false;
|
|
18983
|
+
}
|
|
18984
|
+
return true;
|
|
18962
18985
|
}
|
|
18963
18986
|
function getSourceFilePathInNewDir(fileName, host, newDirPath) {
|
|
18964
18987
|
return getSourceFilePathInNewDirWorker(fileName, newDirPath, host.getCurrentDirectory(), host.getCommonSourceDirectory(), (f) => host.getCanonicalFileName(f));
|
|
@@ -67085,13 +67108,8 @@ function createTypeChecker(host) {
|
|
|
67085
67108
|
if (getObjectFlags(type) & 4 /* Reference */ && type.node) {
|
|
67086
67109
|
return type.node;
|
|
67087
67110
|
}
|
|
67088
|
-
if (type.symbol) {
|
|
67089
|
-
|
|
67090
|
-
type = getMappedTargetWithSymbol(type);
|
|
67091
|
-
}
|
|
67092
|
-
if (!(getObjectFlags(type) & 16 /* Anonymous */ && type.symbol.flags & 32 /* Class */)) {
|
|
67093
|
-
return type.symbol;
|
|
67094
|
-
}
|
|
67111
|
+
if (type.symbol && !(getObjectFlags(type) & 16 /* Anonymous */ && type.symbol.flags & 32 /* Class */)) {
|
|
67112
|
+
return type.symbol;
|
|
67095
67113
|
}
|
|
67096
67114
|
if (isTupleType(type)) {
|
|
67097
67115
|
return type.target;
|
|
@@ -67111,13 +67129,6 @@ function createTypeChecker(host) {
|
|
|
67111
67129
|
}
|
|
67112
67130
|
return type;
|
|
67113
67131
|
}
|
|
67114
|
-
function getMappedTargetWithSymbol(type) {
|
|
67115
|
-
let target = type;
|
|
67116
|
-
while ((getObjectFlags(target) & 96 /* InstantiatedMapped */) === 96 /* InstantiatedMapped */ && isMappedTypeWithKeyofConstraintDeclaration(target)) {
|
|
67117
|
-
target = getModifiersTypeFromMappedType(target);
|
|
67118
|
-
}
|
|
67119
|
-
return target.symbol ? target : type;
|
|
67120
|
-
}
|
|
67121
67132
|
function isPropertyIdenticalTo(sourceProp, targetProp) {
|
|
67122
67133
|
return compareProperties2(sourceProp, targetProp, compareTypesIdentical) !== 0 /* False */;
|
|
67123
67134
|
}
|
|
@@ -161143,10 +161154,10 @@ function getSupportedExtensionsForModuleResolution(compilerOptions, typeChecker)
|
|
|
161143
161154
|
return moduleResolutionUsesNodeModules(moduleResolution) ? getSupportedExtensionsWithJsonIfResolveJsonModule(compilerOptions, extensions) : extensions;
|
|
161144
161155
|
}
|
|
161145
161156
|
function getBaseDirectoriesFromRootDirs(rootDirs, basePath, scriptDirectory, ignoreCase) {
|
|
161146
|
-
rootDirs = rootDirs.map((rootDirectory) => normalizePath(isRootedDiskPath(rootDirectory) ? rootDirectory : combinePaths(basePath, rootDirectory)));
|
|
161157
|
+
rootDirs = rootDirs.map((rootDirectory) => ensureTrailingDirectorySeparator(normalizePath(isRootedDiskPath(rootDirectory) ? rootDirectory : combinePaths(basePath, rootDirectory))));
|
|
161147
161158
|
const relativeDirectory = firstDefined(rootDirs, (rootDirectory) => containsPath(rootDirectory, scriptDirectory, basePath, ignoreCase) ? scriptDirectory.substr(rootDirectory.length) : void 0);
|
|
161148
161159
|
return deduplicate(
|
|
161149
|
-
[...rootDirs.map((rootDirectory) => combinePaths(rootDirectory, relativeDirectory)), scriptDirectory],
|
|
161160
|
+
[...rootDirs.map((rootDirectory) => combinePaths(rootDirectory, relativeDirectory)), scriptDirectory].map((baseDir) => removeTrailingDirectorySeparator(baseDir)),
|
|
161150
161161
|
equateStringsCaseSensitive,
|
|
161151
161162
|
compareStringsCaseSensitive
|
|
161152
161163
|
);
|
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.3";
|
|
38
|
-
version = `${versionMajorMinor}.0-insiders.
|
|
38
|
+
version = `${versionMajorMinor}.0-insiders.20230911`;
|
|
39
39
|
Comparison = /* @__PURE__ */ ((Comparison3) => {
|
|
40
40
|
Comparison3[Comparison3["LessThan"] = -1] = "LessThan";
|
|
41
41
|
Comparison3[Comparison3["EqualTo"] = 0] = "EqualTo";
|
|
@@ -4461,7 +4461,6 @@ ${lanes.join("\n")}
|
|
|
4461
4461
|
ObjectFlags3[ObjectFlags3["ClassOrInterface"] = 3] = "ClassOrInterface";
|
|
4462
4462
|
ObjectFlags3[ObjectFlags3["RequiresWidening"] = 196608] = "RequiresWidening";
|
|
4463
4463
|
ObjectFlags3[ObjectFlags3["PropagatingFlags"] = 458752] = "PropagatingFlags";
|
|
4464
|
-
ObjectFlags3[ObjectFlags3["InstantiatedMapped"] = 96] = "InstantiatedMapped";
|
|
4465
4464
|
ObjectFlags3[ObjectFlags3["ObjectTypeKindMask"] = 1343] = "ObjectTypeKindMask";
|
|
4466
4465
|
ObjectFlags3[ObjectFlags3["ContainsSpread"] = 2097152] = "ContainsSpread";
|
|
4467
4466
|
ObjectFlags3[ObjectFlags3["ObjectRestType"] = 4194304] = "ObjectRestType";
|
|
@@ -16263,7 +16262,31 @@ ${lanes.join("\n")}
|
|
|
16263
16262
|
}
|
|
16264
16263
|
function sourceFileMayBeEmitted(sourceFile, host, forceDtsEmit) {
|
|
16265
16264
|
const options = host.getCompilerOptions();
|
|
16266
|
-
|
|
16265
|
+
if (options.noEmitForJsFiles && isSourceFileJS(sourceFile))
|
|
16266
|
+
return false;
|
|
16267
|
+
if (sourceFile.isDeclarationFile)
|
|
16268
|
+
return false;
|
|
16269
|
+
if (host.isSourceFileFromExternalLibrary(sourceFile))
|
|
16270
|
+
return false;
|
|
16271
|
+
if (forceDtsEmit)
|
|
16272
|
+
return true;
|
|
16273
|
+
if (host.isSourceOfProjectReferenceRedirect(sourceFile.fileName))
|
|
16274
|
+
return false;
|
|
16275
|
+
if (!isJsonSourceFile(sourceFile))
|
|
16276
|
+
return true;
|
|
16277
|
+
if (host.getResolvedProjectReferenceToRedirect(sourceFile.fileName))
|
|
16278
|
+
return false;
|
|
16279
|
+
if (outFile(options))
|
|
16280
|
+
return true;
|
|
16281
|
+
if (!options.outDir)
|
|
16282
|
+
return false;
|
|
16283
|
+
if (options.rootDir || options.composite && options.configFilePath) {
|
|
16284
|
+
const commonDir = getNormalizedAbsolutePath(getCommonSourceDirectory(options, () => [], host.getCurrentDirectory(), host.getCanonicalFileName), host.getCurrentDirectory());
|
|
16285
|
+
const outputPath = getSourceFilePathInNewDirWorker(sourceFile.fileName, options.outDir, host.getCurrentDirectory(), commonDir, host.getCanonicalFileName);
|
|
16286
|
+
if (comparePaths(sourceFile.fileName, outputPath, host.getCurrentDirectory(), !host.useCaseSensitiveFileNames()) === 0 /* EqualTo */)
|
|
16287
|
+
return false;
|
|
16288
|
+
}
|
|
16289
|
+
return true;
|
|
16267
16290
|
}
|
|
16268
16291
|
function getSourceFilePathInNewDir(fileName, host, newDirPath) {
|
|
16269
16292
|
return getSourceFilePathInNewDirWorker(fileName, newDirPath, host.getCurrentDirectory(), host.getCommonSourceDirectory(), (f) => host.getCanonicalFileName(f));
|
|
@@ -64852,13 +64875,8 @@ ${lanes.join("\n")}
|
|
|
64852
64875
|
if (getObjectFlags(type) & 4 /* Reference */ && type.node) {
|
|
64853
64876
|
return type.node;
|
|
64854
64877
|
}
|
|
64855
|
-
if (type.symbol) {
|
|
64856
|
-
|
|
64857
|
-
type = getMappedTargetWithSymbol(type);
|
|
64858
|
-
}
|
|
64859
|
-
if (!(getObjectFlags(type) & 16 /* Anonymous */ && type.symbol.flags & 32 /* Class */)) {
|
|
64860
|
-
return type.symbol;
|
|
64861
|
-
}
|
|
64878
|
+
if (type.symbol && !(getObjectFlags(type) & 16 /* Anonymous */ && type.symbol.flags & 32 /* Class */)) {
|
|
64879
|
+
return type.symbol;
|
|
64862
64880
|
}
|
|
64863
64881
|
if (isTupleType(type)) {
|
|
64864
64882
|
return type.target;
|
|
@@ -64878,13 +64896,6 @@ ${lanes.join("\n")}
|
|
|
64878
64896
|
}
|
|
64879
64897
|
return type;
|
|
64880
64898
|
}
|
|
64881
|
-
function getMappedTargetWithSymbol(type) {
|
|
64882
|
-
let target = type;
|
|
64883
|
-
while ((getObjectFlags(target) & 96 /* InstantiatedMapped */) === 96 /* InstantiatedMapped */ && isMappedTypeWithKeyofConstraintDeclaration(target)) {
|
|
64884
|
-
target = getModifiersTypeFromMappedType(target);
|
|
64885
|
-
}
|
|
64886
|
-
return target.symbol ? target : type;
|
|
64887
|
-
}
|
|
64888
64899
|
function isPropertyIdenticalTo(sourceProp, targetProp) {
|
|
64889
64900
|
return compareProperties2(sourceProp, targetProp, compareTypesIdentical) !== 0 /* False */;
|
|
64890
64901
|
}
|
|
@@ -160419,10 +160430,10 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
160419
160430
|
return moduleResolutionUsesNodeModules(moduleResolution) ? getSupportedExtensionsWithJsonIfResolveJsonModule(compilerOptions, extensions) : extensions;
|
|
160420
160431
|
}
|
|
160421
160432
|
function getBaseDirectoriesFromRootDirs(rootDirs, basePath, scriptDirectory, ignoreCase) {
|
|
160422
|
-
rootDirs = rootDirs.map((rootDirectory) => normalizePath(isRootedDiskPath(rootDirectory) ? rootDirectory : combinePaths(basePath, rootDirectory)));
|
|
160433
|
+
rootDirs = rootDirs.map((rootDirectory) => ensureTrailingDirectorySeparator(normalizePath(isRootedDiskPath(rootDirectory) ? rootDirectory : combinePaths(basePath, rootDirectory))));
|
|
160423
160434
|
const relativeDirectory = firstDefined(rootDirs, (rootDirectory) => containsPath(rootDirectory, scriptDirectory, basePath, ignoreCase) ? scriptDirectory.substr(rootDirectory.length) : void 0);
|
|
160424
160435
|
return deduplicate(
|
|
160425
|
-
[...rootDirs.map((rootDirectory) => combinePaths(rootDirectory, relativeDirectory)), scriptDirectory],
|
|
160436
|
+
[...rootDirs.map((rootDirectory) => combinePaths(rootDirectory, relativeDirectory)), scriptDirectory].map((baseDir) => removeTrailingDirectorySeparator(baseDir)),
|
|
160426
160437
|
equateStringsCaseSensitive,
|
|
160427
160438
|
compareStringsCaseSensitive
|
|
160428
160439
|
);
|
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.3";
|
|
57
|
-
var version = `${versionMajorMinor}.0-insiders.
|
|
57
|
+
var version = `${versionMajorMinor}.0-insiders.20230911`;
|
|
58
58
|
|
|
59
59
|
// src/compiler/core.ts
|
|
60
60
|
var emptyArray = [];
|
|
@@ -3138,7 +3138,6 @@ var ObjectFlags = /* @__PURE__ */ ((ObjectFlags3) => {
|
|
|
3138
3138
|
ObjectFlags3[ObjectFlags3["ClassOrInterface"] = 3] = "ClassOrInterface";
|
|
3139
3139
|
ObjectFlags3[ObjectFlags3["RequiresWidening"] = 196608] = "RequiresWidening";
|
|
3140
3140
|
ObjectFlags3[ObjectFlags3["PropagatingFlags"] = 458752] = "PropagatingFlags";
|
|
3141
|
-
ObjectFlags3[ObjectFlags3["InstantiatedMapped"] = 96] = "InstantiatedMapped";
|
|
3142
3141
|
ObjectFlags3[ObjectFlags3["ObjectTypeKindMask"] = 1343] = "ObjectTypeKindMask";
|
|
3143
3142
|
ObjectFlags3[ObjectFlags3["ContainsSpread"] = 2097152] = "ContainsSpread";
|
|
3144
3143
|
ObjectFlags3[ObjectFlags3["ObjectRestType"] = 4194304] = "ObjectRestType";
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@typescript-deploys/pr-build",
|
|
3
3
|
"author": "Microsoft Corp.",
|
|
4
4
|
"homepage": "https://www.typescriptlang.org/",
|
|
5
|
-
"version": "5.3.0-pr-
|
|
5
|
+
"version": "5.3.0-pr-55714-7",
|
|
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": "d1add8a7d0a772897a49938cd3ce8e5ee1361773"
|
|
117
117
|
}
|