typescript 5.6.0-dev.20240812 → 5.6.0-dev.20240813
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 +30 -18
- package/lib/tsserver.js +2 -2
- package/lib/typescript.js +33 -20
- package/lib/typingsInstaller.js +1 -1
- package/package.json +13 -12
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.6";
|
|
21
|
-
var version = `${versionMajorMinor}.0-dev.
|
|
21
|
+
var version = `${versionMajorMinor}.0-dev.20240813`;
|
|
22
22
|
|
|
23
23
|
// src/compiler/core.ts
|
|
24
24
|
var emptyArray = [];
|
|
@@ -5109,7 +5109,7 @@ var sys = (() => {
|
|
|
5109
5109
|
let buffer;
|
|
5110
5110
|
try {
|
|
5111
5111
|
buffer = _fs.readFileSync(fileName);
|
|
5112
|
-
} catch
|
|
5112
|
+
} catch {
|
|
5113
5113
|
return void 0;
|
|
5114
5114
|
}
|
|
5115
5115
|
let len = buffer.length;
|
|
@@ -5168,7 +5168,7 @@ var sys = (() => {
|
|
|
5168
5168
|
if (!stat) {
|
|
5169
5169
|
continue;
|
|
5170
5170
|
}
|
|
5171
|
-
} catch
|
|
5171
|
+
} catch {
|
|
5172
5172
|
continue;
|
|
5173
5173
|
}
|
|
5174
5174
|
} else {
|
|
@@ -5183,7 +5183,7 @@ var sys = (() => {
|
|
|
5183
5183
|
files.sort();
|
|
5184
5184
|
directories.sort();
|
|
5185
5185
|
return { files, directories };
|
|
5186
|
-
} catch
|
|
5186
|
+
} catch {
|
|
5187
5187
|
return emptyFileSystemEntries;
|
|
5188
5188
|
}
|
|
5189
5189
|
}
|
|
@@ -5206,7 +5206,7 @@ var sys = (() => {
|
|
|
5206
5206
|
default:
|
|
5207
5207
|
return false;
|
|
5208
5208
|
}
|
|
5209
|
-
} catch
|
|
5209
|
+
} catch {
|
|
5210
5210
|
return false;
|
|
5211
5211
|
} finally {
|
|
5212
5212
|
Error.stackTraceLimit = originalStackTraceLimit;
|
|
@@ -5237,7 +5237,7 @@ var sys = (() => {
|
|
|
5237
5237
|
Error.stackTraceLimit = 0;
|
|
5238
5238
|
try {
|
|
5239
5239
|
return (_a = statSync(path)) == null ? void 0 : _a.mtime;
|
|
5240
|
-
} catch
|
|
5240
|
+
} catch {
|
|
5241
5241
|
return void 0;
|
|
5242
5242
|
} finally {
|
|
5243
5243
|
Error.stackTraceLimit = originalStackTraceLimit;
|
|
@@ -5246,14 +5246,14 @@ var sys = (() => {
|
|
|
5246
5246
|
function setModifiedTime(path, time) {
|
|
5247
5247
|
try {
|
|
5248
5248
|
_fs.utimesSync(path, time, time);
|
|
5249
|
-
} catch
|
|
5249
|
+
} catch {
|
|
5250
5250
|
return;
|
|
5251
5251
|
}
|
|
5252
5252
|
}
|
|
5253
5253
|
function deleteFile(path) {
|
|
5254
5254
|
try {
|
|
5255
5255
|
return _fs.unlinkSync(path);
|
|
5256
|
-
} catch
|
|
5256
|
+
} catch {
|
|
5257
5257
|
return;
|
|
5258
5258
|
}
|
|
5259
5259
|
}
|
|
@@ -11218,7 +11218,7 @@ function validateLocaleAndSetLanguage(locale, sys2, errors) {
|
|
|
11218
11218
|
let fileContents = "";
|
|
11219
11219
|
try {
|
|
11220
11220
|
fileContents = sys2.readFile(filePath);
|
|
11221
|
-
} catch
|
|
11221
|
+
} catch {
|
|
11222
11222
|
if (errors2) {
|
|
11223
11223
|
errors2.push(createCompilerDiagnostic(Diagnostics.Unable_to_open_file_0, filePath));
|
|
11224
11224
|
}
|
|
@@ -42682,6 +42682,8 @@ function createBinder() {
|
|
|
42682
42682
|
}
|
|
42683
42683
|
function bindJSDocImportTag(node) {
|
|
42684
42684
|
bind(node.tagName);
|
|
42685
|
+
bind(node.moduleSpecifier);
|
|
42686
|
+
bind(node.attributes);
|
|
42685
42687
|
if (typeof node.comment !== "string") {
|
|
42686
42688
|
bindEach(node.comment);
|
|
42687
42689
|
}
|
|
@@ -51650,7 +51652,7 @@ function createTypeChecker(host) {
|
|
|
51650
51652
|
}
|
|
51651
51653
|
function serializeTypeForDeclaration(context, declaration, type, symbol) {
|
|
51652
51654
|
var _a, _b;
|
|
51653
|
-
const addUndefinedForParameter = declaration && (isParameter(declaration) || isJSDocParameterTag(declaration)) && requiresAddingImplicitUndefined(declaration);
|
|
51655
|
+
const addUndefinedForParameter = declaration && (isParameter(declaration) || isJSDocParameterTag(declaration)) && requiresAddingImplicitUndefined(declaration, context.enclosingDeclaration);
|
|
51654
51656
|
const enclosingDeclaration = context.enclosingDeclaration;
|
|
51655
51657
|
const restoreFlags = saveRestoreFlags(context);
|
|
51656
51658
|
if (declaration && hasInferredType(declaration) && !(context.internalFlags & 2 /* NoSyntacticPrinter */)) {
|
|
@@ -85791,11 +85793,17 @@ function createTypeChecker(host) {
|
|
|
85791
85793
|
const type = getTypeFromTypeNode(typeNode);
|
|
85792
85794
|
return containsUndefinedType(type);
|
|
85793
85795
|
}
|
|
85794
|
-
function requiresAddingImplicitUndefined(parameter) {
|
|
85795
|
-
return (isRequiredInitializedParameter(parameter) || isOptionalUninitializedParameterProperty(parameter)) && !declaredParameterTypeContainsUndefined(parameter);
|
|
85796
|
+
function requiresAddingImplicitUndefined(parameter, enclosingDeclaration) {
|
|
85797
|
+
return (isRequiredInitializedParameter(parameter, enclosingDeclaration) || isOptionalUninitializedParameterProperty(parameter)) && !declaredParameterTypeContainsUndefined(parameter);
|
|
85796
85798
|
}
|
|
85797
|
-
function isRequiredInitializedParameter(parameter) {
|
|
85798
|
-
|
|
85799
|
+
function isRequiredInitializedParameter(parameter, enclosingDeclaration) {
|
|
85800
|
+
if (!strictNullChecks || isOptionalParameter(parameter) || isJSDocParameterTag(parameter) || !parameter.initializer) {
|
|
85801
|
+
return false;
|
|
85802
|
+
}
|
|
85803
|
+
if (hasSyntacticModifier(parameter, 31 /* ParameterPropertyModifier */)) {
|
|
85804
|
+
return !!enclosingDeclaration && isFunctionLikeDeclaration(enclosingDeclaration);
|
|
85805
|
+
}
|
|
85806
|
+
return true;
|
|
85799
85807
|
}
|
|
85800
85808
|
function isOptionalUninitializedParameterProperty(parameter) {
|
|
85801
85809
|
return strictNullChecks && isOptionalParameter(parameter) && (isJSDocParameterTag(parameter) || !parameter.initializer) && hasSyntacticModifier(parameter, 31 /* ParameterPropertyModifier */);
|
|
@@ -111417,7 +111425,11 @@ function createGetIsolatedDeclarationErrors(resolver) {
|
|
|
111417
111425
|
if (isSetAccessor(node.parent)) {
|
|
111418
111426
|
return createAccessorTypeError(node.parent);
|
|
111419
111427
|
}
|
|
111420
|
-
const addUndefined = resolver.requiresAddingImplicitUndefined(
|
|
111428
|
+
const addUndefined = resolver.requiresAddingImplicitUndefined(
|
|
111429
|
+
node,
|
|
111430
|
+
/*enclosingDeclaration*/
|
|
111431
|
+
void 0
|
|
111432
|
+
);
|
|
111421
111433
|
if (!addUndefined && node.initializer) {
|
|
111422
111434
|
return createExpressionError(node.initializer);
|
|
111423
111435
|
}
|
|
@@ -111893,7 +111905,7 @@ function transformDeclarations(context) {
|
|
|
111893
111905
|
if (shouldPrintWithInitializer(node)) {
|
|
111894
111906
|
return;
|
|
111895
111907
|
}
|
|
111896
|
-
const shouldAddImplicitUndefined = node.kind === 169 /* Parameter */ && resolver.requiresAddingImplicitUndefined(node);
|
|
111908
|
+
const shouldAddImplicitUndefined = node.kind === 169 /* Parameter */ && resolver.requiresAddingImplicitUndefined(node, enclosingDeclaration);
|
|
111897
111909
|
if (type && !shouldAddImplicitUndefined) {
|
|
111898
111910
|
return visitNode(type, visitDeclarationSubtree, isTypeNode);
|
|
111899
111911
|
}
|
|
@@ -118607,7 +118619,7 @@ function createCachedDirectoryStructureHost(host, currentDirectory, useCaseSensi
|
|
|
118607
118619
|
}
|
|
118608
118620
|
try {
|
|
118609
118621
|
return createCachedFileSystemEntries(rootDir, rootDirPath);
|
|
118610
|
-
} catch
|
|
118622
|
+
} catch {
|
|
118611
118623
|
Debug.assert(!cachedReadDirectoryResult.has(ensureTrailingDirectorySeparator(rootDirPath)));
|
|
118612
118624
|
return void 0;
|
|
118613
118625
|
}
|
|
@@ -130355,7 +130367,7 @@ function createSyntacticTypeNodeBuilder(options, resolver) {
|
|
|
130355
130367
|
return typeFromAccessor(parent, context);
|
|
130356
130368
|
}
|
|
130357
130369
|
const declaredType = getEffectiveTypeAnnotationNode(node);
|
|
130358
|
-
const addUndefined = resolver.requiresAddingImplicitUndefined(node);
|
|
130370
|
+
const addUndefined = resolver.requiresAddingImplicitUndefined(node, context.enclosingDeclaration);
|
|
130359
130371
|
let resultType;
|
|
130360
130372
|
if (declaredType) {
|
|
130361
130373
|
resultType = serializeExistingTypeAnnotation(declaredType, addUndefined);
|
package/lib/tsserver.js
CHANGED
|
@@ -139,7 +139,7 @@ function initializeNodeSystem() {
|
|
|
139
139
|
if (this.logFilename) {
|
|
140
140
|
try {
|
|
141
141
|
this.fd = import_fs.default.openSync(this.logFilename, "w");
|
|
142
|
-
} catch
|
|
142
|
+
} catch {
|
|
143
143
|
}
|
|
144
144
|
}
|
|
145
145
|
}
|
|
@@ -287,7 +287,7 @@ function initializeNodeSystem() {
|
|
|
287
287
|
try {
|
|
288
288
|
const factory = require("./cancellationToken.js");
|
|
289
289
|
cancellationToken = factory(sys4.args);
|
|
290
|
-
} catch
|
|
290
|
+
} catch {
|
|
291
291
|
cancellationToken = typescript_exports.server.nullCancellationToken;
|
|
292
292
|
}
|
|
293
293
|
const localeStr = typescript_exports.server.findArgument("--locale");
|
package/lib/typescript.js
CHANGED
|
@@ -2262,7 +2262,7 @@ module.exports = __toCommonJS(typescript_exports);
|
|
|
2262
2262
|
|
|
2263
2263
|
// src/compiler/corePublic.ts
|
|
2264
2264
|
var versionMajorMinor = "5.6";
|
|
2265
|
-
var version = `${versionMajorMinor}.0-dev.
|
|
2265
|
+
var version = `${versionMajorMinor}.0-dev.20240813`;
|
|
2266
2266
|
var Comparison = /* @__PURE__ */ ((Comparison3) => {
|
|
2267
2267
|
Comparison3[Comparison3["LessThan"] = -1] = "LessThan";
|
|
2268
2268
|
Comparison3[Comparison3["EqualTo"] = 0] = "EqualTo";
|
|
@@ -8494,7 +8494,7 @@ var sys = (() => {
|
|
|
8494
8494
|
let buffer;
|
|
8495
8495
|
try {
|
|
8496
8496
|
buffer = _fs.readFileSync(fileName);
|
|
8497
|
-
} catch
|
|
8497
|
+
} catch {
|
|
8498
8498
|
return void 0;
|
|
8499
8499
|
}
|
|
8500
8500
|
let len = buffer.length;
|
|
@@ -8553,7 +8553,7 @@ var sys = (() => {
|
|
|
8553
8553
|
if (!stat) {
|
|
8554
8554
|
continue;
|
|
8555
8555
|
}
|
|
8556
|
-
} catch
|
|
8556
|
+
} catch {
|
|
8557
8557
|
continue;
|
|
8558
8558
|
}
|
|
8559
8559
|
} else {
|
|
@@ -8568,7 +8568,7 @@ var sys = (() => {
|
|
|
8568
8568
|
files.sort();
|
|
8569
8569
|
directories.sort();
|
|
8570
8570
|
return { files, directories };
|
|
8571
|
-
} catch
|
|
8571
|
+
} catch {
|
|
8572
8572
|
return emptyFileSystemEntries;
|
|
8573
8573
|
}
|
|
8574
8574
|
}
|
|
@@ -8591,7 +8591,7 @@ var sys = (() => {
|
|
|
8591
8591
|
default:
|
|
8592
8592
|
return false;
|
|
8593
8593
|
}
|
|
8594
|
-
} catch
|
|
8594
|
+
} catch {
|
|
8595
8595
|
return false;
|
|
8596
8596
|
} finally {
|
|
8597
8597
|
Error.stackTraceLimit = originalStackTraceLimit;
|
|
@@ -8622,7 +8622,7 @@ var sys = (() => {
|
|
|
8622
8622
|
Error.stackTraceLimit = 0;
|
|
8623
8623
|
try {
|
|
8624
8624
|
return (_a = statSync(path)) == null ? void 0 : _a.mtime;
|
|
8625
|
-
} catch
|
|
8625
|
+
} catch {
|
|
8626
8626
|
return void 0;
|
|
8627
8627
|
} finally {
|
|
8628
8628
|
Error.stackTraceLimit = originalStackTraceLimit;
|
|
@@ -8631,14 +8631,14 @@ var sys = (() => {
|
|
|
8631
8631
|
function setModifiedTime(path, time) {
|
|
8632
8632
|
try {
|
|
8633
8633
|
_fs.utimesSync(path, time, time);
|
|
8634
|
-
} catch
|
|
8634
|
+
} catch {
|
|
8635
8635
|
return;
|
|
8636
8636
|
}
|
|
8637
8637
|
}
|
|
8638
8638
|
function deleteFile(path) {
|
|
8639
8639
|
try {
|
|
8640
8640
|
return _fs.unlinkSync(path);
|
|
8641
|
-
} catch
|
|
8641
|
+
} catch {
|
|
8642
8642
|
return;
|
|
8643
8643
|
}
|
|
8644
8644
|
}
|
|
@@ -14750,7 +14750,7 @@ function validateLocaleAndSetLanguage(locale, sys2, errors) {
|
|
|
14750
14750
|
let fileContents = "";
|
|
14751
14751
|
try {
|
|
14752
14752
|
fileContents = sys2.readFile(filePath);
|
|
14753
|
-
} catch
|
|
14753
|
+
} catch {
|
|
14754
14754
|
if (errors2) {
|
|
14755
14755
|
errors2.push(createCompilerDiagnostic(Diagnostics.Unable_to_open_file_0, filePath));
|
|
14756
14756
|
}
|
|
@@ -47201,6 +47201,8 @@ function createBinder() {
|
|
|
47201
47201
|
}
|
|
47202
47202
|
function bindJSDocImportTag(node) {
|
|
47203
47203
|
bind(node.tagName);
|
|
47204
|
+
bind(node.moduleSpecifier);
|
|
47205
|
+
bind(node.attributes);
|
|
47204
47206
|
if (typeof node.comment !== "string") {
|
|
47205
47207
|
bindEach(node.comment);
|
|
47206
47208
|
}
|
|
@@ -56269,7 +56271,7 @@ function createTypeChecker(host) {
|
|
|
56269
56271
|
}
|
|
56270
56272
|
function serializeTypeForDeclaration(context, declaration, type, symbol) {
|
|
56271
56273
|
var _a, _b;
|
|
56272
|
-
const addUndefinedForParameter = declaration && (isParameter(declaration) || isJSDocParameterTag(declaration)) && requiresAddingImplicitUndefined(declaration);
|
|
56274
|
+
const addUndefinedForParameter = declaration && (isParameter(declaration) || isJSDocParameterTag(declaration)) && requiresAddingImplicitUndefined(declaration, context.enclosingDeclaration);
|
|
56273
56275
|
const enclosingDeclaration = context.enclosingDeclaration;
|
|
56274
56276
|
const restoreFlags = saveRestoreFlags(context);
|
|
56275
56277
|
if (declaration && hasInferredType(declaration) && !(context.internalFlags & 2 /* NoSyntacticPrinter */)) {
|
|
@@ -90410,11 +90412,17 @@ function createTypeChecker(host) {
|
|
|
90410
90412
|
const type = getTypeFromTypeNode(typeNode);
|
|
90411
90413
|
return containsUndefinedType(type);
|
|
90412
90414
|
}
|
|
90413
|
-
function requiresAddingImplicitUndefined(parameter) {
|
|
90414
|
-
return (isRequiredInitializedParameter(parameter) || isOptionalUninitializedParameterProperty(parameter)) && !declaredParameterTypeContainsUndefined(parameter);
|
|
90415
|
+
function requiresAddingImplicitUndefined(parameter, enclosingDeclaration) {
|
|
90416
|
+
return (isRequiredInitializedParameter(parameter, enclosingDeclaration) || isOptionalUninitializedParameterProperty(parameter)) && !declaredParameterTypeContainsUndefined(parameter);
|
|
90415
90417
|
}
|
|
90416
|
-
function isRequiredInitializedParameter(parameter) {
|
|
90417
|
-
|
|
90418
|
+
function isRequiredInitializedParameter(parameter, enclosingDeclaration) {
|
|
90419
|
+
if (!strictNullChecks || isOptionalParameter(parameter) || isJSDocParameterTag(parameter) || !parameter.initializer) {
|
|
90420
|
+
return false;
|
|
90421
|
+
}
|
|
90422
|
+
if (hasSyntacticModifier(parameter, 31 /* ParameterPropertyModifier */)) {
|
|
90423
|
+
return !!enclosingDeclaration && isFunctionLikeDeclaration(enclosingDeclaration);
|
|
90424
|
+
}
|
|
90425
|
+
return true;
|
|
90418
90426
|
}
|
|
90419
90427
|
function isOptionalUninitializedParameterProperty(parameter) {
|
|
90420
90428
|
return strictNullChecks && isOptionalParameter(parameter) && (isJSDocParameterTag(parameter) || !parameter.initializer) && hasSyntacticModifier(parameter, 31 /* ParameterPropertyModifier */);
|
|
@@ -116218,7 +116226,11 @@ function createGetIsolatedDeclarationErrors(resolver) {
|
|
|
116218
116226
|
if (isSetAccessor(node.parent)) {
|
|
116219
116227
|
return createAccessorTypeError(node.parent);
|
|
116220
116228
|
}
|
|
116221
|
-
const addUndefined = resolver.requiresAddingImplicitUndefined(
|
|
116229
|
+
const addUndefined = resolver.requiresAddingImplicitUndefined(
|
|
116230
|
+
node,
|
|
116231
|
+
/*enclosingDeclaration*/
|
|
116232
|
+
void 0
|
|
116233
|
+
);
|
|
116222
116234
|
if (!addUndefined && node.initializer) {
|
|
116223
116235
|
return createExpressionError(node.initializer);
|
|
116224
116236
|
}
|
|
@@ -116694,7 +116706,7 @@ function transformDeclarations(context) {
|
|
|
116694
116706
|
if (shouldPrintWithInitializer(node)) {
|
|
116695
116707
|
return;
|
|
116696
116708
|
}
|
|
116697
|
-
const shouldAddImplicitUndefined = node.kind === 169 /* Parameter */ && resolver.requiresAddingImplicitUndefined(node);
|
|
116709
|
+
const shouldAddImplicitUndefined = node.kind === 169 /* Parameter */ && resolver.requiresAddingImplicitUndefined(node, enclosingDeclaration);
|
|
116698
116710
|
if (type && !shouldAddImplicitUndefined) {
|
|
116699
116711
|
return visitNode(type, visitDeclarationSubtree, isTypeNode);
|
|
116700
116712
|
}
|
|
@@ -123419,7 +123431,7 @@ function createCachedDirectoryStructureHost(host, currentDirectory, useCaseSensi
|
|
|
123419
123431
|
}
|
|
123420
123432
|
try {
|
|
123421
123433
|
return createCachedFileSystemEntries(rootDir, rootDirPath);
|
|
123422
|
-
} catch
|
|
123434
|
+
} catch {
|
|
123423
123435
|
Debug.assert(!cachedReadDirectoryResult.has(ensureTrailingDirectorySeparator(rootDirPath)));
|
|
123424
123436
|
return void 0;
|
|
123425
123437
|
}
|
|
@@ -135330,7 +135342,7 @@ function createSyntacticTypeNodeBuilder(options, resolver) {
|
|
|
135330
135342
|
return typeFromAccessor(parent2, context);
|
|
135331
135343
|
}
|
|
135332
135344
|
const declaredType = getEffectiveTypeAnnotationNode(node);
|
|
135333
|
-
const addUndefined = resolver.requiresAddingImplicitUndefined(node);
|
|
135345
|
+
const addUndefined = resolver.requiresAddingImplicitUndefined(node, context.enclosingDeclaration);
|
|
135334
135346
|
let resultType;
|
|
135335
135347
|
if (declaredType) {
|
|
135336
135348
|
resultType = serializeExistingTypeAnnotation(declaredType, addUndefined);
|
|
@@ -160131,11 +160143,12 @@ function withContext(context, typePrintMode, cb) {
|
|
|
160131
160143
|
}
|
|
160132
160144
|
type = widenedType;
|
|
160133
160145
|
}
|
|
160134
|
-
|
|
160146
|
+
const enclosingDeclaration = findAncestor(node, isDeclaration) ?? sourceFile;
|
|
160147
|
+
if (isParameter(node) && typeChecker.requiresAddingImplicitUndefined(node, enclosingDeclaration)) {
|
|
160135
160148
|
type = typeChecker.getUnionType([typeChecker.getUndefinedType(), type], 0 /* None */);
|
|
160136
160149
|
}
|
|
160137
160150
|
return {
|
|
160138
|
-
typeNode: typeToTypeNode2(type,
|
|
160151
|
+
typeNode: typeToTypeNode2(type, enclosingDeclaration, getFlags(type)),
|
|
160139
160152
|
mutatedTarget: false
|
|
160140
160153
|
};
|
|
160141
160154
|
function getFlags(type2) {
|
package/lib/typingsInstaller.js
CHANGED
|
@@ -69,7 +69,7 @@ var FileLog = class {
|
|
|
69
69
|
if (typeof this.logFile !== "string") return;
|
|
70
70
|
try {
|
|
71
71
|
fs.appendFileSync(this.logFile, `[${typescript_exports.server.nowString()}] ${text}${typescript_exports.sys.newLine}`);
|
|
72
|
-
} catch
|
|
72
|
+
} catch {
|
|
73
73
|
this.logFile = void 0;
|
|
74
74
|
}
|
|
75
75
|
};
|
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.6.0-dev.
|
|
5
|
+
"version": "5.6.0-dev.20240813",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"description": "TypeScript is a language for application scale JavaScript development",
|
|
8
8
|
"keywords": [
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"@dprint/formatter": "^0.4.1",
|
|
43
43
|
"@dprint/typescript": "0.91.6",
|
|
44
44
|
"@esfx/canceltoken": "^1.0.0",
|
|
45
|
-
"@eslint/js": "^
|
|
45
|
+
"@eslint/js": "^9.9.0",
|
|
46
46
|
"@octokit/rest": "^21.0.1",
|
|
47
47
|
"@types/chai": "^4.3.17",
|
|
48
48
|
"@types/diff": "^5.2.1",
|
|
@@ -52,8 +52,9 @@
|
|
|
52
52
|
"@types/node": "latest",
|
|
53
53
|
"@types/source-map-support": "^0.5.10",
|
|
54
54
|
"@types/which": "^3.0.4",
|
|
55
|
-
"@typescript-eslint/
|
|
56
|
-
"
|
|
55
|
+
"@typescript-eslint/rule-tester": "^8.1.0",
|
|
56
|
+
"@typescript-eslint/utils": "^8.1.0",
|
|
57
|
+
"azure-devops-node-api": "^14.0.2",
|
|
57
58
|
"c8": "^10.1.2",
|
|
58
59
|
"chai": "^4.5.0",
|
|
59
60
|
"chalk": "^4.1.2",
|
|
@@ -61,25 +62,25 @@
|
|
|
61
62
|
"diff": "^5.2.0",
|
|
62
63
|
"dprint": "^0.47.2",
|
|
63
64
|
"esbuild": "^0.23.0",
|
|
64
|
-
"eslint": "^
|
|
65
|
-
"eslint-formatter-autolinkable-stylish": "^1.
|
|
65
|
+
"eslint": "^9.9.0",
|
|
66
|
+
"eslint-formatter-autolinkable-stylish": "^1.4.0",
|
|
66
67
|
"fast-xml-parser": "^4.4.1",
|
|
67
68
|
"glob": "^10.4.5",
|
|
68
69
|
"globals": "^15.9.0",
|
|
69
70
|
"hereby": "^1.9.0",
|
|
70
71
|
"jsonc-parser": "^3.3.1",
|
|
71
|
-
"knip": "^5.27.
|
|
72
|
+
"knip": "^5.27.2",
|
|
72
73
|
"minimist": "^1.2.8",
|
|
73
|
-
"mocha": "^10.7.
|
|
74
|
+
"mocha": "^10.7.3",
|
|
74
75
|
"mocha-fivemat-progress-reporter": "^0.1.0",
|
|
75
|
-
"monocart-coverage-reports": "^2.10.
|
|
76
|
+
"monocart-coverage-reports": "^2.10.2",
|
|
76
77
|
"ms": "^2.1.3",
|
|
77
78
|
"node-fetch": "^3.3.2",
|
|
78
|
-
"playwright": "^1.
|
|
79
|
+
"playwright": "^1.46.0",
|
|
79
80
|
"source-map-support": "^0.5.21",
|
|
80
81
|
"tslib": "^2.6.3",
|
|
81
82
|
"typescript": "^5.5.4",
|
|
82
|
-
"typescript-eslint": "^
|
|
83
|
+
"typescript-eslint": "^8.1.0",
|
|
83
84
|
"which": "^3.0.1"
|
|
84
85
|
},
|
|
85
86
|
"overrides": {
|
|
@@ -114,5 +115,5 @@
|
|
|
114
115
|
"node": "20.1.0",
|
|
115
116
|
"npm": "8.19.4"
|
|
116
117
|
},
|
|
117
|
-
"gitHead": "
|
|
118
|
+
"gitHead": "01a874a8baf6a5fc0c9b47d3902221311671b01c"
|
|
118
119
|
}
|