@ghettoddos/eslint-config 4.0.0 → 4.1.0
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/README.md +2 -3
- package/dist/index.d.mts +6301 -5395
- package/dist/index.mjs +213 -235
- package/dist/{lib-D6spnV0Z.mjs → lib-C63e_zBF.mjs} +631 -892
- package/package.json +80 -59
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
import Module, { createRequire } from "node:module";
|
|
2
|
-
|
|
3
|
-
//#region rolldown:runtime
|
|
2
|
+
//#region \0rolldown/runtime.js
|
|
4
3
|
var __commonJSMin = (cb, mod) => () => (mod || cb((mod = { exports: {} }).exports, mod), mod.exports);
|
|
5
4
|
var __require = /* @__PURE__ */ createRequire(import.meta.url);
|
|
6
|
-
|
|
7
5
|
//#endregion
|
|
8
6
|
//#region node_modules/.pnpm/eslint-visitor-keys@3.4.3/node_modules/eslint-visitor-keys/dist/eslint-visitor-keys.cjs
|
|
9
7
|
var require_eslint_visitor_keys$1 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
@@ -206,9 +204,8 @@ var require_eslint_visitor_keys$1 = /* @__PURE__ */ __commonJSMin(((exports) =>
|
|
|
206
204
|
exports.getKeys = getKeys;
|
|
207
205
|
exports.unionWith = unionWith;
|
|
208
206
|
}));
|
|
209
|
-
|
|
210
207
|
//#endregion
|
|
211
|
-
//#region node_modules/.pnpm/@eslint-community+eslint-utils@4.9.
|
|
208
|
+
//#region node_modules/.pnpm/@eslint-community+eslint-utils@4.9.1_eslint@10.0.3_jiti@2.6.1_/node_modules/@eslint-community/eslint-utils/index.js
|
|
212
209
|
var require_eslint_utils$2 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
213
210
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
214
211
|
var eslintVisitorKeys = require_eslint_visitor_keys$1();
|
|
@@ -247,16 +244,16 @@ var require_eslint_utils$2 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
247
244
|
* @returns {Variable|null} The found variable or null.
|
|
248
245
|
*/
|
|
249
246
|
function findVariable(initialScope, nameOrNode) {
|
|
250
|
-
let name
|
|
247
|
+
let name = "";
|
|
251
248
|
/** @type {Scope|null} */
|
|
252
249
|
let scope = initialScope;
|
|
253
|
-
if (typeof nameOrNode === "string") name
|
|
250
|
+
if (typeof nameOrNode === "string") name = nameOrNode;
|
|
254
251
|
else {
|
|
255
|
-
name
|
|
252
|
+
name = nameOrNode.name;
|
|
256
253
|
scope = getInnermostScope(scope, nameOrNode);
|
|
257
254
|
}
|
|
258
255
|
while (scope != null) {
|
|
259
|
-
const variable = scope.set.get(name
|
|
256
|
+
const variable = scope.set.get(name);
|
|
260
257
|
if (variable != null) return variable;
|
|
261
258
|
scope = scope.upper;
|
|
262
259
|
}
|
|
@@ -433,7 +430,7 @@ var require_eslint_utils$2 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
433
430
|
const arrowToken = sourceCode.getTokenBefore(node.body, isArrowToken);
|
|
434
431
|
start = arrowToken.loc.start;
|
|
435
432
|
end = arrowToken.loc.end;
|
|
436
|
-
} else if (parent.type === "Property" || parent.type === "MethodDefinition" || parent.type === "PropertyDefinition") {
|
|
433
|
+
} else if (parent && (parent.type === "Property" || parent.type === "MethodDefinition" || parent.type === "PropertyDefinition")) {
|
|
437
434
|
start = parent.loc.start;
|
|
438
435
|
end = getOpeningParenOfParams(node, sourceCode).loc.start;
|
|
439
436
|
} else {
|
|
@@ -627,10 +624,10 @@ var require_eslint_utils$2 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
627
624
|
* @param {object} object The object to get.
|
|
628
625
|
* @param {string|number|symbol} name The property name to get.
|
|
629
626
|
*/
|
|
630
|
-
function getPropertyDescriptor(object, name
|
|
627
|
+
function getPropertyDescriptor(object, name) {
|
|
631
628
|
let x = object;
|
|
632
629
|
while ((typeof x === "object" || typeof x === "function") && x !== null) {
|
|
633
|
-
const d = Object.getOwnPropertyDescriptor(x, name
|
|
630
|
+
const d = Object.getOwnPropertyDescriptor(x, name);
|
|
634
631
|
if (d) return d;
|
|
635
632
|
x = Object.getPrototypeOf(x);
|
|
636
633
|
}
|
|
@@ -641,8 +638,8 @@ var require_eslint_utils$2 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
641
638
|
* @param {object} object The object to check.
|
|
642
639
|
* @param {string|number|symbol} name The property name to check.
|
|
643
640
|
*/
|
|
644
|
-
function isGetter(object, name
|
|
645
|
-
const d = getPropertyDescriptor(object, name
|
|
641
|
+
function isGetter(object, name) {
|
|
642
|
+
const d = getPropertyDescriptor(object, name);
|
|
646
643
|
return d != null && d.get != null;
|
|
647
644
|
}
|
|
648
645
|
/**
|
|
@@ -722,8 +719,8 @@ var require_eslint_utils$2 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
722
719
|
*/
|
|
723
720
|
function isNameOfMutationArrayMethod(methodName) {
|
|
724
721
|
if (methodName == null || methodName.value == null) return false;
|
|
725
|
-
const name
|
|
726
|
-
return name
|
|
722
|
+
const name = methodName.value;
|
|
723
|
+
return name === "copyWithin" || name === "fill" || name === "pop" || name === "push" || name === "reverse" || name === "shift" || name === "sort" || name === "splice" || name === "unshift";
|
|
727
724
|
}
|
|
728
725
|
}
|
|
729
726
|
/**
|
|
@@ -1058,6 +1055,7 @@ var require_eslint_utils$2 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
1058
1055
|
*/
|
|
1059
1056
|
function getFunctionNameWithKind(node, sourceCode) {
|
|
1060
1057
|
const parent = node.parent;
|
|
1058
|
+
if (!parent) return "";
|
|
1061
1059
|
const tokens = [];
|
|
1062
1060
|
const isObjectMethod = parent.type === "Property" && parent.value === node;
|
|
1063
1061
|
const isClassMethod = parent.type === "MethodDefinition" && parent.value === node;
|
|
@@ -1080,8 +1078,8 @@ var require_eslint_utils$2 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
1080
1078
|
}
|
|
1081
1079
|
if (isObjectMethod || isClassMethod || isClassFieldMethod) if (parent.key.type === "PrivateIdentifier") tokens.push(`#${parent.key.name}`);
|
|
1082
1080
|
else {
|
|
1083
|
-
const name
|
|
1084
|
-
if (name
|
|
1081
|
+
const name = getPropertyName(parent);
|
|
1082
|
+
if (name) tokens.push(`'${name}'`);
|
|
1085
1083
|
else if (sourceCode) {
|
|
1086
1084
|
const keyText = sourceCode.getText(parent.key);
|
|
1087
1085
|
if (!keyText.includes("\n")) tokens.push(`[${keyText}]`);
|
|
@@ -1245,6 +1243,7 @@ var require_eslint_utils$2 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
1245
1243
|
*/
|
|
1246
1244
|
function getParentSyntaxParen(node, sourceCode) {
|
|
1247
1245
|
const parent = node.parent;
|
|
1246
|
+
if (!parent) return null;
|
|
1248
1247
|
switch (parent.type) {
|
|
1249
1248
|
case "CallExpression":
|
|
1250
1249
|
case "NewExpression":
|
|
@@ -1681,6 +1680,7 @@ var require_eslint_utils$2 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
1681
1680
|
let node = rootNode;
|
|
1682
1681
|
while (isPassThrough(node)) node = node.parent;
|
|
1683
1682
|
const parent = node.parent;
|
|
1683
|
+
if (!parent) return;
|
|
1684
1684
|
if (parent.type === "MemberExpression") {
|
|
1685
1685
|
if (parent.object === node) {
|
|
1686
1686
|
const key = getPropertyName(parent);
|
|
@@ -1821,8 +1821,8 @@ var require_eslint_utils$2 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
1821
1821
|
* @param {number} index The index of the name.
|
|
1822
1822
|
* @returns {boolean} `false` if it's default.
|
|
1823
1823
|
*/
|
|
1824
|
-
function exceptDefault(name
|
|
1825
|
-
return !(index === 1 && name
|
|
1824
|
+
function exceptDefault(name, index) {
|
|
1825
|
+
return !(index === 1 && name === "default");
|
|
1826
1826
|
}
|
|
1827
1827
|
/** @typedef {import("./types.mjs").StaticValue} StaticValue */
|
|
1828
1828
|
var index = {
|
|
@@ -1903,9 +1903,8 @@ var require_eslint_utils$2 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
1903
1903
|
exports.isParenthesized = isParenthesized;
|
|
1904
1904
|
exports.isSemicolonToken = isSemicolonToken;
|
|
1905
1905
|
}));
|
|
1906
|
-
|
|
1907
1906
|
//#endregion
|
|
1908
|
-
//#region node_modules/.pnpm/@typescript-eslint+utils@8.
|
|
1907
|
+
//#region node_modules/.pnpm/@typescript-eslint+utils@8.57.0_eslint@10.0.3_jiti@2.6.1__typescript@5.9.3/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/astUtilities.js
|
|
1909
1908
|
var require_astUtilities = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
1910
1909
|
var __createBinding = exports && exports.__createBinding || (Object.create ? (function(o, m, k, k2) {
|
|
1911
1910
|
if (k2 === void 0) k2 = k;
|
|
@@ -1931,9 +1930,9 @@ var require_astUtilities = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
1931
1930
|
});
|
|
1932
1931
|
var __importStar = exports && exports.__importStar || (function() {
|
|
1933
1932
|
var ownKeys = function(o) {
|
|
1934
|
-
ownKeys = Object.getOwnPropertyNames || function(o
|
|
1933
|
+
ownKeys = Object.getOwnPropertyNames || function(o) {
|
|
1935
1934
|
var ar = [];
|
|
1936
|
-
for (var k in o
|
|
1935
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
1937
1936
|
return ar;
|
|
1938
1937
|
};
|
|
1939
1938
|
return ownKeys(o);
|
|
@@ -2016,9 +2015,8 @@ var require_astUtilities = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2016
2015
|
exports.hasSideEffect = eslintUtils.hasSideEffect;
|
|
2017
2016
|
exports.isParenthesized = eslintUtils.isParenthesized;
|
|
2018
2017
|
}));
|
|
2019
|
-
|
|
2020
2018
|
//#endregion
|
|
2021
|
-
//#region node_modules/.pnpm/@typescript-eslint+utils@8.
|
|
2019
|
+
//#region node_modules/.pnpm/@typescript-eslint+utils@8.57.0_eslint@10.0.3_jiti@2.6.1__typescript@5.9.3/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/PatternMatcher.js
|
|
2022
2020
|
var require_PatternMatcher = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2023
2021
|
var __createBinding = exports && exports.__createBinding || (Object.create ? (function(o, m, k, k2) {
|
|
2024
2022
|
if (k2 === void 0) k2 = k;
|
|
@@ -2044,9 +2042,9 @@ var require_PatternMatcher = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2044
2042
|
});
|
|
2045
2043
|
var __importStar = exports && exports.__importStar || (function() {
|
|
2046
2044
|
var ownKeys = function(o) {
|
|
2047
|
-
ownKeys = Object.getOwnPropertyNames || function(o
|
|
2045
|
+
ownKeys = Object.getOwnPropertyNames || function(o) {
|
|
2048
2046
|
var ar = [];
|
|
2049
|
-
for (var k in o
|
|
2047
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
2050
2048
|
return ar;
|
|
2051
2049
|
};
|
|
2052
2050
|
return ownKeys(o);
|
|
@@ -2063,18 +2061,16 @@ var require_PatternMatcher = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2063
2061
|
})();
|
|
2064
2062
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2065
2063
|
exports.PatternMatcher = void 0;
|
|
2066
|
-
const eslintUtils = __importStar(require_eslint_utils$2());
|
|
2067
2064
|
/**
|
|
2068
2065
|
* The class to find a pattern in strings as handling escape sequences.
|
|
2069
2066
|
* It ignores the found pattern if it's escaped with `\`.
|
|
2070
2067
|
*
|
|
2071
2068
|
* @see {@link https://eslint-community.github.io/eslint-utils/api/ast-utils.html#patternmatcher-class}
|
|
2072
2069
|
*/
|
|
2073
|
-
exports.PatternMatcher =
|
|
2070
|
+
exports.PatternMatcher = __importStar(require_eslint_utils$2()).PatternMatcher;
|
|
2074
2071
|
}));
|
|
2075
|
-
|
|
2076
2072
|
//#endregion
|
|
2077
|
-
//#region node_modules/.pnpm/@typescript-eslint+utils@8.
|
|
2073
|
+
//#region node_modules/.pnpm/@typescript-eslint+utils@8.57.0_eslint@10.0.3_jiti@2.6.1__typescript@5.9.3/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/predicates.js
|
|
2078
2074
|
var require_predicates$1 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2079
2075
|
var __createBinding = exports && exports.__createBinding || (Object.create ? (function(o, m, k, k2) {
|
|
2080
2076
|
if (k2 === void 0) k2 = k;
|
|
@@ -2100,9 +2096,9 @@ var require_predicates$1 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2100
2096
|
});
|
|
2101
2097
|
var __importStar = exports && exports.__importStar || (function() {
|
|
2102
2098
|
var ownKeys = function(o) {
|
|
2103
|
-
ownKeys = Object.getOwnPropertyNames || function(o
|
|
2099
|
+
ownKeys = Object.getOwnPropertyNames || function(o) {
|
|
2104
2100
|
var ar = [];
|
|
2105
|
-
for (var k in o
|
|
2101
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
2106
2102
|
return ar;
|
|
2107
2103
|
};
|
|
2108
2104
|
return ownKeys(o);
|
|
@@ -2143,9 +2139,8 @@ var require_predicates$1 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2143
2139
|
exports.isSemicolonToken = eslintUtils.isSemicolonToken;
|
|
2144
2140
|
exports.isNotSemicolonToken = eslintUtils.isNotSemicolonToken;
|
|
2145
2141
|
}));
|
|
2146
|
-
|
|
2147
2142
|
//#endregion
|
|
2148
|
-
//#region node_modules/.pnpm/@typescript-eslint+utils@8.
|
|
2143
|
+
//#region node_modules/.pnpm/@typescript-eslint+utils@8.57.0_eslint@10.0.3_jiti@2.6.1__typescript@5.9.3/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/ReferenceTracker.js
|
|
2149
2144
|
var require_ReferenceTracker = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2150
2145
|
var __createBinding = exports && exports.__createBinding || (Object.create ? (function(o, m, k, k2) {
|
|
2151
2146
|
if (k2 === void 0) k2 = k;
|
|
@@ -2171,9 +2166,9 @@ var require_ReferenceTracker = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2171
2166
|
});
|
|
2172
2167
|
var __importStar = exports && exports.__importStar || (function() {
|
|
2173
2168
|
var ownKeys = function(o) {
|
|
2174
|
-
ownKeys = Object.getOwnPropertyNames || function(o
|
|
2169
|
+
ownKeys = Object.getOwnPropertyNames || function(o) {
|
|
2175
2170
|
var ar = [];
|
|
2176
|
-
for (var k in o
|
|
2171
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
2177
2172
|
return ar;
|
|
2178
2173
|
};
|
|
2179
2174
|
return ownKeys(o);
|
|
@@ -2202,9 +2197,8 @@ var require_ReferenceTracker = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2202
2197
|
*/
|
|
2203
2198
|
exports.ReferenceTracker = eslintUtils.ReferenceTracker;
|
|
2204
2199
|
}));
|
|
2205
|
-
|
|
2206
2200
|
//#endregion
|
|
2207
|
-
//#region node_modules/.pnpm/@typescript-eslint+utils@8.
|
|
2201
|
+
//#region node_modules/.pnpm/@typescript-eslint+utils@8.57.0_eslint@10.0.3_jiti@2.6.1__typescript@5.9.3/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/scopeAnalysis.js
|
|
2208
2202
|
var require_scopeAnalysis = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2209
2203
|
var __createBinding = exports && exports.__createBinding || (Object.create ? (function(o, m, k, k2) {
|
|
2210
2204
|
if (k2 === void 0) k2 = k;
|
|
@@ -2230,9 +2224,9 @@ var require_scopeAnalysis = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2230
2224
|
});
|
|
2231
2225
|
var __importStar = exports && exports.__importStar || (function() {
|
|
2232
2226
|
var ownKeys = function(o) {
|
|
2233
|
-
ownKeys = Object.getOwnPropertyNames || function(o
|
|
2227
|
+
ownKeys = Object.getOwnPropertyNames || function(o) {
|
|
2234
2228
|
var ar = [];
|
|
2235
|
-
for (var k in o
|
|
2229
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
2236
2230
|
return ar;
|
|
2237
2231
|
};
|
|
2238
2232
|
return ownKeys(o);
|
|
@@ -2265,9 +2259,8 @@ var require_scopeAnalysis = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2265
2259
|
*/
|
|
2266
2260
|
exports.getInnermostScope = eslintUtils.getInnermostScope;
|
|
2267
2261
|
}));
|
|
2268
|
-
|
|
2269
2262
|
//#endregion
|
|
2270
|
-
//#region node_modules/.pnpm/@typescript-eslint+utils@8.
|
|
2263
|
+
//#region node_modules/.pnpm/@typescript-eslint+utils@8.57.0_eslint@10.0.3_jiti@2.6.1__typescript@5.9.3/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/index.js
|
|
2271
2264
|
var require_eslint_utils$1 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2272
2265
|
var __createBinding = exports && exports.__createBinding || (Object.create ? (function(o, m, k, k2) {
|
|
2273
2266
|
if (k2 === void 0) k2 = k;
|
|
@@ -2283,8 +2276,8 @@ var require_eslint_utils$1 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2283
2276
|
if (k2 === void 0) k2 = k;
|
|
2284
2277
|
o[k2] = m[k];
|
|
2285
2278
|
}));
|
|
2286
|
-
var __exportStar = exports && exports.__exportStar || function(m, exports$
|
|
2287
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports$
|
|
2279
|
+
var __exportStar = exports && exports.__exportStar || function(m, exports$10) {
|
|
2280
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports$10, p)) __createBinding(exports$10, m, p);
|
|
2288
2281
|
};
|
|
2289
2282
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2290
2283
|
__exportStar(require_astUtilities(), exports);
|
|
@@ -2293,9 +2286,8 @@ var require_eslint_utils$1 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2293
2286
|
__exportStar(require_ReferenceTracker(), exports);
|
|
2294
2287
|
__exportStar(require_scopeAnalysis(), exports);
|
|
2295
2288
|
}));
|
|
2296
|
-
|
|
2297
2289
|
//#endregion
|
|
2298
|
-
//#region node_modules/.pnpm/@typescript-eslint+utils@8.
|
|
2290
|
+
//#region node_modules/.pnpm/@typescript-eslint+utils@8.57.0_eslint@10.0.3_jiti@2.6.1__typescript@5.9.3/node_modules/@typescript-eslint/utils/dist/ast-utils/helpers.js
|
|
2299
2291
|
var require_helpers = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2300
2292
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2301
2293
|
exports.isNotTokenOfTypeWithConditions = exports.isTokenOfTypeWithConditions = exports.isNodeOfTypeWithConditions = exports.isNodeOfTypes = exports.isNodeOfType = void 0;
|
|
@@ -2316,9 +2308,8 @@ var require_helpers = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2316
2308
|
const isNotTokenOfTypeWithConditions = (tokenType, conditions) => (token) => !(0, exports.isTokenOfTypeWithConditions)(tokenType, conditions)(token);
|
|
2317
2309
|
exports.isNotTokenOfTypeWithConditions = isNotTokenOfTypeWithConditions;
|
|
2318
2310
|
}));
|
|
2319
|
-
|
|
2320
2311
|
//#endregion
|
|
2321
|
-
//#region node_modules/.pnpm/@typescript-eslint+utils@8.
|
|
2312
|
+
//#region node_modules/.pnpm/@typescript-eslint+utils@8.57.0_eslint@10.0.3_jiti@2.6.1__typescript@5.9.3/node_modules/@typescript-eslint/utils/dist/ast-utils/misc.js
|
|
2322
2313
|
var require_misc = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2323
2314
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2324
2315
|
exports.LINEBREAK_MATCHER = void 0;
|
|
@@ -2331,9 +2322,8 @@ var require_misc = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2331
2322
|
return left.loc.end.line === right.loc.start.line;
|
|
2332
2323
|
}
|
|
2333
2324
|
}));
|
|
2334
|
-
|
|
2335
2325
|
//#endregion
|
|
2336
|
-
//#region node_modules/.pnpm/@typescript-eslint+types@8.
|
|
2326
|
+
//#region node_modules/.pnpm/@typescript-eslint+types@8.57.0/node_modules/@typescript-eslint/types/dist/generated/ast-spec.js
|
|
2337
2327
|
var require_ast_spec = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2338
2328
|
/**********************************************
|
|
2339
2329
|
* DO NOT MODIFY THIS FILE MANUALLY *
|
|
@@ -2342,180 +2332,180 @@ var require_ast_spec = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2342
2332
|
* ANY CHANGES WILL BE LOST ON THE NEXT BUILD *
|
|
2343
2333
|
* *
|
|
2344
2334
|
* MAKE CHANGES TO ast-spec AND THEN RUN *
|
|
2345
|
-
*
|
|
2335
|
+
* pnpm run build *
|
|
2346
2336
|
**********************************************/
|
|
2347
2337
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2348
2338
|
exports.AST_TOKEN_TYPES = exports.AST_NODE_TYPES = void 0;
|
|
2349
2339
|
var AST_NODE_TYPES;
|
|
2350
|
-
(function(AST_NODE_TYPES
|
|
2351
|
-
AST_NODE_TYPES
|
|
2352
|
-
AST_NODE_TYPES
|
|
2353
|
-
AST_NODE_TYPES
|
|
2354
|
-
AST_NODE_TYPES
|
|
2355
|
-
AST_NODE_TYPES
|
|
2356
|
-
AST_NODE_TYPES
|
|
2357
|
-
AST_NODE_TYPES
|
|
2358
|
-
AST_NODE_TYPES
|
|
2359
|
-
AST_NODE_TYPES
|
|
2360
|
-
AST_NODE_TYPES
|
|
2361
|
-
AST_NODE_TYPES
|
|
2362
|
-
AST_NODE_TYPES
|
|
2363
|
-
AST_NODE_TYPES
|
|
2364
|
-
AST_NODE_TYPES
|
|
2365
|
-
AST_NODE_TYPES
|
|
2366
|
-
AST_NODE_TYPES
|
|
2367
|
-
AST_NODE_TYPES
|
|
2368
|
-
AST_NODE_TYPES
|
|
2369
|
-
AST_NODE_TYPES
|
|
2370
|
-
AST_NODE_TYPES
|
|
2371
|
-
AST_NODE_TYPES
|
|
2372
|
-
AST_NODE_TYPES
|
|
2373
|
-
AST_NODE_TYPES
|
|
2374
|
-
AST_NODE_TYPES
|
|
2375
|
-
AST_NODE_TYPES
|
|
2376
|
-
AST_NODE_TYPES
|
|
2377
|
-
AST_NODE_TYPES
|
|
2378
|
-
AST_NODE_TYPES
|
|
2379
|
-
AST_NODE_TYPES
|
|
2380
|
-
AST_NODE_TYPES
|
|
2381
|
-
AST_NODE_TYPES
|
|
2382
|
-
AST_NODE_TYPES
|
|
2383
|
-
AST_NODE_TYPES
|
|
2384
|
-
AST_NODE_TYPES
|
|
2385
|
-
AST_NODE_TYPES
|
|
2386
|
-
AST_NODE_TYPES
|
|
2387
|
-
AST_NODE_TYPES
|
|
2388
|
-
AST_NODE_TYPES
|
|
2389
|
-
AST_NODE_TYPES
|
|
2390
|
-
AST_NODE_TYPES
|
|
2391
|
-
AST_NODE_TYPES
|
|
2392
|
-
AST_NODE_TYPES
|
|
2393
|
-
AST_NODE_TYPES
|
|
2394
|
-
AST_NODE_TYPES
|
|
2395
|
-
AST_NODE_TYPES
|
|
2396
|
-
AST_NODE_TYPES
|
|
2397
|
-
AST_NODE_TYPES
|
|
2398
|
-
AST_NODE_TYPES
|
|
2399
|
-
AST_NODE_TYPES
|
|
2400
|
-
AST_NODE_TYPES
|
|
2401
|
-
AST_NODE_TYPES
|
|
2402
|
-
AST_NODE_TYPES
|
|
2403
|
-
AST_NODE_TYPES
|
|
2404
|
-
AST_NODE_TYPES
|
|
2405
|
-
AST_NODE_TYPES
|
|
2406
|
-
AST_NODE_TYPES
|
|
2407
|
-
AST_NODE_TYPES
|
|
2408
|
-
AST_NODE_TYPES
|
|
2409
|
-
AST_NODE_TYPES
|
|
2410
|
-
AST_NODE_TYPES
|
|
2411
|
-
AST_NODE_TYPES
|
|
2412
|
-
AST_NODE_TYPES
|
|
2413
|
-
AST_NODE_TYPES
|
|
2414
|
-
AST_NODE_TYPES
|
|
2415
|
-
AST_NODE_TYPES
|
|
2416
|
-
AST_NODE_TYPES
|
|
2417
|
-
AST_NODE_TYPES
|
|
2418
|
-
AST_NODE_TYPES
|
|
2419
|
-
AST_NODE_TYPES
|
|
2420
|
-
AST_NODE_TYPES
|
|
2421
|
-
AST_NODE_TYPES
|
|
2422
|
-
AST_NODE_TYPES
|
|
2423
|
-
AST_NODE_TYPES
|
|
2424
|
-
AST_NODE_TYPES
|
|
2425
|
-
AST_NODE_TYPES
|
|
2426
|
-
AST_NODE_TYPES
|
|
2427
|
-
AST_NODE_TYPES
|
|
2428
|
-
AST_NODE_TYPES
|
|
2429
|
-
AST_NODE_TYPES
|
|
2430
|
-
AST_NODE_TYPES
|
|
2431
|
-
AST_NODE_TYPES
|
|
2432
|
-
AST_NODE_TYPES
|
|
2433
|
-
AST_NODE_TYPES
|
|
2434
|
-
AST_NODE_TYPES
|
|
2435
|
-
AST_NODE_TYPES
|
|
2436
|
-
AST_NODE_TYPES
|
|
2437
|
-
AST_NODE_TYPES
|
|
2438
|
-
AST_NODE_TYPES
|
|
2439
|
-
AST_NODE_TYPES
|
|
2440
|
-
AST_NODE_TYPES
|
|
2441
|
-
AST_NODE_TYPES
|
|
2442
|
-
AST_NODE_TYPES
|
|
2443
|
-
AST_NODE_TYPES
|
|
2444
|
-
AST_NODE_TYPES
|
|
2445
|
-
AST_NODE_TYPES
|
|
2446
|
-
AST_NODE_TYPES
|
|
2447
|
-
AST_NODE_TYPES
|
|
2448
|
-
AST_NODE_TYPES
|
|
2449
|
-
AST_NODE_TYPES
|
|
2450
|
-
AST_NODE_TYPES
|
|
2451
|
-
AST_NODE_TYPES
|
|
2452
|
-
AST_NODE_TYPES
|
|
2453
|
-
AST_NODE_TYPES
|
|
2454
|
-
AST_NODE_TYPES
|
|
2455
|
-
AST_NODE_TYPES
|
|
2456
|
-
AST_NODE_TYPES
|
|
2457
|
-
AST_NODE_TYPES
|
|
2458
|
-
AST_NODE_TYPES
|
|
2459
|
-
AST_NODE_TYPES
|
|
2460
|
-
AST_NODE_TYPES
|
|
2461
|
-
AST_NODE_TYPES
|
|
2462
|
-
AST_NODE_TYPES
|
|
2463
|
-
AST_NODE_TYPES
|
|
2464
|
-
AST_NODE_TYPES
|
|
2465
|
-
AST_NODE_TYPES
|
|
2466
|
-
AST_NODE_TYPES
|
|
2467
|
-
AST_NODE_TYPES
|
|
2468
|
-
AST_NODE_TYPES
|
|
2469
|
-
AST_NODE_TYPES
|
|
2470
|
-
AST_NODE_TYPES
|
|
2471
|
-
AST_NODE_TYPES
|
|
2472
|
-
AST_NODE_TYPES
|
|
2473
|
-
AST_NODE_TYPES
|
|
2474
|
-
AST_NODE_TYPES
|
|
2475
|
-
AST_NODE_TYPES
|
|
2476
|
-
AST_NODE_TYPES
|
|
2477
|
-
AST_NODE_TYPES
|
|
2478
|
-
AST_NODE_TYPES
|
|
2479
|
-
AST_NODE_TYPES
|
|
2480
|
-
AST_NODE_TYPES
|
|
2481
|
-
AST_NODE_TYPES
|
|
2482
|
-
AST_NODE_TYPES
|
|
2483
|
-
AST_NODE_TYPES
|
|
2484
|
-
AST_NODE_TYPES
|
|
2485
|
-
AST_NODE_TYPES
|
|
2486
|
-
AST_NODE_TYPES
|
|
2487
|
-
AST_NODE_TYPES
|
|
2488
|
-
AST_NODE_TYPES
|
|
2489
|
-
AST_NODE_TYPES
|
|
2490
|
-
AST_NODE_TYPES
|
|
2491
|
-
AST_NODE_TYPES
|
|
2492
|
-
AST_NODE_TYPES
|
|
2493
|
-
AST_NODE_TYPES
|
|
2494
|
-
AST_NODE_TYPES
|
|
2495
|
-
AST_NODE_TYPES
|
|
2496
|
-
AST_NODE_TYPES
|
|
2497
|
-
AST_NODE_TYPES
|
|
2498
|
-
AST_NODE_TYPES
|
|
2499
|
-
AST_NODE_TYPES
|
|
2500
|
-
AST_NODE_TYPES
|
|
2501
|
-
AST_NODE_TYPES
|
|
2502
|
-
AST_NODE_TYPES
|
|
2503
|
-
AST_NODE_TYPES
|
|
2504
|
-
AST_NODE_TYPES
|
|
2505
|
-
AST_NODE_TYPES
|
|
2506
|
-
AST_NODE_TYPES
|
|
2507
|
-
AST_NODE_TYPES
|
|
2508
|
-
AST_NODE_TYPES
|
|
2509
|
-
AST_NODE_TYPES
|
|
2510
|
-
AST_NODE_TYPES
|
|
2511
|
-
AST_NODE_TYPES
|
|
2512
|
-
AST_NODE_TYPES
|
|
2513
|
-
AST_NODE_TYPES
|
|
2514
|
-
AST_NODE_TYPES
|
|
2515
|
-
AST_NODE_TYPES
|
|
2516
|
-
AST_NODE_TYPES
|
|
2517
|
-
AST_NODE_TYPES
|
|
2518
|
-
AST_NODE_TYPES
|
|
2340
|
+
(function(AST_NODE_TYPES) {
|
|
2341
|
+
AST_NODE_TYPES["AccessorProperty"] = "AccessorProperty";
|
|
2342
|
+
AST_NODE_TYPES["ArrayExpression"] = "ArrayExpression";
|
|
2343
|
+
AST_NODE_TYPES["ArrayPattern"] = "ArrayPattern";
|
|
2344
|
+
AST_NODE_TYPES["ArrowFunctionExpression"] = "ArrowFunctionExpression";
|
|
2345
|
+
AST_NODE_TYPES["AssignmentExpression"] = "AssignmentExpression";
|
|
2346
|
+
AST_NODE_TYPES["AssignmentPattern"] = "AssignmentPattern";
|
|
2347
|
+
AST_NODE_TYPES["AwaitExpression"] = "AwaitExpression";
|
|
2348
|
+
AST_NODE_TYPES["BinaryExpression"] = "BinaryExpression";
|
|
2349
|
+
AST_NODE_TYPES["BlockStatement"] = "BlockStatement";
|
|
2350
|
+
AST_NODE_TYPES["BreakStatement"] = "BreakStatement";
|
|
2351
|
+
AST_NODE_TYPES["CallExpression"] = "CallExpression";
|
|
2352
|
+
AST_NODE_TYPES["CatchClause"] = "CatchClause";
|
|
2353
|
+
AST_NODE_TYPES["ChainExpression"] = "ChainExpression";
|
|
2354
|
+
AST_NODE_TYPES["ClassBody"] = "ClassBody";
|
|
2355
|
+
AST_NODE_TYPES["ClassDeclaration"] = "ClassDeclaration";
|
|
2356
|
+
AST_NODE_TYPES["ClassExpression"] = "ClassExpression";
|
|
2357
|
+
AST_NODE_TYPES["ConditionalExpression"] = "ConditionalExpression";
|
|
2358
|
+
AST_NODE_TYPES["ContinueStatement"] = "ContinueStatement";
|
|
2359
|
+
AST_NODE_TYPES["DebuggerStatement"] = "DebuggerStatement";
|
|
2360
|
+
AST_NODE_TYPES["Decorator"] = "Decorator";
|
|
2361
|
+
AST_NODE_TYPES["DoWhileStatement"] = "DoWhileStatement";
|
|
2362
|
+
AST_NODE_TYPES["EmptyStatement"] = "EmptyStatement";
|
|
2363
|
+
AST_NODE_TYPES["ExportAllDeclaration"] = "ExportAllDeclaration";
|
|
2364
|
+
AST_NODE_TYPES["ExportDefaultDeclaration"] = "ExportDefaultDeclaration";
|
|
2365
|
+
AST_NODE_TYPES["ExportNamedDeclaration"] = "ExportNamedDeclaration";
|
|
2366
|
+
AST_NODE_TYPES["ExportSpecifier"] = "ExportSpecifier";
|
|
2367
|
+
AST_NODE_TYPES["ExpressionStatement"] = "ExpressionStatement";
|
|
2368
|
+
AST_NODE_TYPES["ForInStatement"] = "ForInStatement";
|
|
2369
|
+
AST_NODE_TYPES["ForOfStatement"] = "ForOfStatement";
|
|
2370
|
+
AST_NODE_TYPES["ForStatement"] = "ForStatement";
|
|
2371
|
+
AST_NODE_TYPES["FunctionDeclaration"] = "FunctionDeclaration";
|
|
2372
|
+
AST_NODE_TYPES["FunctionExpression"] = "FunctionExpression";
|
|
2373
|
+
AST_NODE_TYPES["Identifier"] = "Identifier";
|
|
2374
|
+
AST_NODE_TYPES["IfStatement"] = "IfStatement";
|
|
2375
|
+
AST_NODE_TYPES["ImportAttribute"] = "ImportAttribute";
|
|
2376
|
+
AST_NODE_TYPES["ImportDeclaration"] = "ImportDeclaration";
|
|
2377
|
+
AST_NODE_TYPES["ImportDefaultSpecifier"] = "ImportDefaultSpecifier";
|
|
2378
|
+
AST_NODE_TYPES["ImportExpression"] = "ImportExpression";
|
|
2379
|
+
AST_NODE_TYPES["ImportNamespaceSpecifier"] = "ImportNamespaceSpecifier";
|
|
2380
|
+
AST_NODE_TYPES["ImportSpecifier"] = "ImportSpecifier";
|
|
2381
|
+
AST_NODE_TYPES["JSXAttribute"] = "JSXAttribute";
|
|
2382
|
+
AST_NODE_TYPES["JSXClosingElement"] = "JSXClosingElement";
|
|
2383
|
+
AST_NODE_TYPES["JSXClosingFragment"] = "JSXClosingFragment";
|
|
2384
|
+
AST_NODE_TYPES["JSXElement"] = "JSXElement";
|
|
2385
|
+
AST_NODE_TYPES["JSXEmptyExpression"] = "JSXEmptyExpression";
|
|
2386
|
+
AST_NODE_TYPES["JSXExpressionContainer"] = "JSXExpressionContainer";
|
|
2387
|
+
AST_NODE_TYPES["JSXFragment"] = "JSXFragment";
|
|
2388
|
+
AST_NODE_TYPES["JSXIdentifier"] = "JSXIdentifier";
|
|
2389
|
+
AST_NODE_TYPES["JSXMemberExpression"] = "JSXMemberExpression";
|
|
2390
|
+
AST_NODE_TYPES["JSXNamespacedName"] = "JSXNamespacedName";
|
|
2391
|
+
AST_NODE_TYPES["JSXOpeningElement"] = "JSXOpeningElement";
|
|
2392
|
+
AST_NODE_TYPES["JSXOpeningFragment"] = "JSXOpeningFragment";
|
|
2393
|
+
AST_NODE_TYPES["JSXSpreadAttribute"] = "JSXSpreadAttribute";
|
|
2394
|
+
AST_NODE_TYPES["JSXSpreadChild"] = "JSXSpreadChild";
|
|
2395
|
+
AST_NODE_TYPES["JSXText"] = "JSXText";
|
|
2396
|
+
AST_NODE_TYPES["LabeledStatement"] = "LabeledStatement";
|
|
2397
|
+
AST_NODE_TYPES["Literal"] = "Literal";
|
|
2398
|
+
AST_NODE_TYPES["LogicalExpression"] = "LogicalExpression";
|
|
2399
|
+
AST_NODE_TYPES["MemberExpression"] = "MemberExpression";
|
|
2400
|
+
AST_NODE_TYPES["MetaProperty"] = "MetaProperty";
|
|
2401
|
+
AST_NODE_TYPES["MethodDefinition"] = "MethodDefinition";
|
|
2402
|
+
AST_NODE_TYPES["NewExpression"] = "NewExpression";
|
|
2403
|
+
AST_NODE_TYPES["ObjectExpression"] = "ObjectExpression";
|
|
2404
|
+
AST_NODE_TYPES["ObjectPattern"] = "ObjectPattern";
|
|
2405
|
+
AST_NODE_TYPES["PrivateIdentifier"] = "PrivateIdentifier";
|
|
2406
|
+
AST_NODE_TYPES["Program"] = "Program";
|
|
2407
|
+
AST_NODE_TYPES["Property"] = "Property";
|
|
2408
|
+
AST_NODE_TYPES["PropertyDefinition"] = "PropertyDefinition";
|
|
2409
|
+
AST_NODE_TYPES["RestElement"] = "RestElement";
|
|
2410
|
+
AST_NODE_TYPES["ReturnStatement"] = "ReturnStatement";
|
|
2411
|
+
AST_NODE_TYPES["SequenceExpression"] = "SequenceExpression";
|
|
2412
|
+
AST_NODE_TYPES["SpreadElement"] = "SpreadElement";
|
|
2413
|
+
AST_NODE_TYPES["StaticBlock"] = "StaticBlock";
|
|
2414
|
+
AST_NODE_TYPES["Super"] = "Super";
|
|
2415
|
+
AST_NODE_TYPES["SwitchCase"] = "SwitchCase";
|
|
2416
|
+
AST_NODE_TYPES["SwitchStatement"] = "SwitchStatement";
|
|
2417
|
+
AST_NODE_TYPES["TaggedTemplateExpression"] = "TaggedTemplateExpression";
|
|
2418
|
+
AST_NODE_TYPES["TemplateElement"] = "TemplateElement";
|
|
2419
|
+
AST_NODE_TYPES["TemplateLiteral"] = "TemplateLiteral";
|
|
2420
|
+
AST_NODE_TYPES["ThisExpression"] = "ThisExpression";
|
|
2421
|
+
AST_NODE_TYPES["ThrowStatement"] = "ThrowStatement";
|
|
2422
|
+
AST_NODE_TYPES["TryStatement"] = "TryStatement";
|
|
2423
|
+
AST_NODE_TYPES["UnaryExpression"] = "UnaryExpression";
|
|
2424
|
+
AST_NODE_TYPES["UpdateExpression"] = "UpdateExpression";
|
|
2425
|
+
AST_NODE_TYPES["VariableDeclaration"] = "VariableDeclaration";
|
|
2426
|
+
AST_NODE_TYPES["VariableDeclarator"] = "VariableDeclarator";
|
|
2427
|
+
AST_NODE_TYPES["WhileStatement"] = "WhileStatement";
|
|
2428
|
+
AST_NODE_TYPES["WithStatement"] = "WithStatement";
|
|
2429
|
+
AST_NODE_TYPES["YieldExpression"] = "YieldExpression";
|
|
2430
|
+
AST_NODE_TYPES["TSAbstractAccessorProperty"] = "TSAbstractAccessorProperty";
|
|
2431
|
+
AST_NODE_TYPES["TSAbstractKeyword"] = "TSAbstractKeyword";
|
|
2432
|
+
AST_NODE_TYPES["TSAbstractMethodDefinition"] = "TSAbstractMethodDefinition";
|
|
2433
|
+
AST_NODE_TYPES["TSAbstractPropertyDefinition"] = "TSAbstractPropertyDefinition";
|
|
2434
|
+
AST_NODE_TYPES["TSAnyKeyword"] = "TSAnyKeyword";
|
|
2435
|
+
AST_NODE_TYPES["TSArrayType"] = "TSArrayType";
|
|
2436
|
+
AST_NODE_TYPES["TSAsExpression"] = "TSAsExpression";
|
|
2437
|
+
AST_NODE_TYPES["TSAsyncKeyword"] = "TSAsyncKeyword";
|
|
2438
|
+
AST_NODE_TYPES["TSBigIntKeyword"] = "TSBigIntKeyword";
|
|
2439
|
+
AST_NODE_TYPES["TSBooleanKeyword"] = "TSBooleanKeyword";
|
|
2440
|
+
AST_NODE_TYPES["TSCallSignatureDeclaration"] = "TSCallSignatureDeclaration";
|
|
2441
|
+
AST_NODE_TYPES["TSClassImplements"] = "TSClassImplements";
|
|
2442
|
+
AST_NODE_TYPES["TSConditionalType"] = "TSConditionalType";
|
|
2443
|
+
AST_NODE_TYPES["TSConstructorType"] = "TSConstructorType";
|
|
2444
|
+
AST_NODE_TYPES["TSConstructSignatureDeclaration"] = "TSConstructSignatureDeclaration";
|
|
2445
|
+
AST_NODE_TYPES["TSDeclareFunction"] = "TSDeclareFunction";
|
|
2446
|
+
AST_NODE_TYPES["TSDeclareKeyword"] = "TSDeclareKeyword";
|
|
2447
|
+
AST_NODE_TYPES["TSEmptyBodyFunctionExpression"] = "TSEmptyBodyFunctionExpression";
|
|
2448
|
+
AST_NODE_TYPES["TSEnumBody"] = "TSEnumBody";
|
|
2449
|
+
AST_NODE_TYPES["TSEnumDeclaration"] = "TSEnumDeclaration";
|
|
2450
|
+
AST_NODE_TYPES["TSEnumMember"] = "TSEnumMember";
|
|
2451
|
+
AST_NODE_TYPES["TSExportAssignment"] = "TSExportAssignment";
|
|
2452
|
+
AST_NODE_TYPES["TSExportKeyword"] = "TSExportKeyword";
|
|
2453
|
+
AST_NODE_TYPES["TSExternalModuleReference"] = "TSExternalModuleReference";
|
|
2454
|
+
AST_NODE_TYPES["TSFunctionType"] = "TSFunctionType";
|
|
2455
|
+
AST_NODE_TYPES["TSImportEqualsDeclaration"] = "TSImportEqualsDeclaration";
|
|
2456
|
+
AST_NODE_TYPES["TSImportType"] = "TSImportType";
|
|
2457
|
+
AST_NODE_TYPES["TSIndexedAccessType"] = "TSIndexedAccessType";
|
|
2458
|
+
AST_NODE_TYPES["TSIndexSignature"] = "TSIndexSignature";
|
|
2459
|
+
AST_NODE_TYPES["TSInferType"] = "TSInferType";
|
|
2460
|
+
AST_NODE_TYPES["TSInstantiationExpression"] = "TSInstantiationExpression";
|
|
2461
|
+
AST_NODE_TYPES["TSInterfaceBody"] = "TSInterfaceBody";
|
|
2462
|
+
AST_NODE_TYPES["TSInterfaceDeclaration"] = "TSInterfaceDeclaration";
|
|
2463
|
+
AST_NODE_TYPES["TSInterfaceHeritage"] = "TSInterfaceHeritage";
|
|
2464
|
+
AST_NODE_TYPES["TSIntersectionType"] = "TSIntersectionType";
|
|
2465
|
+
AST_NODE_TYPES["TSIntrinsicKeyword"] = "TSIntrinsicKeyword";
|
|
2466
|
+
AST_NODE_TYPES["TSLiteralType"] = "TSLiteralType";
|
|
2467
|
+
AST_NODE_TYPES["TSMappedType"] = "TSMappedType";
|
|
2468
|
+
AST_NODE_TYPES["TSMethodSignature"] = "TSMethodSignature";
|
|
2469
|
+
AST_NODE_TYPES["TSModuleBlock"] = "TSModuleBlock";
|
|
2470
|
+
AST_NODE_TYPES["TSModuleDeclaration"] = "TSModuleDeclaration";
|
|
2471
|
+
AST_NODE_TYPES["TSNamedTupleMember"] = "TSNamedTupleMember";
|
|
2472
|
+
AST_NODE_TYPES["TSNamespaceExportDeclaration"] = "TSNamespaceExportDeclaration";
|
|
2473
|
+
AST_NODE_TYPES["TSNeverKeyword"] = "TSNeverKeyword";
|
|
2474
|
+
AST_NODE_TYPES["TSNonNullExpression"] = "TSNonNullExpression";
|
|
2475
|
+
AST_NODE_TYPES["TSNullKeyword"] = "TSNullKeyword";
|
|
2476
|
+
AST_NODE_TYPES["TSNumberKeyword"] = "TSNumberKeyword";
|
|
2477
|
+
AST_NODE_TYPES["TSObjectKeyword"] = "TSObjectKeyword";
|
|
2478
|
+
AST_NODE_TYPES["TSOptionalType"] = "TSOptionalType";
|
|
2479
|
+
AST_NODE_TYPES["TSParameterProperty"] = "TSParameterProperty";
|
|
2480
|
+
AST_NODE_TYPES["TSPrivateKeyword"] = "TSPrivateKeyword";
|
|
2481
|
+
AST_NODE_TYPES["TSPropertySignature"] = "TSPropertySignature";
|
|
2482
|
+
AST_NODE_TYPES["TSProtectedKeyword"] = "TSProtectedKeyword";
|
|
2483
|
+
AST_NODE_TYPES["TSPublicKeyword"] = "TSPublicKeyword";
|
|
2484
|
+
AST_NODE_TYPES["TSQualifiedName"] = "TSQualifiedName";
|
|
2485
|
+
AST_NODE_TYPES["TSReadonlyKeyword"] = "TSReadonlyKeyword";
|
|
2486
|
+
AST_NODE_TYPES["TSRestType"] = "TSRestType";
|
|
2487
|
+
AST_NODE_TYPES["TSSatisfiesExpression"] = "TSSatisfiesExpression";
|
|
2488
|
+
AST_NODE_TYPES["TSStaticKeyword"] = "TSStaticKeyword";
|
|
2489
|
+
AST_NODE_TYPES["TSStringKeyword"] = "TSStringKeyword";
|
|
2490
|
+
AST_NODE_TYPES["TSSymbolKeyword"] = "TSSymbolKeyword";
|
|
2491
|
+
AST_NODE_TYPES["TSTemplateLiteralType"] = "TSTemplateLiteralType";
|
|
2492
|
+
AST_NODE_TYPES["TSThisType"] = "TSThisType";
|
|
2493
|
+
AST_NODE_TYPES["TSTupleType"] = "TSTupleType";
|
|
2494
|
+
AST_NODE_TYPES["TSTypeAliasDeclaration"] = "TSTypeAliasDeclaration";
|
|
2495
|
+
AST_NODE_TYPES["TSTypeAnnotation"] = "TSTypeAnnotation";
|
|
2496
|
+
AST_NODE_TYPES["TSTypeAssertion"] = "TSTypeAssertion";
|
|
2497
|
+
AST_NODE_TYPES["TSTypeLiteral"] = "TSTypeLiteral";
|
|
2498
|
+
AST_NODE_TYPES["TSTypeOperator"] = "TSTypeOperator";
|
|
2499
|
+
AST_NODE_TYPES["TSTypeParameter"] = "TSTypeParameter";
|
|
2500
|
+
AST_NODE_TYPES["TSTypeParameterDeclaration"] = "TSTypeParameterDeclaration";
|
|
2501
|
+
AST_NODE_TYPES["TSTypeParameterInstantiation"] = "TSTypeParameterInstantiation";
|
|
2502
|
+
AST_NODE_TYPES["TSTypePredicate"] = "TSTypePredicate";
|
|
2503
|
+
AST_NODE_TYPES["TSTypeQuery"] = "TSTypeQuery";
|
|
2504
|
+
AST_NODE_TYPES["TSTypeReference"] = "TSTypeReference";
|
|
2505
|
+
AST_NODE_TYPES["TSUndefinedKeyword"] = "TSUndefinedKeyword";
|
|
2506
|
+
AST_NODE_TYPES["TSUnionType"] = "TSUnionType";
|
|
2507
|
+
AST_NODE_TYPES["TSUnknownKeyword"] = "TSUnknownKeyword";
|
|
2508
|
+
AST_NODE_TYPES["TSVoidKeyword"] = "TSVoidKeyword";
|
|
2519
2509
|
})(AST_NODE_TYPES || (exports.AST_NODE_TYPES = AST_NODE_TYPES = {}));
|
|
2520
2510
|
var AST_TOKEN_TYPES;
|
|
2521
2511
|
(function(AST_TOKEN_TYPES) {
|
|
@@ -2535,21 +2525,18 @@ var require_ast_spec = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2535
2525
|
AST_TOKEN_TYPES["Line"] = "Line";
|
|
2536
2526
|
})(AST_TOKEN_TYPES || (exports.AST_TOKEN_TYPES = AST_TOKEN_TYPES = {}));
|
|
2537
2527
|
}));
|
|
2538
|
-
|
|
2539
2528
|
//#endregion
|
|
2540
|
-
//#region node_modules/.pnpm/@typescript-eslint+types@8.
|
|
2529
|
+
//#region node_modules/.pnpm/@typescript-eslint+types@8.57.0/node_modules/@typescript-eslint/types/dist/lib.js
|
|
2541
2530
|
var require_lib$2 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2542
2531
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2543
2532
|
}));
|
|
2544
|
-
|
|
2545
2533
|
//#endregion
|
|
2546
|
-
//#region node_modules/.pnpm/@typescript-eslint+types@8.
|
|
2534
|
+
//#region node_modules/.pnpm/@typescript-eslint+types@8.57.0/node_modules/@typescript-eslint/types/dist/parser-options.js
|
|
2547
2535
|
var require_parser_options = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2548
2536
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2549
2537
|
}));
|
|
2550
|
-
|
|
2551
2538
|
//#endregion
|
|
2552
|
-
//#region node_modules/.pnpm/@typescript-eslint+types@8.
|
|
2539
|
+
//#region node_modules/.pnpm/@typescript-eslint+types@8.57.0/node_modules/@typescript-eslint/types/dist/ts-estree.js
|
|
2553
2540
|
var require_ts_estree$1 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2554
2541
|
var __createBinding = exports && exports.__createBinding || (Object.create ? (function(o, m, k, k2) {
|
|
2555
2542
|
if (k2 === void 0) k2 = k;
|
|
@@ -2575,9 +2562,9 @@ var require_ts_estree$1 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2575
2562
|
});
|
|
2576
2563
|
var __importStar = exports && exports.__importStar || (function() {
|
|
2577
2564
|
var ownKeys = function(o) {
|
|
2578
|
-
ownKeys = Object.getOwnPropertyNames || function(o
|
|
2565
|
+
ownKeys = Object.getOwnPropertyNames || function(o) {
|
|
2579
2566
|
var ar = [];
|
|
2580
|
-
for (var k in o
|
|
2567
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
2581
2568
|
return ar;
|
|
2582
2569
|
};
|
|
2583
2570
|
return ownKeys(o);
|
|
@@ -2596,9 +2583,8 @@ var require_ts_estree$1 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2596
2583
|
exports.TSESTree = void 0;
|
|
2597
2584
|
exports.TSESTree = __importStar(require_ast_spec());
|
|
2598
2585
|
}));
|
|
2599
|
-
|
|
2600
2586
|
//#endregion
|
|
2601
|
-
//#region node_modules/.pnpm/@typescript-eslint+types@8.
|
|
2587
|
+
//#region node_modules/.pnpm/@typescript-eslint+types@8.57.0/node_modules/@typescript-eslint/types/dist/index.js
|
|
2602
2588
|
var require_dist$3 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2603
2589
|
var __createBinding = exports && exports.__createBinding || (Object.create ? (function(o, m, k, k2) {
|
|
2604
2590
|
if (k2 === void 0) k2 = k;
|
|
@@ -2614,8 +2600,8 @@ var require_dist$3 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2614
2600
|
if (k2 === void 0) k2 = k;
|
|
2615
2601
|
o[k2] = m[k];
|
|
2616
2602
|
}));
|
|
2617
|
-
var __exportStar = exports && exports.__exportStar || function(m, exports$
|
|
2618
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports$
|
|
2603
|
+
var __exportStar = exports && exports.__exportStar || function(m, exports$9) {
|
|
2604
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports$9, p)) __createBinding(exports$9, m, p);
|
|
2619
2605
|
};
|
|
2620
2606
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2621
2607
|
exports.AST_TOKEN_TYPES = exports.AST_NODE_TYPES = void 0;
|
|
@@ -2636,9 +2622,8 @@ var require_dist$3 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2636
2622
|
__exportStar(require_parser_options(), exports);
|
|
2637
2623
|
__exportStar(require_ts_estree$1(), exports);
|
|
2638
2624
|
}));
|
|
2639
|
-
|
|
2640
2625
|
//#endregion
|
|
2641
|
-
//#region node_modules/.pnpm/@typescript-eslint+utils@8.
|
|
2626
|
+
//#region node_modules/.pnpm/@typescript-eslint+utils@8.57.0_eslint@10.0.3_jiti@2.6.1__typescript@5.9.3/node_modules/@typescript-eslint/utils/dist/ts-estree.js
|
|
2642
2627
|
var require_ts_estree = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2643
2628
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2644
2629
|
exports.TSESTree = exports.AST_TOKEN_TYPES = exports.AST_NODE_TYPES = void 0;
|
|
@@ -2662,9 +2647,8 @@ var require_ts_estree = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2662
2647
|
}
|
|
2663
2648
|
});
|
|
2664
2649
|
}));
|
|
2665
|
-
|
|
2666
2650
|
//#endregion
|
|
2667
|
-
//#region node_modules/.pnpm/@typescript-eslint+utils@8.
|
|
2651
|
+
//#region node_modules/.pnpm/@typescript-eslint+utils@8.57.0_eslint@10.0.3_jiti@2.6.1__typescript@5.9.3/node_modules/@typescript-eslint/utils/dist/ast-utils/predicates.js
|
|
2668
2652
|
var require_predicates = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2669
2653
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2670
2654
|
exports.isLoop = exports.isImportKeyword = exports.isTypeKeyword = exports.isAwaitKeyword = exports.isAwaitExpression = exports.isIdentifier = exports.isConstructor = exports.isClassOrTypeElement = exports.isTSConstructorType = exports.isTSFunctionType = exports.isFunctionOrFunctionType = exports.isFunctionType = exports.isFunction = exports.isVariableDeclarator = exports.isTypeAssertion = exports.isLogicalOrOperator = exports.isOptionalCallExpression = exports.isNotNonNullAssertionPunctuator = exports.isNonNullAssertionPunctuator = exports.isNotOptionalChainPunctuator = exports.isOptionalChainPunctuator = void 0;
|
|
@@ -2759,9 +2743,8 @@ var require_predicates = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2759
2743
|
ts_estree_1.AST_NODE_TYPES.WhileStatement
|
|
2760
2744
|
]);
|
|
2761
2745
|
}));
|
|
2762
|
-
|
|
2763
2746
|
//#endregion
|
|
2764
|
-
//#region node_modules/.pnpm/@typescript-eslint+utils@8.
|
|
2747
|
+
//#region node_modules/.pnpm/@typescript-eslint+utils@8.57.0_eslint@10.0.3_jiti@2.6.1__typescript@5.9.3/node_modules/@typescript-eslint/utils/dist/ast-utils/index.js
|
|
2765
2748
|
var require_ast_utils = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2766
2749
|
var __createBinding = exports && exports.__createBinding || (Object.create ? (function(o, m, k, k2) {
|
|
2767
2750
|
if (k2 === void 0) k2 = k;
|
|
@@ -2777,8 +2760,8 @@ var require_ast_utils = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2777
2760
|
if (k2 === void 0) k2 = k;
|
|
2778
2761
|
o[k2] = m[k];
|
|
2779
2762
|
}));
|
|
2780
|
-
var __exportStar = exports && exports.__exportStar || function(m, exports$
|
|
2781
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports$
|
|
2763
|
+
var __exportStar = exports && exports.__exportStar || function(m, exports$8) {
|
|
2764
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports$8, p)) __createBinding(exports$8, m, p);
|
|
2782
2765
|
};
|
|
2783
2766
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2784
2767
|
__exportStar(require_eslint_utils$1(), exports);
|
|
@@ -2786,9 +2769,8 @@ var require_ast_utils = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2786
2769
|
__exportStar(require_misc(), exports);
|
|
2787
2770
|
__exportStar(require_predicates(), exports);
|
|
2788
2771
|
}));
|
|
2789
|
-
|
|
2790
2772
|
//#endregion
|
|
2791
|
-
//#region node_modules/.pnpm/@typescript-eslint+utils@8.
|
|
2773
|
+
//#region node_modules/.pnpm/@typescript-eslint+utils@8.57.0_eslint@10.0.3_jiti@2.6.1__typescript@5.9.3/node_modules/@typescript-eslint/utils/dist/eslint-utils/deepMerge.js
|
|
2792
2774
|
var require_deepMerge = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2793
2775
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2794
2776
|
exports.isObjectNotArray = isObjectNotArray;
|
|
@@ -2823,9 +2805,8 @@ var require_deepMerge = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2823
2805
|
}));
|
|
2824
2806
|
}
|
|
2825
2807
|
}));
|
|
2826
|
-
|
|
2827
2808
|
//#endregion
|
|
2828
|
-
//#region node_modules/.pnpm/@typescript-eslint+utils@8.
|
|
2809
|
+
//#region node_modules/.pnpm/@typescript-eslint+utils@8.57.0_eslint@10.0.3_jiti@2.6.1__typescript@5.9.3/node_modules/@typescript-eslint/utils/dist/eslint-utils/applyDefault.js
|
|
2829
2810
|
var require_applyDefault = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2830
2811
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2831
2812
|
exports.applyDefault = applyDefault;
|
|
@@ -2850,9 +2831,8 @@ var require_applyDefault = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2850
2831
|
return options;
|
|
2851
2832
|
}
|
|
2852
2833
|
}));
|
|
2853
|
-
|
|
2854
2834
|
//#endregion
|
|
2855
|
-
//#region node_modules/.pnpm/@typescript-eslint+utils@8.
|
|
2835
|
+
//#region node_modules/.pnpm/@typescript-eslint+utils@8.57.0_eslint@10.0.3_jiti@2.6.1__typescript@5.9.3/node_modules/@typescript-eslint/utils/dist/eslint-utils/parserSeemsToBeTSESLint.js
|
|
2856
2836
|
var require_parserSeemsToBeTSESLint = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2857
2837
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2858
2838
|
exports.parserSeemsToBeTSESLint = parserSeemsToBeTSESLint;
|
|
@@ -2860,14 +2840,13 @@ var require_parserSeemsToBeTSESLint = /* @__PURE__ */ __commonJSMin(((exports) =
|
|
|
2860
2840
|
return !!parser && /(?:typescript-eslint|\.\.)[\w/\\]*parser/.test(parser);
|
|
2861
2841
|
}
|
|
2862
2842
|
}));
|
|
2863
|
-
|
|
2864
2843
|
//#endregion
|
|
2865
|
-
//#region node_modules/.pnpm/@typescript-eslint+utils@8.
|
|
2844
|
+
//#region node_modules/.pnpm/@typescript-eslint+utils@8.57.0_eslint@10.0.3_jiti@2.6.1__typescript@5.9.3/node_modules/@typescript-eslint/utils/dist/eslint-utils/getParserServices.js
|
|
2866
2845
|
var require_getParserServices = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2867
2846
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2868
2847
|
exports.getParserServices = getParserServices;
|
|
2869
2848
|
const parserSeemsToBeTSESLint_1 = require_parserSeemsToBeTSESLint();
|
|
2870
|
-
const ERROR_MESSAGE_REQUIRES_PARSER_SERVICES = "You have used a rule which requires type information, but don't have parserOptions set to generate type information for this file. See https://
|
|
2849
|
+
const ERROR_MESSAGE_REQUIRES_PARSER_SERVICES = "You have used a rule which requires type information, but don't have parserOptions set to generate type information for this file. See https://tseslint.com/typed-linting for enabling linting with type information.";
|
|
2871
2850
|
const ERROR_MESSAGE_UNKNOWN_PARSER = "Note: detected a parser other than @typescript-eslint/parser. Make sure the parser is configured to forward \"parserOptions.project\" to @typescript-eslint/parser.";
|
|
2872
2851
|
function getParserServices(context, allowWithoutFullTypeInformation = false) {
|
|
2873
2852
|
const parser = context.parserPath || context.languageOptions.parser?.meta?.name;
|
|
@@ -2884,15 +2863,13 @@ var require_getParserServices = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2884
2863
|
throw new Error(messages.join("\n"));
|
|
2885
2864
|
}
|
|
2886
2865
|
}));
|
|
2887
|
-
|
|
2888
2866
|
//#endregion
|
|
2889
|
-
//#region node_modules/.pnpm/@typescript-eslint+utils@8.
|
|
2867
|
+
//#region node_modules/.pnpm/@typescript-eslint+utils@8.57.0_eslint@10.0.3_jiti@2.6.1__typescript@5.9.3/node_modules/@typescript-eslint/utils/dist/eslint-utils/InferTypesFromRule.js
|
|
2890
2868
|
var require_InferTypesFromRule = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2891
2869
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2892
2870
|
}));
|
|
2893
|
-
|
|
2894
2871
|
//#endregion
|
|
2895
|
-
//#region node_modules/.pnpm/@typescript-eslint+utils@8.
|
|
2872
|
+
//#region node_modules/.pnpm/@typescript-eslint+utils@8.57.0_eslint@10.0.3_jiti@2.6.1__typescript@5.9.3/node_modules/@typescript-eslint/utils/dist/eslint-utils/nullThrows.js
|
|
2896
2873
|
var require_nullThrows = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2897
2874
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2898
2875
|
exports.NullThrowsReasons = void 0;
|
|
@@ -2913,9 +2890,8 @@ var require_nullThrows = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2913
2890
|
return value;
|
|
2914
2891
|
}
|
|
2915
2892
|
}));
|
|
2916
|
-
|
|
2917
2893
|
//#endregion
|
|
2918
|
-
//#region node_modules/.pnpm/@typescript-eslint+utils@8.
|
|
2894
|
+
//#region node_modules/.pnpm/@typescript-eslint+utils@8.57.0_eslint@10.0.3_jiti@2.6.1__typescript@5.9.3/node_modules/@typescript-eslint/utils/dist/eslint-utils/RuleCreator.js
|
|
2919
2895
|
var require_RuleCreator = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2920
2896
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2921
2897
|
exports.RuleCreator = RuleCreator;
|
|
@@ -2927,26 +2903,29 @@ var require_RuleCreator = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2927
2903
|
* @returns Function to create a rule with the docs URL format.
|
|
2928
2904
|
*/
|
|
2929
2905
|
function RuleCreator(urlCreator) {
|
|
2930
|
-
return function createNamedRule({ meta, name
|
|
2906
|
+
return function createNamedRule({ meta, name, ...rule }) {
|
|
2931
2907
|
return createRule({
|
|
2932
2908
|
meta: {
|
|
2933
2909
|
...meta,
|
|
2934
2910
|
docs: {
|
|
2935
2911
|
...meta.docs,
|
|
2936
|
-
url: urlCreator(name
|
|
2912
|
+
url: urlCreator(name)
|
|
2937
2913
|
}
|
|
2938
2914
|
},
|
|
2939
|
-
|
|
2915
|
+
name,
|
|
2916
|
+
...rule
|
|
2940
2917
|
});
|
|
2941
2918
|
};
|
|
2942
2919
|
}
|
|
2943
|
-
function createRule({ create, defaultOptions, meta }) {
|
|
2920
|
+
function createRule({ create, defaultOptions, meta, name }) {
|
|
2921
|
+
const resolvedDefaultOptions = meta.defaultOptions ?? defaultOptions ?? [];
|
|
2944
2922
|
return {
|
|
2945
2923
|
create(context) {
|
|
2946
|
-
return create(context, (0, applyDefault_1.applyDefault)(
|
|
2924
|
+
return create(context, (0, applyDefault_1.applyDefault)(resolvedDefaultOptions, context.options));
|
|
2947
2925
|
},
|
|
2948
2926
|
defaultOptions,
|
|
2949
|
-
meta
|
|
2927
|
+
meta,
|
|
2928
|
+
name
|
|
2950
2929
|
};
|
|
2951
2930
|
}
|
|
2952
2931
|
/**
|
|
@@ -2959,9 +2938,8 @@ var require_RuleCreator = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2959
2938
|
return createRule(args);
|
|
2960
2939
|
};
|
|
2961
2940
|
}));
|
|
2962
|
-
|
|
2963
2941
|
//#endregion
|
|
2964
|
-
//#region node_modules/.pnpm/@typescript-eslint+utils@8.
|
|
2942
|
+
//#region node_modules/.pnpm/@typescript-eslint+utils@8.57.0_eslint@10.0.3_jiti@2.6.1__typescript@5.9.3/node_modules/@typescript-eslint/utils/dist/eslint-utils/index.js
|
|
2965
2943
|
var require_eslint_utils = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2966
2944
|
var __createBinding = exports && exports.__createBinding || (Object.create ? (function(o, m, k, k2) {
|
|
2967
2945
|
if (k2 === void 0) k2 = k;
|
|
@@ -2977,8 +2955,8 @@ var require_eslint_utils = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2977
2955
|
if (k2 === void 0) k2 = k;
|
|
2978
2956
|
o[k2] = m[k];
|
|
2979
2957
|
}));
|
|
2980
|
-
var __exportStar = exports && exports.__exportStar || function(m, exports$
|
|
2981
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports$
|
|
2958
|
+
var __exportStar = exports && exports.__exportStar || function(m, exports$7) {
|
|
2959
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports$7, p)) __createBinding(exports$7, m, p);
|
|
2982
2960
|
};
|
|
2983
2961
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2984
2962
|
__exportStar(require_applyDefault(), exports);
|
|
@@ -2988,9 +2966,8 @@ var require_eslint_utils = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2988
2966
|
__exportStar(require_nullThrows(), exports);
|
|
2989
2967
|
__exportStar(require_RuleCreator(), exports);
|
|
2990
2968
|
}));
|
|
2991
|
-
|
|
2992
2969
|
//#endregion
|
|
2993
|
-
//#region node_modules/.pnpm/@typescript-eslint+utils@8.
|
|
2970
|
+
//#region node_modules/.pnpm/@typescript-eslint+utils@8.57.0_eslint@10.0.3_jiti@2.6.1__typescript@5.9.3/node_modules/@typescript-eslint/utils/dist/json-schema.js
|
|
2994
2971
|
var require_json_schema = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2995
2972
|
/**
|
|
2996
2973
|
* This is a fork of https://github.com/DefinitelyTyped/DefinitelyTyped/blob/13f63c2eb8d7479caf01ab8d72f9e3683368a8f5/types/json-schema/index.d.ts
|
|
@@ -3000,53 +2977,72 @@ var require_json_schema = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
3000
2977
|
*/
|
|
3001
2978
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3002
2979
|
}));
|
|
3003
|
-
|
|
3004
2980
|
//#endregion
|
|
3005
|
-
//#region node_modules/.pnpm/@typescript-eslint+utils@8.
|
|
2981
|
+
//#region node_modules/.pnpm/@typescript-eslint+utils@8.57.0_eslint@10.0.3_jiti@2.6.1__typescript@5.9.3/node_modules/@typescript-eslint/utils/dist/ts-eslint/AST.js
|
|
3006
2982
|
var require_AST = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
3007
2983
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3008
2984
|
}));
|
|
3009
|
-
|
|
3010
2985
|
//#endregion
|
|
3011
|
-
//#region node_modules/.pnpm/@typescript-eslint+utils@8.
|
|
2986
|
+
//#region node_modules/.pnpm/@typescript-eslint+utils@8.57.0_eslint@10.0.3_jiti@2.6.1__typescript@5.9.3/node_modules/@typescript-eslint/utils/dist/ts-eslint/Config.js
|
|
3012
2987
|
var require_Config = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
3013
2988
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3014
2989
|
}));
|
|
3015
|
-
|
|
3016
2990
|
//#endregion
|
|
3017
|
-
//#region node_modules/.pnpm/@typescript-eslint+utils@8.
|
|
2991
|
+
//#region node_modules/.pnpm/@typescript-eslint+utils@8.57.0_eslint@10.0.3_jiti@2.6.1__typescript@5.9.3/node_modules/@typescript-eslint/utils/dist/ts-eslint/eslint/FlatESLint.js
|
|
3018
2992
|
var require_FlatESLint = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2993
|
+
var __importDefault = exports && exports.__importDefault || function(mod) {
|
|
2994
|
+
return mod && mod.__esModule ? mod : { "default": mod };
|
|
2995
|
+
};
|
|
3019
2996
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3020
2997
|
exports.FlatESLint = void 0;
|
|
3021
|
-
const
|
|
2998
|
+
const eslint_1$4 = __require("eslint");
|
|
2999
|
+
const use_at_your_own_risk_1$1 = __importDefault(__require("eslint/use-at-your-own-risk"));
|
|
3022
3000
|
/**
|
|
3023
3001
|
* The ESLint class is the primary class to use in Node.js applications.
|
|
3024
3002
|
* This class depends on the Node.js fs module and the file system, so you cannot use it in browsers.
|
|
3025
3003
|
*
|
|
3026
3004
|
* If you want to lint code on browsers, use the Linter class instead.
|
|
3027
3005
|
*/
|
|
3028
|
-
var FlatESLint = class extends use_at_your_own_risk_1$1.FlatESLint {};
|
|
3006
|
+
var FlatESLint = class extends (use_at_your_own_risk_1$1.default.FlatESLint ?? eslint_1$4.ESLint) {};
|
|
3029
3007
|
exports.FlatESLint = FlatESLint;
|
|
3030
3008
|
}));
|
|
3031
|
-
|
|
3032
3009
|
//#endregion
|
|
3033
|
-
//#region node_modules/.pnpm/@typescript-eslint+utils@8.
|
|
3010
|
+
//#region node_modules/.pnpm/@typescript-eslint+utils@8.57.0_eslint@10.0.3_jiti@2.6.1__typescript@5.9.3/node_modules/@typescript-eslint/utils/dist/ts-eslint/eslint/LegacyESLint.js
|
|
3034
3011
|
var require_LegacyESLint = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
3012
|
+
var __importDefault = exports && exports.__importDefault || function(mod) {
|
|
3013
|
+
return mod && mod.__esModule ? mod : { "default": mod };
|
|
3014
|
+
};
|
|
3035
3015
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3036
3016
|
exports.LegacyESLint = void 0;
|
|
3037
|
-
const
|
|
3017
|
+
const eslint_1$3 = __require("eslint");
|
|
3018
|
+
const use_at_your_own_risk_1 = __importDefault(__require("eslint/use-at-your-own-risk"));
|
|
3019
|
+
function throwMissingLegacyESLintError() {
|
|
3020
|
+
throw new Error("LegacyESLint is not available with the current version of ESLint.");
|
|
3021
|
+
}
|
|
3022
|
+
var MissingLegacyESLint = class {
|
|
3023
|
+
static configType = "eslintrc";
|
|
3024
|
+
static version = eslint_1$3.ESLint.version;
|
|
3025
|
+
constructor() {
|
|
3026
|
+
throwMissingLegacyESLintError();
|
|
3027
|
+
}
|
|
3028
|
+
static getErrorResults() {
|
|
3029
|
+
throwMissingLegacyESLintError();
|
|
3030
|
+
}
|
|
3031
|
+
static outputFixes() {
|
|
3032
|
+
throwMissingLegacyESLintError();
|
|
3033
|
+
}
|
|
3034
|
+
};
|
|
3038
3035
|
/**
|
|
3039
3036
|
* The ESLint class is the primary class to use in Node.js applications.
|
|
3040
3037
|
* This class depends on the Node.js fs module and the file system, so you cannot use it in browsers.
|
|
3041
3038
|
*
|
|
3042
3039
|
* If you want to lint code on browsers, use the Linter class instead.
|
|
3043
3040
|
*/
|
|
3044
|
-
var LegacyESLint = class extends use_at_your_own_risk_1.LegacyESLint {};
|
|
3041
|
+
var LegacyESLint = class extends (use_at_your_own_risk_1.default.LegacyESLint ?? MissingLegacyESLint) {};
|
|
3045
3042
|
exports.LegacyESLint = LegacyESLint;
|
|
3046
3043
|
}));
|
|
3047
|
-
|
|
3048
3044
|
//#endregion
|
|
3049
|
-
//#region node_modules/.pnpm/@typescript-eslint+utils@8.
|
|
3045
|
+
//#region node_modules/.pnpm/@typescript-eslint+utils@8.57.0_eslint@10.0.3_jiti@2.6.1__typescript@5.9.3/node_modules/@typescript-eslint/utils/dist/ts-eslint/ESLint.js
|
|
3050
3046
|
var require_ESLint = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
3051
3047
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3052
3048
|
exports.LegacyESLint = exports.ESLint = exports.FlatESLint = void 0;
|
|
@@ -3075,9 +3071,8 @@ var require_ESLint = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
3075
3071
|
}
|
|
3076
3072
|
});
|
|
3077
3073
|
}));
|
|
3078
|
-
|
|
3079
3074
|
//#endregion
|
|
3080
|
-
//#region node_modules/.pnpm/@typescript-eslint+utils@8.
|
|
3075
|
+
//#region node_modules/.pnpm/@typescript-eslint+utils@8.57.0_eslint@10.0.3_jiti@2.6.1__typescript@5.9.3/node_modules/@typescript-eslint/utils/dist/ts-eslint/Linter.js
|
|
3081
3076
|
var require_Linter = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
3082
3077
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3083
3078
|
exports.Linter = void 0;
|
|
@@ -3090,33 +3085,28 @@ var require_Linter = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
3090
3085
|
var Linter = class extends eslint_1$2.Linter {};
|
|
3091
3086
|
exports.Linter = Linter;
|
|
3092
3087
|
}));
|
|
3093
|
-
|
|
3094
3088
|
//#endregion
|
|
3095
|
-
//#region node_modules/.pnpm/@typescript-eslint+utils@8.
|
|
3089
|
+
//#region node_modules/.pnpm/@typescript-eslint+utils@8.57.0_eslint@10.0.3_jiti@2.6.1__typescript@5.9.3/node_modules/@typescript-eslint/utils/dist/ts-eslint/Parser.js
|
|
3096
3090
|
var require_Parser = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
3097
3091
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3098
3092
|
}));
|
|
3099
|
-
|
|
3100
3093
|
//#endregion
|
|
3101
|
-
//#region node_modules/.pnpm/@typescript-eslint+utils@8.
|
|
3094
|
+
//#region node_modules/.pnpm/@typescript-eslint+utils@8.57.0_eslint@10.0.3_jiti@2.6.1__typescript@5.9.3/node_modules/@typescript-eslint/utils/dist/ts-eslint/ParserOptions.js
|
|
3102
3095
|
var require_ParserOptions = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
3103
3096
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3104
3097
|
}));
|
|
3105
|
-
|
|
3106
3098
|
//#endregion
|
|
3107
|
-
//#region node_modules/.pnpm/@typescript-eslint+utils@8.
|
|
3099
|
+
//#region node_modules/.pnpm/@typescript-eslint+utils@8.57.0_eslint@10.0.3_jiti@2.6.1__typescript@5.9.3/node_modules/@typescript-eslint/utils/dist/ts-eslint/Processor.js
|
|
3108
3100
|
var require_Processor = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
3109
3101
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3110
3102
|
}));
|
|
3111
|
-
|
|
3112
3103
|
//#endregion
|
|
3113
|
-
//#region node_modules/.pnpm/@typescript-eslint+utils@8.
|
|
3104
|
+
//#region node_modules/.pnpm/@typescript-eslint+utils@8.57.0_eslint@10.0.3_jiti@2.6.1__typescript@5.9.3/node_modules/@typescript-eslint/utils/dist/ts-eslint/Rule.js
|
|
3114
3105
|
var require_Rule = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
3115
3106
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3116
3107
|
}));
|
|
3117
|
-
|
|
3118
3108
|
//#endregion
|
|
3119
|
-
//#region node_modules/.pnpm/@typescript-eslint+utils@8.
|
|
3109
|
+
//#region node_modules/.pnpm/@typescript-eslint+utils@8.57.0_eslint@10.0.3_jiti@2.6.1__typescript@5.9.3/node_modules/@typescript-eslint/utils/dist/ts-eslint/RuleTester.js
|
|
3120
3110
|
var require_RuleTester = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
3121
3111
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3122
3112
|
exports.RuleTester = void 0;
|
|
@@ -3127,9 +3117,8 @@ var require_RuleTester = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
3127
3117
|
var RuleTester = class extends eslint_1$1.RuleTester {};
|
|
3128
3118
|
exports.RuleTester = RuleTester;
|
|
3129
3119
|
}));
|
|
3130
|
-
|
|
3131
3120
|
//#endregion
|
|
3132
|
-
//#region node_modules/.pnpm/eslint-visitor-keys@
|
|
3121
|
+
//#region node_modules/.pnpm/eslint-visitor-keys@5.0.0/node_modules/eslint-visitor-keys/dist/eslint-visitor-keys.cjs
|
|
3133
3122
|
var require_eslint_visitor_keys = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
3134
3123
|
/**
|
|
3135
3124
|
* @typedef {{ readonly [type: string]: ReadonlyArray<string> }} VisitorKeys
|
|
@@ -3339,18 +3328,15 @@ var require_eslint_visitor_keys = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
3339
3328
|
exports.getKeys = getKeys;
|
|
3340
3329
|
exports.unionWith = unionWith;
|
|
3341
3330
|
}));
|
|
3342
|
-
|
|
3343
3331
|
//#endregion
|
|
3344
|
-
//#region node_modules/.pnpm/@typescript-eslint+visitor-keys@8.
|
|
3332
|
+
//#region node_modules/.pnpm/@typescript-eslint+visitor-keys@8.57.0/node_modules/@typescript-eslint/visitor-keys/dist/get-keys.js
|
|
3345
3333
|
var require_get_keys = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
3346
3334
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3347
3335
|
exports.getKeys = void 0;
|
|
3348
|
-
|
|
3349
|
-
exports.getKeys = eslint_visitor_keys_1.getKeys;
|
|
3336
|
+
exports.getKeys = require_eslint_visitor_keys().getKeys;
|
|
3350
3337
|
}));
|
|
3351
|
-
|
|
3352
3338
|
//#endregion
|
|
3353
|
-
//#region node_modules/.pnpm/@typescript-eslint+visitor-keys@8.
|
|
3339
|
+
//#region node_modules/.pnpm/@typescript-eslint+visitor-keys@8.57.0/node_modules/@typescript-eslint/visitor-keys/dist/visitor-keys.js
|
|
3354
3340
|
var require_visitor_keys = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
3355
3341
|
var __createBinding = exports && exports.__createBinding || (Object.create ? (function(o, m, k, k2) {
|
|
3356
3342
|
if (k2 === void 0) k2 = k;
|
|
@@ -3376,9 +3362,9 @@ var require_visitor_keys = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
3376
3362
|
});
|
|
3377
3363
|
var __importStar = exports && exports.__importStar || (function() {
|
|
3378
3364
|
var ownKeys = function(o) {
|
|
3379
|
-
ownKeys = Object.getOwnPropertyNames || function(o
|
|
3365
|
+
ownKeys = Object.getOwnPropertyNames || function(o) {
|
|
3380
3366
|
var ar = [];
|
|
3381
|
-
for (var k in o
|
|
3367
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
3382
3368
|
return ar;
|
|
3383
3369
|
};
|
|
3384
3370
|
return ownKeys(o);
|
|
@@ -3623,9 +3609,8 @@ var require_visitor_keys = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
3623
3609
|
};
|
|
3624
3610
|
exports.visitorKeys = eslintVisitorKeys.unionWith(additionalKeys);
|
|
3625
3611
|
}));
|
|
3626
|
-
|
|
3627
3612
|
//#endregion
|
|
3628
|
-
//#region node_modules/.pnpm/@typescript-eslint+visitor-keys@8.
|
|
3613
|
+
//#region node_modules/.pnpm/@typescript-eslint+visitor-keys@8.57.0/node_modules/@typescript-eslint/visitor-keys/dist/index.js
|
|
3629
3614
|
var require_dist$2 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
3630
3615
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3631
3616
|
exports.visitorKeys = exports.getKeys = void 0;
|
|
@@ -3644,9 +3629,8 @@ var require_dist$2 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
3644
3629
|
}
|
|
3645
3630
|
});
|
|
3646
3631
|
}));
|
|
3647
|
-
|
|
3648
3632
|
//#endregion
|
|
3649
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
3633
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/assert.js
|
|
3650
3634
|
var require_assert = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
3651
3635
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3652
3636
|
exports.assert = assert;
|
|
@@ -3654,9 +3638,8 @@ var require_assert = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
3654
3638
|
if (value == null) throw new Error(message);
|
|
3655
3639
|
}
|
|
3656
3640
|
}));
|
|
3657
|
-
|
|
3658
3641
|
//#endregion
|
|
3659
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
3642
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/ID.js
|
|
3660
3643
|
var require_ID = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
3661
3644
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3662
3645
|
exports.createIdGenerator = createIdGenerator;
|
|
@@ -3676,9 +3659,8 @@ var require_ID = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
3676
3659
|
ID_CACHE.clear();
|
|
3677
3660
|
}
|
|
3678
3661
|
}));
|
|
3679
|
-
|
|
3680
3662
|
//#endregion
|
|
3681
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
3663
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionBase.js
|
|
3682
3664
|
var require_DefinitionBase = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
3683
3665
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3684
3666
|
exports.DefinitionBase = void 0;
|
|
@@ -3704,18 +3686,17 @@ var require_DefinitionBase = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
3704
3686
|
* @public
|
|
3705
3687
|
*/
|
|
3706
3688
|
parent;
|
|
3707
|
-
constructor(type, name
|
|
3689
|
+
constructor(type, name, node, parent) {
|
|
3708
3690
|
this.type = type;
|
|
3709
|
-
this.name = name
|
|
3691
|
+
this.name = name;
|
|
3710
3692
|
this.node = node;
|
|
3711
3693
|
this.parent = parent;
|
|
3712
3694
|
}
|
|
3713
3695
|
};
|
|
3714
3696
|
exports.DefinitionBase = DefinitionBase;
|
|
3715
3697
|
}));
|
|
3716
|
-
|
|
3717
3698
|
//#endregion
|
|
3718
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
3699
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionType.js
|
|
3719
3700
|
var require_DefinitionType = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
3720
3701
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3721
3702
|
exports.DefinitionType = void 0;
|
|
@@ -3734,9 +3715,8 @@ var require_DefinitionType = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
3734
3715
|
DefinitionType["Variable"] = "Variable";
|
|
3735
3716
|
})(DefinitionType || (exports.DefinitionType = DefinitionType = {}));
|
|
3736
3717
|
}));
|
|
3737
|
-
|
|
3738
3718
|
//#endregion
|
|
3739
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
3719
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/definition/CatchClauseDefinition.js
|
|
3740
3720
|
var require_CatchClauseDefinition = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
3741
3721
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3742
3722
|
exports.CatchClauseDefinition = void 0;
|
|
@@ -3745,15 +3725,14 @@ var require_CatchClauseDefinition = /* @__PURE__ */ __commonJSMin(((exports) =>
|
|
|
3745
3725
|
var CatchClauseDefinition = class extends DefinitionBase_1.DefinitionBase {
|
|
3746
3726
|
isTypeDefinition = false;
|
|
3747
3727
|
isVariableDefinition = true;
|
|
3748
|
-
constructor(name
|
|
3749
|
-
super(DefinitionType_1.DefinitionType.CatchClause, name
|
|
3728
|
+
constructor(name, node) {
|
|
3729
|
+
super(DefinitionType_1.DefinitionType.CatchClause, name, node, null);
|
|
3750
3730
|
}
|
|
3751
3731
|
};
|
|
3752
3732
|
exports.CatchClauseDefinition = CatchClauseDefinition;
|
|
3753
3733
|
}));
|
|
3754
|
-
|
|
3755
3734
|
//#endregion
|
|
3756
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
3735
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/definition/ClassNameDefinition.js
|
|
3757
3736
|
var require_ClassNameDefinition = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
3758
3737
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3759
3738
|
exports.ClassNameDefinition = void 0;
|
|
@@ -3762,21 +3741,19 @@ var require_ClassNameDefinition = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
3762
3741
|
var ClassNameDefinition = class extends DefinitionBase_1.DefinitionBase {
|
|
3763
3742
|
isTypeDefinition = true;
|
|
3764
3743
|
isVariableDefinition = true;
|
|
3765
|
-
constructor(name
|
|
3766
|
-
super(DefinitionType_1.DefinitionType.ClassName, name
|
|
3744
|
+
constructor(name, node) {
|
|
3745
|
+
super(DefinitionType_1.DefinitionType.ClassName, name, node, null);
|
|
3767
3746
|
}
|
|
3768
3747
|
};
|
|
3769
3748
|
exports.ClassNameDefinition = ClassNameDefinition;
|
|
3770
3749
|
}));
|
|
3771
|
-
|
|
3772
3750
|
//#endregion
|
|
3773
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
3751
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/definition/Definition.js
|
|
3774
3752
|
var require_Definition = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
3775
3753
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3776
3754
|
}));
|
|
3777
|
-
|
|
3778
3755
|
//#endregion
|
|
3779
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
3756
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/definition/FunctionNameDefinition.js
|
|
3780
3757
|
var require_FunctionNameDefinition = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
3781
3758
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3782
3759
|
exports.FunctionNameDefinition = void 0;
|
|
@@ -3785,15 +3762,14 @@ var require_FunctionNameDefinition = /* @__PURE__ */ __commonJSMin(((exports) =>
|
|
|
3785
3762
|
var FunctionNameDefinition = class extends DefinitionBase_1.DefinitionBase {
|
|
3786
3763
|
isTypeDefinition = false;
|
|
3787
3764
|
isVariableDefinition = true;
|
|
3788
|
-
constructor(name
|
|
3789
|
-
super(DefinitionType_1.DefinitionType.FunctionName, name
|
|
3765
|
+
constructor(name, node) {
|
|
3766
|
+
super(DefinitionType_1.DefinitionType.FunctionName, name, node, null);
|
|
3790
3767
|
}
|
|
3791
3768
|
};
|
|
3792
3769
|
exports.FunctionNameDefinition = FunctionNameDefinition;
|
|
3793
3770
|
}));
|
|
3794
|
-
|
|
3795
3771
|
//#endregion
|
|
3796
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
3772
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/definition/ImplicitGlobalVariableDefinition.js
|
|
3797
3773
|
var require_ImplicitGlobalVariableDefinition = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
3798
3774
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3799
3775
|
exports.ImplicitGlobalVariableDefinition = void 0;
|
|
@@ -3802,15 +3778,14 @@ var require_ImplicitGlobalVariableDefinition = /* @__PURE__ */ __commonJSMin(((e
|
|
|
3802
3778
|
var ImplicitGlobalVariableDefinition = class extends DefinitionBase_1.DefinitionBase {
|
|
3803
3779
|
isTypeDefinition = false;
|
|
3804
3780
|
isVariableDefinition = true;
|
|
3805
|
-
constructor(name
|
|
3806
|
-
super(DefinitionType_1.DefinitionType.ImplicitGlobalVariable, name
|
|
3781
|
+
constructor(name, node) {
|
|
3782
|
+
super(DefinitionType_1.DefinitionType.ImplicitGlobalVariable, name, node, null);
|
|
3807
3783
|
}
|
|
3808
3784
|
};
|
|
3809
3785
|
exports.ImplicitGlobalVariableDefinition = ImplicitGlobalVariableDefinition;
|
|
3810
3786
|
}));
|
|
3811
|
-
|
|
3812
3787
|
//#endregion
|
|
3813
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
3788
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/definition/ImportBindingDefinition.js
|
|
3814
3789
|
var require_ImportBindingDefinition = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
3815
3790
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3816
3791
|
exports.ImportBindingDefinition = void 0;
|
|
@@ -3819,15 +3794,14 @@ var require_ImportBindingDefinition = /* @__PURE__ */ __commonJSMin(((exports) =
|
|
|
3819
3794
|
var ImportBindingDefinition = class extends DefinitionBase_1.DefinitionBase {
|
|
3820
3795
|
isTypeDefinition = true;
|
|
3821
3796
|
isVariableDefinition = true;
|
|
3822
|
-
constructor(name
|
|
3823
|
-
super(DefinitionType_1.DefinitionType.ImportBinding, name
|
|
3797
|
+
constructor(name, node, decl) {
|
|
3798
|
+
super(DefinitionType_1.DefinitionType.ImportBinding, name, node, decl);
|
|
3824
3799
|
}
|
|
3825
3800
|
};
|
|
3826
3801
|
exports.ImportBindingDefinition = ImportBindingDefinition;
|
|
3827
3802
|
}));
|
|
3828
|
-
|
|
3829
3803
|
//#endregion
|
|
3830
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
3804
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/definition/ParameterDefinition.js
|
|
3831
3805
|
var require_ParameterDefinition = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
3832
3806
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3833
3807
|
exports.ParameterDefinition = void 0;
|
|
@@ -3840,16 +3814,15 @@ var require_ParameterDefinition = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
3840
3814
|
isTypeDefinition = false;
|
|
3841
3815
|
isVariableDefinition = true;
|
|
3842
3816
|
rest;
|
|
3843
|
-
constructor(name
|
|
3844
|
-
super(DefinitionType_1.DefinitionType.Parameter, name
|
|
3817
|
+
constructor(name, node, rest) {
|
|
3818
|
+
super(DefinitionType_1.DefinitionType.Parameter, name, node, null);
|
|
3845
3819
|
this.rest = rest;
|
|
3846
3820
|
}
|
|
3847
3821
|
};
|
|
3848
3822
|
exports.ParameterDefinition = ParameterDefinition;
|
|
3849
3823
|
}));
|
|
3850
|
-
|
|
3851
3824
|
//#endregion
|
|
3852
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
3825
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumMemberDefinition.js
|
|
3853
3826
|
var require_TSEnumMemberDefinition = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
3854
3827
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3855
3828
|
exports.TSEnumMemberDefinition = void 0;
|
|
@@ -3858,15 +3831,14 @@ var require_TSEnumMemberDefinition = /* @__PURE__ */ __commonJSMin(((exports) =>
|
|
|
3858
3831
|
var TSEnumMemberDefinition = class extends DefinitionBase_1.DefinitionBase {
|
|
3859
3832
|
isTypeDefinition = true;
|
|
3860
3833
|
isVariableDefinition = true;
|
|
3861
|
-
constructor(name
|
|
3862
|
-
super(DefinitionType_1.DefinitionType.TSEnumMember, name
|
|
3834
|
+
constructor(name, node) {
|
|
3835
|
+
super(DefinitionType_1.DefinitionType.TSEnumMember, name, node, null);
|
|
3863
3836
|
}
|
|
3864
3837
|
};
|
|
3865
3838
|
exports.TSEnumMemberDefinition = TSEnumMemberDefinition;
|
|
3866
3839
|
}));
|
|
3867
|
-
|
|
3868
3840
|
//#endregion
|
|
3869
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
3841
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumNameDefinition.js
|
|
3870
3842
|
var require_TSEnumNameDefinition = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
3871
3843
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3872
3844
|
exports.TSEnumNameDefinition = void 0;
|
|
@@ -3875,15 +3847,14 @@ var require_TSEnumNameDefinition = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
3875
3847
|
var TSEnumNameDefinition = class extends DefinitionBase_1.DefinitionBase {
|
|
3876
3848
|
isTypeDefinition = true;
|
|
3877
3849
|
isVariableDefinition = true;
|
|
3878
|
-
constructor(name
|
|
3879
|
-
super(DefinitionType_1.DefinitionType.TSEnumName, name
|
|
3850
|
+
constructor(name, node) {
|
|
3851
|
+
super(DefinitionType_1.DefinitionType.TSEnumName, name, node, null);
|
|
3880
3852
|
}
|
|
3881
3853
|
};
|
|
3882
3854
|
exports.TSEnumNameDefinition = TSEnumNameDefinition;
|
|
3883
3855
|
}));
|
|
3884
|
-
|
|
3885
3856
|
//#endregion
|
|
3886
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
3857
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/definition/TSModuleNameDefinition.js
|
|
3887
3858
|
var require_TSModuleNameDefinition = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
3888
3859
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3889
3860
|
exports.TSModuleNameDefinition = void 0;
|
|
@@ -3892,15 +3863,14 @@ var require_TSModuleNameDefinition = /* @__PURE__ */ __commonJSMin(((exports) =>
|
|
|
3892
3863
|
var TSModuleNameDefinition = class extends DefinitionBase_1.DefinitionBase {
|
|
3893
3864
|
isTypeDefinition = true;
|
|
3894
3865
|
isVariableDefinition = true;
|
|
3895
|
-
constructor(name
|
|
3896
|
-
super(DefinitionType_1.DefinitionType.TSModuleName, name
|
|
3866
|
+
constructor(name, node) {
|
|
3867
|
+
super(DefinitionType_1.DefinitionType.TSModuleName, name, node, null);
|
|
3897
3868
|
}
|
|
3898
3869
|
};
|
|
3899
3870
|
exports.TSModuleNameDefinition = TSModuleNameDefinition;
|
|
3900
3871
|
}));
|
|
3901
|
-
|
|
3902
3872
|
//#endregion
|
|
3903
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
3873
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/definition/TypeDefinition.js
|
|
3904
3874
|
var require_TypeDefinition = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
3905
3875
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3906
3876
|
exports.TypeDefinition = void 0;
|
|
@@ -3909,15 +3879,14 @@ var require_TypeDefinition = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
3909
3879
|
var TypeDefinition = class extends DefinitionBase_1.DefinitionBase {
|
|
3910
3880
|
isTypeDefinition = true;
|
|
3911
3881
|
isVariableDefinition = false;
|
|
3912
|
-
constructor(name
|
|
3913
|
-
super(DefinitionType_1.DefinitionType.Type, name
|
|
3882
|
+
constructor(name, node) {
|
|
3883
|
+
super(DefinitionType_1.DefinitionType.Type, name, node, null);
|
|
3914
3884
|
}
|
|
3915
3885
|
};
|
|
3916
3886
|
exports.TypeDefinition = TypeDefinition;
|
|
3917
3887
|
}));
|
|
3918
|
-
|
|
3919
3888
|
//#endregion
|
|
3920
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
3889
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/definition/VariableDefinition.js
|
|
3921
3890
|
var require_VariableDefinition = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
3922
3891
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3923
3892
|
exports.VariableDefinition = void 0;
|
|
@@ -3926,15 +3895,14 @@ var require_VariableDefinition = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
3926
3895
|
var VariableDefinition = class extends DefinitionBase_1.DefinitionBase {
|
|
3927
3896
|
isTypeDefinition = false;
|
|
3928
3897
|
isVariableDefinition = true;
|
|
3929
|
-
constructor(name
|
|
3930
|
-
super(DefinitionType_1.DefinitionType.Variable, name
|
|
3898
|
+
constructor(name, node, decl) {
|
|
3899
|
+
super(DefinitionType_1.DefinitionType.Variable, name, node, decl);
|
|
3931
3900
|
}
|
|
3932
3901
|
};
|
|
3933
3902
|
exports.VariableDefinition = VariableDefinition;
|
|
3934
3903
|
}));
|
|
3935
|
-
|
|
3936
3904
|
//#endregion
|
|
3937
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
3905
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/definition/index.js
|
|
3938
3906
|
var require_definition = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
3939
3907
|
var __createBinding = exports && exports.__createBinding || (Object.create ? (function(o, m, k, k2) {
|
|
3940
3908
|
if (k2 === void 0) k2 = k;
|
|
@@ -3950,8 +3918,8 @@ var require_definition = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
3950
3918
|
if (k2 === void 0) k2 = k;
|
|
3951
3919
|
o[k2] = m[k];
|
|
3952
3920
|
}));
|
|
3953
|
-
var __exportStar = exports && exports.__exportStar || function(m, exports$
|
|
3954
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports$
|
|
3921
|
+
var __exportStar = exports && exports.__exportStar || function(m, exports$6) {
|
|
3922
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports$6, p)) __createBinding(exports$6, m, p);
|
|
3955
3923
|
};
|
|
3956
3924
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3957
3925
|
__exportStar(require_CatchClauseDefinition(), exports);
|
|
@@ -3968,9 +3936,8 @@ var require_definition = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
3968
3936
|
__exportStar(require_TypeDefinition(), exports);
|
|
3969
3937
|
__exportStar(require_VariableDefinition(), exports);
|
|
3970
3938
|
}));
|
|
3971
|
-
|
|
3972
3939
|
//#endregion
|
|
3973
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
3940
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/base-config.js
|
|
3974
3941
|
var require_base_config = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
3975
3942
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3976
3943
|
exports.TYPE_VALUE = exports.VALUE = exports.TYPE = void 0;
|
|
@@ -3990,9 +3957,8 @@ var require_base_config = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
3990
3957
|
isValueVariable: true
|
|
3991
3958
|
});
|
|
3992
3959
|
}));
|
|
3993
|
-
|
|
3994
3960
|
//#endregion
|
|
3995
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
3961
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/decorators.js
|
|
3996
3962
|
var require_decorators = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
3997
3963
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3998
3964
|
exports.decorators = void 0;
|
|
@@ -4015,9 +3981,8 @@ var require_decorators = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
4015
3981
|
]
|
|
4016
3982
|
};
|
|
4017
3983
|
}));
|
|
4018
|
-
|
|
4019
3984
|
//#endregion
|
|
4020
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
3985
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/decorators.legacy.js
|
|
4021
3986
|
var require_decorators_legacy = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
4022
3987
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4023
3988
|
exports.decorators_legacy = void 0;
|
|
@@ -4032,9 +3997,8 @@ var require_decorators_legacy = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
4032
3997
|
]
|
|
4033
3998
|
};
|
|
4034
3999
|
}));
|
|
4035
|
-
|
|
4036
4000
|
//#endregion
|
|
4037
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
4001
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.js
|
|
4038
4002
|
var require_dom = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
4039
4003
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4040
4004
|
exports.dom = void 0;
|
|
@@ -5588,9 +5552,8 @@ var require_dom = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
5588
5552
|
]
|
|
5589
5553
|
};
|
|
5590
5554
|
}));
|
|
5591
|
-
|
|
5592
5555
|
//#endregion
|
|
5593
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
5556
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.asynciterable.js
|
|
5594
5557
|
var require_dom_asynciterable = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
5595
5558
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5596
5559
|
exports.dom_asynciterable = void 0;
|
|
@@ -5605,9 +5568,8 @@ var require_dom_asynciterable = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
5605
5568
|
]
|
|
5606
5569
|
};
|
|
5607
5570
|
}));
|
|
5608
|
-
|
|
5609
5571
|
//#endregion
|
|
5610
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
5572
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.iterable.js
|
|
5611
5573
|
var require_dom_iterable = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
5612
5574
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5613
5575
|
exports.dom_iterable = void 0;
|
|
@@ -5693,9 +5655,8 @@ var require_dom_iterable = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
5693
5655
|
]
|
|
5694
5656
|
};
|
|
5695
5657
|
}));
|
|
5696
|
-
|
|
5697
5658
|
//#endregion
|
|
5698
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
5659
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es5.js
|
|
5699
5660
|
var require_es5 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
5700
5661
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5701
5662
|
exports.es5 = void 0;
|
|
@@ -5811,9 +5772,8 @@ var require_es5 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
5811
5772
|
]
|
|
5812
5773
|
};
|
|
5813
5774
|
}));
|
|
5814
|
-
|
|
5815
5775
|
//#endregion
|
|
5816
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
5776
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.collection.js
|
|
5817
5777
|
var require_es2015_collection = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
5818
5778
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5819
5779
|
exports.es2015_collection = void 0;
|
|
@@ -5834,9 +5794,8 @@ var require_es2015_collection = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
5834
5794
|
]
|
|
5835
5795
|
};
|
|
5836
5796
|
}));
|
|
5837
|
-
|
|
5838
5797
|
//#endregion
|
|
5839
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
5798
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.core.js
|
|
5840
5799
|
var require_es2015_core = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
5841
5800
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5842
5801
|
exports.es2015_core = void 0;
|
|
@@ -5868,28 +5827,24 @@ var require_es2015_core = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
5868
5827
|
]
|
|
5869
5828
|
};
|
|
5870
5829
|
}));
|
|
5871
|
-
|
|
5872
5830
|
//#endregion
|
|
5873
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
5831
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.js
|
|
5874
5832
|
var require_es2015_symbol = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
5875
5833
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5876
5834
|
exports.es2015_symbol = void 0;
|
|
5877
|
-
const base_config_1 = require_base_config();
|
|
5878
5835
|
exports.es2015_symbol = {
|
|
5879
5836
|
libs: [],
|
|
5880
|
-
variables: [["SymbolConstructor",
|
|
5837
|
+
variables: [["SymbolConstructor", require_base_config().TYPE]]
|
|
5881
5838
|
};
|
|
5882
5839
|
}));
|
|
5883
|
-
|
|
5884
5840
|
//#endregion
|
|
5885
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
5841
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.iterable.js
|
|
5886
5842
|
var require_es2015_iterable = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
5887
5843
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5888
5844
|
exports.es2015_iterable = void 0;
|
|
5889
5845
|
const base_config_1 = require_base_config();
|
|
5890
|
-
const es2015_symbol_1 = require_es2015_symbol();
|
|
5891
5846
|
exports.es2015_iterable = {
|
|
5892
|
-
libs: [
|
|
5847
|
+
libs: [require_es2015_symbol().es2015_symbol],
|
|
5893
5848
|
variables: [
|
|
5894
5849
|
["SymbolConstructor", base_config_1.TYPE],
|
|
5895
5850
|
["IteratorYieldResult", base_config_1.TYPE],
|
|
@@ -5942,16 +5897,14 @@ var require_es2015_iterable = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
5942
5897
|
]
|
|
5943
5898
|
};
|
|
5944
5899
|
}));
|
|
5945
|
-
|
|
5946
5900
|
//#endregion
|
|
5947
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
5901
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.generator.js
|
|
5948
5902
|
var require_es2015_generator = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
5949
5903
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5950
5904
|
exports.es2015_generator = void 0;
|
|
5951
5905
|
const base_config_1 = require_base_config();
|
|
5952
|
-
const es2015_iterable_1 = require_es2015_iterable();
|
|
5953
5906
|
exports.es2015_generator = {
|
|
5954
|
-
libs: [
|
|
5907
|
+
libs: [require_es2015_iterable().es2015_iterable],
|
|
5955
5908
|
variables: [
|
|
5956
5909
|
["Generator", base_config_1.TYPE],
|
|
5957
5910
|
["GeneratorFunction", base_config_1.TYPE],
|
|
@@ -5959,21 +5912,18 @@ var require_es2015_generator = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
5959
5912
|
]
|
|
5960
5913
|
};
|
|
5961
5914
|
}));
|
|
5962
|
-
|
|
5963
5915
|
//#endregion
|
|
5964
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
5916
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.promise.js
|
|
5965
5917
|
var require_es2015_promise = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
5966
5918
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5967
5919
|
exports.es2015_promise = void 0;
|
|
5968
|
-
const base_config_1 = require_base_config();
|
|
5969
5920
|
exports.es2015_promise = {
|
|
5970
5921
|
libs: [],
|
|
5971
|
-
variables: [["PromiseConstructor",
|
|
5922
|
+
variables: [["PromiseConstructor", require_base_config().TYPE]]
|
|
5972
5923
|
};
|
|
5973
5924
|
}));
|
|
5974
|
-
|
|
5975
5925
|
//#endregion
|
|
5976
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
5926
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.proxy.js
|
|
5977
5927
|
var require_es2015_proxy = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
5978
5928
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5979
5929
|
exports.es2015_proxy = void 0;
|
|
@@ -5983,28 +5933,24 @@ var require_es2015_proxy = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
5983
5933
|
variables: [["ProxyHandler", base_config_1.TYPE], ["ProxyConstructor", base_config_1.TYPE]]
|
|
5984
5934
|
};
|
|
5985
5935
|
}));
|
|
5986
|
-
|
|
5987
5936
|
//#endregion
|
|
5988
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
5937
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.reflect.js
|
|
5989
5938
|
var require_es2015_reflect = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
5990
5939
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5991
5940
|
exports.es2015_reflect = void 0;
|
|
5992
|
-
const base_config_1 = require_base_config();
|
|
5993
5941
|
exports.es2015_reflect = {
|
|
5994
5942
|
libs: [],
|
|
5995
|
-
variables: [["Reflect",
|
|
5943
|
+
variables: [["Reflect", require_base_config().TYPE_VALUE]]
|
|
5996
5944
|
};
|
|
5997
5945
|
}));
|
|
5998
|
-
|
|
5999
5946
|
//#endregion
|
|
6000
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
5947
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.wellknown.js
|
|
6001
5948
|
var require_es2015_symbol_wellknown = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6002
5949
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6003
5950
|
exports.es2015_symbol_wellknown = void 0;
|
|
6004
5951
|
const base_config_1 = require_base_config();
|
|
6005
|
-
const es2015_symbol_1 = require_es2015_symbol();
|
|
6006
5952
|
exports.es2015_symbol_wellknown = {
|
|
6007
|
-
libs: [
|
|
5953
|
+
libs: [require_es2015_symbol().es2015_symbol],
|
|
6008
5954
|
variables: [
|
|
6009
5955
|
["SymbolConstructor", base_config_1.TYPE],
|
|
6010
5956
|
["Symbol", base_config_1.TYPE],
|
|
@@ -6042,9 +5988,8 @@ var require_es2015_symbol_wellknown = /* @__PURE__ */ __commonJSMin(((exports) =
|
|
|
6042
5988
|
]
|
|
6043
5989
|
};
|
|
6044
5990
|
}));
|
|
6045
|
-
|
|
6046
5991
|
//#endregion
|
|
6047
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
5992
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es6.js
|
|
6048
5993
|
var require_es6 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6049
5994
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6050
5995
|
exports.es6 = void 0;
|
|
@@ -6074,9 +6019,8 @@ var require_es6 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
6074
6019
|
variables: []
|
|
6075
6020
|
};
|
|
6076
6021
|
}));
|
|
6077
|
-
|
|
6078
6022
|
//#endregion
|
|
6079
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
6023
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.js
|
|
6080
6024
|
var require_es2015 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6081
6025
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6082
6026
|
exports.es2015 = void 0;
|
|
@@ -6106,9 +6050,8 @@ var require_es2015 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
6106
6050
|
variables: []
|
|
6107
6051
|
};
|
|
6108
6052
|
}));
|
|
6109
|
-
|
|
6110
6053
|
//#endregion
|
|
6111
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
6054
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.array.include.js
|
|
6112
6055
|
var require_es2016_array_include = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6113
6056
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6114
6057
|
exports.es2016_array_include = void 0;
|
|
@@ -6130,21 +6073,18 @@ var require_es2016_array_include = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
6130
6073
|
]
|
|
6131
6074
|
};
|
|
6132
6075
|
}));
|
|
6133
|
-
|
|
6134
6076
|
//#endregion
|
|
6135
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
6077
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.intl.js
|
|
6136
6078
|
var require_es2016_intl = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6137
6079
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6138
6080
|
exports.es2016_intl = void 0;
|
|
6139
|
-
const base_config_1 = require_base_config();
|
|
6140
6081
|
exports.es2016_intl = {
|
|
6141
6082
|
libs: [],
|
|
6142
|
-
variables: [["Intl",
|
|
6083
|
+
variables: [["Intl", require_base_config().TYPE_VALUE]]
|
|
6143
6084
|
};
|
|
6144
6085
|
}));
|
|
6145
|
-
|
|
6146
6086
|
//#endregion
|
|
6147
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
6087
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es7.js
|
|
6148
6088
|
var require_es7 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6149
6089
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6150
6090
|
exports.es7 = void 0;
|
|
@@ -6160,9 +6100,8 @@ var require_es7 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
6160
6100
|
variables: []
|
|
6161
6101
|
};
|
|
6162
6102
|
}));
|
|
6163
|
-
|
|
6164
6103
|
//#endregion
|
|
6165
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
6104
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.js
|
|
6166
6105
|
var require_es2016 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6167
6106
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6168
6107
|
exports.es2016 = void 0;
|
|
@@ -6178,9 +6117,8 @@ var require_es2016 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
6178
6117
|
variables: []
|
|
6179
6118
|
};
|
|
6180
6119
|
}));
|
|
6181
|
-
|
|
6182
6120
|
//#endregion
|
|
6183
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
6121
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/scripthost.js
|
|
6184
6122
|
var require_scripthost = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6185
6123
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6186
6124
|
exports.scripthost = void 0;
|
|
@@ -6204,9 +6142,8 @@ var require_scripthost = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
6204
6142
|
]
|
|
6205
6143
|
};
|
|
6206
6144
|
}));
|
|
6207
|
-
|
|
6208
6145
|
//#endregion
|
|
6209
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
6146
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.importscripts.js
|
|
6210
6147
|
var require_webworker_importscripts = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6211
6148
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6212
6149
|
exports.webworker_importscripts = void 0;
|
|
@@ -6215,9 +6152,8 @@ var require_webworker_importscripts = /* @__PURE__ */ __commonJSMin(((exports) =
|
|
|
6215
6152
|
variables: []
|
|
6216
6153
|
};
|
|
6217
6154
|
}));
|
|
6218
|
-
|
|
6219
6155
|
//#endregion
|
|
6220
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
6156
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.full.js
|
|
6221
6157
|
var require_es2016_full = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6222
6158
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6223
6159
|
exports.es2016_full = void 0;
|
|
@@ -6237,57 +6173,48 @@ var require_es2016_full = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
6237
6173
|
variables: []
|
|
6238
6174
|
};
|
|
6239
6175
|
}));
|
|
6240
|
-
|
|
6241
6176
|
//#endregion
|
|
6242
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
6177
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.arraybuffer.js
|
|
6243
6178
|
var require_es2017_arraybuffer = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6244
6179
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6245
6180
|
exports.es2017_arraybuffer = void 0;
|
|
6246
|
-
const base_config_1 = require_base_config();
|
|
6247
6181
|
exports.es2017_arraybuffer = {
|
|
6248
6182
|
libs: [],
|
|
6249
|
-
variables: [["ArrayBufferConstructor",
|
|
6183
|
+
variables: [["ArrayBufferConstructor", require_base_config().TYPE]]
|
|
6250
6184
|
};
|
|
6251
6185
|
}));
|
|
6252
|
-
|
|
6253
6186
|
//#endregion
|
|
6254
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
6187
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.date.js
|
|
6255
6188
|
var require_es2017_date = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6256
6189
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6257
6190
|
exports.es2017_date = void 0;
|
|
6258
|
-
const base_config_1 = require_base_config();
|
|
6259
6191
|
exports.es2017_date = {
|
|
6260
6192
|
libs: [],
|
|
6261
|
-
variables: [["DateConstructor",
|
|
6193
|
+
variables: [["DateConstructor", require_base_config().TYPE]]
|
|
6262
6194
|
};
|
|
6263
6195
|
}));
|
|
6264
|
-
|
|
6265
6196
|
//#endregion
|
|
6266
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
6197
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.intl.js
|
|
6267
6198
|
var require_es2017_intl = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6268
6199
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6269
6200
|
exports.es2017_intl = void 0;
|
|
6270
|
-
const base_config_1 = require_base_config();
|
|
6271
6201
|
exports.es2017_intl = {
|
|
6272
6202
|
libs: [],
|
|
6273
|
-
variables: [["Intl",
|
|
6203
|
+
variables: [["Intl", require_base_config().TYPE_VALUE]]
|
|
6274
6204
|
};
|
|
6275
6205
|
}));
|
|
6276
|
-
|
|
6277
6206
|
//#endregion
|
|
6278
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
6207
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.object.js
|
|
6279
6208
|
var require_es2017_object = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6280
6209
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6281
6210
|
exports.es2017_object = void 0;
|
|
6282
|
-
const base_config_1 = require_base_config();
|
|
6283
6211
|
exports.es2017_object = {
|
|
6284
6212
|
libs: [],
|
|
6285
|
-
variables: [["ObjectConstructor",
|
|
6213
|
+
variables: [["ObjectConstructor", require_base_config().TYPE]]
|
|
6286
6214
|
};
|
|
6287
6215
|
}));
|
|
6288
|
-
|
|
6289
6216
|
//#endregion
|
|
6290
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
6217
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.sharedmemory.js
|
|
6291
6218
|
var require_es2017_sharedmemory = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6292
6219
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6293
6220
|
exports.es2017_sharedmemory = void 0;
|
|
@@ -6304,21 +6231,18 @@ var require_es2017_sharedmemory = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
6304
6231
|
]
|
|
6305
6232
|
};
|
|
6306
6233
|
}));
|
|
6307
|
-
|
|
6308
6234
|
//#endregion
|
|
6309
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
6235
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.string.js
|
|
6310
6236
|
var require_es2017_string = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6311
6237
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6312
6238
|
exports.es2017_string = void 0;
|
|
6313
|
-
const base_config_1 = require_base_config();
|
|
6314
6239
|
exports.es2017_string = {
|
|
6315
6240
|
libs: [],
|
|
6316
|
-
variables: [["String",
|
|
6241
|
+
variables: [["String", require_base_config().TYPE]]
|
|
6317
6242
|
};
|
|
6318
6243
|
}));
|
|
6319
|
-
|
|
6320
6244
|
//#endregion
|
|
6321
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
6245
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.typedarrays.js
|
|
6322
6246
|
var require_es2017_typedarrays = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6323
6247
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6324
6248
|
exports.es2017_typedarrays = void 0;
|
|
@@ -6338,9 +6262,8 @@ var require_es2017_typedarrays = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
6338
6262
|
]
|
|
6339
6263
|
};
|
|
6340
6264
|
}));
|
|
6341
|
-
|
|
6342
6265
|
//#endregion
|
|
6343
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
6266
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.js
|
|
6344
6267
|
var require_es2017 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6345
6268
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6346
6269
|
exports.es2017 = void 0;
|
|
@@ -6366,9 +6289,8 @@ var require_es2017 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
6366
6289
|
variables: []
|
|
6367
6290
|
};
|
|
6368
6291
|
}));
|
|
6369
|
-
|
|
6370
6292
|
//#endregion
|
|
6371
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
6293
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.full.js
|
|
6372
6294
|
var require_es2017_full = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6373
6295
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6374
6296
|
exports.es2017_full = void 0;
|
|
@@ -6388,17 +6310,15 @@ var require_es2017_full = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
6388
6310
|
variables: []
|
|
6389
6311
|
};
|
|
6390
6312
|
}));
|
|
6391
|
-
|
|
6392
6313
|
//#endregion
|
|
6393
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
6314
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asynciterable.js
|
|
6394
6315
|
var require_es2018_asynciterable = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6395
6316
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6396
6317
|
exports.es2018_asynciterable = void 0;
|
|
6397
6318
|
const base_config_1 = require_base_config();
|
|
6398
6319
|
const es2015_iterable_1 = require_es2015_iterable();
|
|
6399
|
-
const es2015_symbol_1 = require_es2015_symbol();
|
|
6400
6320
|
exports.es2018_asynciterable = {
|
|
6401
|
-
libs: [
|
|
6321
|
+
libs: [require_es2015_symbol().es2015_symbol, es2015_iterable_1.es2015_iterable],
|
|
6402
6322
|
variables: [
|
|
6403
6323
|
["SymbolConstructor", base_config_1.TYPE],
|
|
6404
6324
|
["AsyncIterator", base_config_1.TYPE],
|
|
@@ -6408,16 +6328,14 @@ var require_es2018_asynciterable = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
6408
6328
|
]
|
|
6409
6329
|
};
|
|
6410
6330
|
}));
|
|
6411
|
-
|
|
6412
6331
|
//#endregion
|
|
6413
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
6332
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asyncgenerator.js
|
|
6414
6333
|
var require_es2018_asyncgenerator = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6415
6334
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6416
6335
|
exports.es2018_asyncgenerator = void 0;
|
|
6417
6336
|
const base_config_1 = require_base_config();
|
|
6418
|
-
const es2018_asynciterable_1 = require_es2018_asynciterable();
|
|
6419
6337
|
exports.es2018_asyncgenerator = {
|
|
6420
|
-
libs: [
|
|
6338
|
+
libs: [require_es2018_asynciterable().es2018_asynciterable],
|
|
6421
6339
|
variables: [
|
|
6422
6340
|
["AsyncGenerator", base_config_1.TYPE],
|
|
6423
6341
|
["AsyncGeneratorFunction", base_config_1.TYPE],
|
|
@@ -6425,33 +6343,28 @@ var require_es2018_asyncgenerator = /* @__PURE__ */ __commonJSMin(((exports) =>
|
|
|
6425
6343
|
]
|
|
6426
6344
|
};
|
|
6427
6345
|
}));
|
|
6428
|
-
|
|
6429
6346
|
//#endregion
|
|
6430
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
6347
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.intl.js
|
|
6431
6348
|
var require_es2018_intl = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6432
6349
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6433
6350
|
exports.es2018_intl = void 0;
|
|
6434
|
-
const base_config_1 = require_base_config();
|
|
6435
6351
|
exports.es2018_intl = {
|
|
6436
6352
|
libs: [],
|
|
6437
|
-
variables: [["Intl",
|
|
6353
|
+
variables: [["Intl", require_base_config().TYPE_VALUE]]
|
|
6438
6354
|
};
|
|
6439
6355
|
}));
|
|
6440
|
-
|
|
6441
6356
|
//#endregion
|
|
6442
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
6357
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.promise.js
|
|
6443
6358
|
var require_es2018_promise = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6444
6359
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6445
6360
|
exports.es2018_promise = void 0;
|
|
6446
|
-
const base_config_1 = require_base_config();
|
|
6447
6361
|
exports.es2018_promise = {
|
|
6448
6362
|
libs: [],
|
|
6449
|
-
variables: [["Promise",
|
|
6363
|
+
variables: [["Promise", require_base_config().TYPE]]
|
|
6450
6364
|
};
|
|
6451
6365
|
}));
|
|
6452
|
-
|
|
6453
6366
|
//#endregion
|
|
6454
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
6367
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.regexp.js
|
|
6455
6368
|
var require_es2018_regexp = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6456
6369
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6457
6370
|
exports.es2018_regexp = void 0;
|
|
@@ -6465,9 +6378,8 @@ var require_es2018_regexp = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
6465
6378
|
]
|
|
6466
6379
|
};
|
|
6467
6380
|
}));
|
|
6468
|
-
|
|
6469
6381
|
//#endregion
|
|
6470
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
6382
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.js
|
|
6471
6383
|
var require_es2018 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6472
6384
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6473
6385
|
exports.es2018 = void 0;
|
|
@@ -6489,9 +6401,8 @@ var require_es2018 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
6489
6401
|
variables: []
|
|
6490
6402
|
};
|
|
6491
6403
|
}));
|
|
6492
|
-
|
|
6493
6404
|
//#endregion
|
|
6494
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
6405
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.full.js
|
|
6495
6406
|
var require_es2018_full = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6496
6407
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6497
6408
|
exports.es2018_full = void 0;
|
|
@@ -6513,9 +6424,8 @@ var require_es2018_full = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
6513
6424
|
variables: []
|
|
6514
6425
|
};
|
|
6515
6426
|
}));
|
|
6516
|
-
|
|
6517
6427
|
//#endregion
|
|
6518
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
6428
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.array.js
|
|
6519
6429
|
var require_es2019_array = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6520
6430
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6521
6431
|
exports.es2019_array = void 0;
|
|
@@ -6529,58 +6439,49 @@ var require_es2019_array = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
6529
6439
|
]
|
|
6530
6440
|
};
|
|
6531
6441
|
}));
|
|
6532
|
-
|
|
6533
6442
|
//#endregion
|
|
6534
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
6443
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.intl.js
|
|
6535
6444
|
var require_es2019_intl = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6536
6445
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6537
6446
|
exports.es2019_intl = void 0;
|
|
6538
|
-
const base_config_1 = require_base_config();
|
|
6539
6447
|
exports.es2019_intl = {
|
|
6540
6448
|
libs: [],
|
|
6541
|
-
variables: [["Intl",
|
|
6449
|
+
variables: [["Intl", require_base_config().TYPE_VALUE]]
|
|
6542
6450
|
};
|
|
6543
6451
|
}));
|
|
6544
|
-
|
|
6545
6452
|
//#endregion
|
|
6546
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
6453
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.object.js
|
|
6547
6454
|
var require_es2019_object = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6548
6455
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6549
6456
|
exports.es2019_object = void 0;
|
|
6550
6457
|
const base_config_1 = require_base_config();
|
|
6551
|
-
const es2015_iterable_1 = require_es2015_iterable();
|
|
6552
6458
|
exports.es2019_object = {
|
|
6553
|
-
libs: [
|
|
6459
|
+
libs: [require_es2015_iterable().es2015_iterable],
|
|
6554
6460
|
variables: [["ObjectConstructor", base_config_1.TYPE]]
|
|
6555
6461
|
};
|
|
6556
6462
|
}));
|
|
6557
|
-
|
|
6558
6463
|
//#endregion
|
|
6559
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
6464
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.string.js
|
|
6560
6465
|
var require_es2019_string = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6561
6466
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6562
6467
|
exports.es2019_string = void 0;
|
|
6563
|
-
const base_config_1 = require_base_config();
|
|
6564
6468
|
exports.es2019_string = {
|
|
6565
6469
|
libs: [],
|
|
6566
|
-
variables: [["String",
|
|
6470
|
+
variables: [["String", require_base_config().TYPE]]
|
|
6567
6471
|
};
|
|
6568
6472
|
}));
|
|
6569
|
-
|
|
6570
6473
|
//#endregion
|
|
6571
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
6474
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.symbol.js
|
|
6572
6475
|
var require_es2019_symbol = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6573
6476
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6574
6477
|
exports.es2019_symbol = void 0;
|
|
6575
|
-
const base_config_1 = require_base_config();
|
|
6576
6478
|
exports.es2019_symbol = {
|
|
6577
6479
|
libs: [],
|
|
6578
|
-
variables: [["Symbol",
|
|
6480
|
+
variables: [["Symbol", require_base_config().TYPE]]
|
|
6579
6481
|
};
|
|
6580
6482
|
}));
|
|
6581
|
-
|
|
6582
6483
|
//#endregion
|
|
6583
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
6484
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.js
|
|
6584
6485
|
var require_es2019 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6585
6486
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6586
6487
|
exports.es2019 = void 0;
|
|
@@ -6602,9 +6503,8 @@ var require_es2019 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
6602
6503
|
variables: []
|
|
6603
6504
|
};
|
|
6604
6505
|
}));
|
|
6605
|
-
|
|
6606
6506
|
//#endregion
|
|
6607
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
6507
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.full.js
|
|
6608
6508
|
var require_es2019_full = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6609
6509
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6610
6510
|
exports.es2019_full = void 0;
|
|
@@ -6626,29 +6526,25 @@ var require_es2019_full = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
6626
6526
|
variables: []
|
|
6627
6527
|
};
|
|
6628
6528
|
}));
|
|
6629
|
-
|
|
6630
6529
|
//#endregion
|
|
6631
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
6530
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.intl.js
|
|
6632
6531
|
var require_es2020_intl = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6633
6532
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6634
6533
|
exports.es2020_intl = void 0;
|
|
6635
6534
|
const base_config_1 = require_base_config();
|
|
6636
|
-
const es2018_intl_1 = require_es2018_intl();
|
|
6637
6535
|
exports.es2020_intl = {
|
|
6638
|
-
libs: [
|
|
6536
|
+
libs: [require_es2018_intl().es2018_intl],
|
|
6639
6537
|
variables: [["Intl", base_config_1.TYPE_VALUE]]
|
|
6640
6538
|
};
|
|
6641
6539
|
}));
|
|
6642
|
-
|
|
6643
6540
|
//#endregion
|
|
6644
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
6541
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.bigint.js
|
|
6645
6542
|
var require_es2020_bigint = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6646
6543
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6647
6544
|
exports.es2020_bigint = void 0;
|
|
6648
6545
|
const base_config_1 = require_base_config();
|
|
6649
|
-
const es2020_intl_1 = require_es2020_intl();
|
|
6650
6546
|
exports.es2020_bigint = {
|
|
6651
|
-
libs: [
|
|
6547
|
+
libs: [require_es2020_intl().es2020_intl],
|
|
6652
6548
|
variables: [
|
|
6653
6549
|
["BigIntToLocaleStringOptions", base_config_1.TYPE],
|
|
6654
6550
|
["BigInt", base_config_1.TYPE_VALUE],
|
|
@@ -6662,35 +6558,30 @@ var require_es2020_bigint = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
6662
6558
|
]
|
|
6663
6559
|
};
|
|
6664
6560
|
}));
|
|
6665
|
-
|
|
6666
6561
|
//#endregion
|
|
6667
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
6562
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.date.js
|
|
6668
6563
|
var require_es2020_date = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6669
6564
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6670
6565
|
exports.es2020_date = void 0;
|
|
6671
6566
|
const base_config_1 = require_base_config();
|
|
6672
|
-
const es2020_intl_1 = require_es2020_intl();
|
|
6673
6567
|
exports.es2020_date = {
|
|
6674
|
-
libs: [
|
|
6568
|
+
libs: [require_es2020_intl().es2020_intl],
|
|
6675
6569
|
variables: [["Date", base_config_1.TYPE]]
|
|
6676
6570
|
};
|
|
6677
6571
|
}));
|
|
6678
|
-
|
|
6679
6572
|
//#endregion
|
|
6680
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
6573
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.number.js
|
|
6681
6574
|
var require_es2020_number = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6682
6575
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6683
6576
|
exports.es2020_number = void 0;
|
|
6684
6577
|
const base_config_1 = require_base_config();
|
|
6685
|
-
const es2020_intl_1 = require_es2020_intl();
|
|
6686
6578
|
exports.es2020_number = {
|
|
6687
|
-
libs: [
|
|
6579
|
+
libs: [require_es2020_intl().es2020_intl],
|
|
6688
6580
|
variables: [["Number", base_config_1.TYPE]]
|
|
6689
6581
|
};
|
|
6690
6582
|
}));
|
|
6691
|
-
|
|
6692
6583
|
//#endregion
|
|
6693
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
6584
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.promise.js
|
|
6694
6585
|
var require_es2020_promise = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6695
6586
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6696
6587
|
exports.es2020_promise = void 0;
|
|
@@ -6705,22 +6596,19 @@ var require_es2020_promise = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
6705
6596
|
]
|
|
6706
6597
|
};
|
|
6707
6598
|
}));
|
|
6708
|
-
|
|
6709
6599
|
//#endregion
|
|
6710
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
6600
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.sharedmemory.js
|
|
6711
6601
|
var require_es2020_sharedmemory = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6712
6602
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6713
6603
|
exports.es2020_sharedmemory = void 0;
|
|
6714
6604
|
const base_config_1 = require_base_config();
|
|
6715
|
-
const es2020_bigint_1 = require_es2020_bigint();
|
|
6716
6605
|
exports.es2020_sharedmemory = {
|
|
6717
|
-
libs: [
|
|
6606
|
+
libs: [require_es2020_bigint().es2020_bigint],
|
|
6718
6607
|
variables: [["Atomics", base_config_1.TYPE]]
|
|
6719
6608
|
};
|
|
6720
6609
|
}));
|
|
6721
|
-
|
|
6722
6610
|
//#endregion
|
|
6723
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
6611
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.symbol.wellknown.js
|
|
6724
6612
|
var require_es2020_symbol_wellknown = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6725
6613
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6726
6614
|
exports.es2020_symbol_wellknown = void 0;
|
|
@@ -6736,9 +6624,8 @@ var require_es2020_symbol_wellknown = /* @__PURE__ */ __commonJSMin(((exports) =
|
|
|
6736
6624
|
]
|
|
6737
6625
|
};
|
|
6738
6626
|
}));
|
|
6739
|
-
|
|
6740
6627
|
//#endregion
|
|
6741
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
6628
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.string.js
|
|
6742
6629
|
var require_es2020_string = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6743
6630
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6744
6631
|
exports.es2020_string = void 0;
|
|
@@ -6755,9 +6642,8 @@ var require_es2020_string = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
6755
6642
|
variables: [["String", base_config_1.TYPE]]
|
|
6756
6643
|
};
|
|
6757
6644
|
}));
|
|
6758
|
-
|
|
6759
6645
|
//#endregion
|
|
6760
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
6646
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.js
|
|
6761
6647
|
var require_es2020 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6762
6648
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6763
6649
|
exports.es2020 = void 0;
|
|
@@ -6785,9 +6671,8 @@ var require_es2020 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
6785
6671
|
variables: []
|
|
6786
6672
|
};
|
|
6787
6673
|
}));
|
|
6788
|
-
|
|
6789
6674
|
//#endregion
|
|
6790
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
6675
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.full.js
|
|
6791
6676
|
var require_es2020_full = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6792
6677
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6793
6678
|
exports.es2020_full = void 0;
|
|
@@ -6809,21 +6694,18 @@ var require_es2020_full = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
6809
6694
|
variables: []
|
|
6810
6695
|
};
|
|
6811
6696
|
}));
|
|
6812
|
-
|
|
6813
6697
|
//#endregion
|
|
6814
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
6698
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.intl.js
|
|
6815
6699
|
var require_es2021_intl = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6816
6700
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6817
6701
|
exports.es2021_intl = void 0;
|
|
6818
|
-
const base_config_1 = require_base_config();
|
|
6819
6702
|
exports.es2021_intl = {
|
|
6820
6703
|
libs: [],
|
|
6821
|
-
variables: [["Intl",
|
|
6704
|
+
variables: [["Intl", require_base_config().TYPE_VALUE]]
|
|
6822
6705
|
};
|
|
6823
6706
|
}));
|
|
6824
|
-
|
|
6825
6707
|
//#endregion
|
|
6826
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
6708
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.promise.js
|
|
6827
6709
|
var require_es2021_promise = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6828
6710
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6829
6711
|
exports.es2021_promise = void 0;
|
|
@@ -6837,28 +6719,24 @@ var require_es2021_promise = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
6837
6719
|
]
|
|
6838
6720
|
};
|
|
6839
6721
|
}));
|
|
6840
|
-
|
|
6841
6722
|
//#endregion
|
|
6842
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
6723
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.string.js
|
|
6843
6724
|
var require_es2021_string = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6844
6725
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6845
6726
|
exports.es2021_string = void 0;
|
|
6846
|
-
const base_config_1 = require_base_config();
|
|
6847
6727
|
exports.es2021_string = {
|
|
6848
6728
|
libs: [],
|
|
6849
|
-
variables: [["String",
|
|
6729
|
+
variables: [["String", require_base_config().TYPE]]
|
|
6850
6730
|
};
|
|
6851
6731
|
}));
|
|
6852
|
-
|
|
6853
6732
|
//#endregion
|
|
6854
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
6733
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.weakref.js
|
|
6855
6734
|
var require_es2021_weakref = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6856
6735
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6857
6736
|
exports.es2021_weakref = void 0;
|
|
6858
6737
|
const base_config_1 = require_base_config();
|
|
6859
|
-
const es2015_symbol_wellknown_1 = require_es2015_symbol_wellknown();
|
|
6860
6738
|
exports.es2021_weakref = {
|
|
6861
|
-
libs: [
|
|
6739
|
+
libs: [require_es2015_symbol_wellknown().es2015_symbol_wellknown],
|
|
6862
6740
|
variables: [
|
|
6863
6741
|
["WeakRef", base_config_1.TYPE_VALUE],
|
|
6864
6742
|
["WeakRefConstructor", base_config_1.TYPE],
|
|
@@ -6867,9 +6745,8 @@ var require_es2021_weakref = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
6867
6745
|
]
|
|
6868
6746
|
};
|
|
6869
6747
|
}));
|
|
6870
|
-
|
|
6871
6748
|
//#endregion
|
|
6872
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
6749
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.js
|
|
6873
6750
|
var require_es2021 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6874
6751
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6875
6752
|
exports.es2021 = void 0;
|
|
@@ -6889,9 +6766,8 @@ var require_es2021 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
6889
6766
|
variables: []
|
|
6890
6767
|
};
|
|
6891
6768
|
}));
|
|
6892
|
-
|
|
6893
6769
|
//#endregion
|
|
6894
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
6770
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.full.js
|
|
6895
6771
|
var require_es2021_full = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6896
6772
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6897
6773
|
exports.es2021_full = void 0;
|
|
@@ -6913,9 +6789,8 @@ var require_es2021_full = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
6913
6789
|
variables: []
|
|
6914
6790
|
};
|
|
6915
6791
|
}));
|
|
6916
|
-
|
|
6917
6792
|
//#endregion
|
|
6918
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
6793
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.array.js
|
|
6919
6794
|
var require_es2022_array = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6920
6795
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6921
6796
|
exports.es2022_array = void 0;
|
|
@@ -6939,16 +6814,14 @@ var require_es2022_array = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
6939
6814
|
]
|
|
6940
6815
|
};
|
|
6941
6816
|
}));
|
|
6942
|
-
|
|
6943
6817
|
//#endregion
|
|
6944
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
6818
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.error.js
|
|
6945
6819
|
var require_es2022_error = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6946
6820
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6947
6821
|
exports.es2022_error = void 0;
|
|
6948
6822
|
const base_config_1 = require_base_config();
|
|
6949
|
-
const es2021_promise_1 = require_es2021_promise();
|
|
6950
6823
|
exports.es2022_error = {
|
|
6951
|
-
libs: [
|
|
6824
|
+
libs: [require_es2021_promise().es2021_promise],
|
|
6952
6825
|
variables: [
|
|
6953
6826
|
["ErrorOptions", base_config_1.TYPE],
|
|
6954
6827
|
["Error", base_config_1.TYPE],
|
|
@@ -6963,33 +6836,28 @@ var require_es2022_error = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
6963
6836
|
]
|
|
6964
6837
|
};
|
|
6965
6838
|
}));
|
|
6966
|
-
|
|
6967
6839
|
//#endregion
|
|
6968
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
6840
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.intl.js
|
|
6969
6841
|
var require_es2022_intl = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6970
6842
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6971
6843
|
exports.es2022_intl = void 0;
|
|
6972
|
-
const base_config_1 = require_base_config();
|
|
6973
6844
|
exports.es2022_intl = {
|
|
6974
6845
|
libs: [],
|
|
6975
|
-
variables: [["Intl",
|
|
6846
|
+
variables: [["Intl", require_base_config().TYPE_VALUE]]
|
|
6976
6847
|
};
|
|
6977
6848
|
}));
|
|
6978
|
-
|
|
6979
6849
|
//#endregion
|
|
6980
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
6850
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.object.js
|
|
6981
6851
|
var require_es2022_object = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6982
6852
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6983
6853
|
exports.es2022_object = void 0;
|
|
6984
|
-
const base_config_1 = require_base_config();
|
|
6985
6854
|
exports.es2022_object = {
|
|
6986
6855
|
libs: [],
|
|
6987
|
-
variables: [["ObjectConstructor",
|
|
6856
|
+
variables: [["ObjectConstructor", require_base_config().TYPE]]
|
|
6988
6857
|
};
|
|
6989
6858
|
}));
|
|
6990
|
-
|
|
6991
6859
|
//#endregion
|
|
6992
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
6860
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.regexp.js
|
|
6993
6861
|
var require_es2022_regexp = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6994
6862
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6995
6863
|
exports.es2022_regexp = void 0;
|
|
@@ -7004,21 +6872,18 @@ var require_es2022_regexp = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
7004
6872
|
]
|
|
7005
6873
|
};
|
|
7006
6874
|
}));
|
|
7007
|
-
|
|
7008
6875
|
//#endregion
|
|
7009
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
6876
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.string.js
|
|
7010
6877
|
var require_es2022_string = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7011
6878
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7012
6879
|
exports.es2022_string = void 0;
|
|
7013
|
-
const base_config_1 = require_base_config();
|
|
7014
6880
|
exports.es2022_string = {
|
|
7015
6881
|
libs: [],
|
|
7016
|
-
variables: [["String",
|
|
6882
|
+
variables: [["String", require_base_config().TYPE]]
|
|
7017
6883
|
};
|
|
7018
6884
|
}));
|
|
7019
|
-
|
|
7020
6885
|
//#endregion
|
|
7021
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
6886
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.js
|
|
7022
6887
|
var require_es2022 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7023
6888
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7024
6889
|
exports.es2022 = void 0;
|
|
@@ -7042,9 +6907,8 @@ var require_es2022 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
7042
6907
|
variables: []
|
|
7043
6908
|
};
|
|
7044
6909
|
}));
|
|
7045
|
-
|
|
7046
6910
|
//#endregion
|
|
7047
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
6911
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.full.js
|
|
7048
6912
|
var require_es2022_full = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7049
6913
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7050
6914
|
exports.es2022_full = void 0;
|
|
@@ -7066,9 +6930,8 @@ var require_es2022_full = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
7066
6930
|
variables: []
|
|
7067
6931
|
};
|
|
7068
6932
|
}));
|
|
7069
|
-
|
|
7070
6933
|
//#endregion
|
|
7071
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
6934
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.array.js
|
|
7072
6935
|
var require_es2023_array = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7073
6936
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7074
6937
|
exports.es2023_array = void 0;
|
|
@@ -7092,33 +6955,28 @@ var require_es2023_array = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
7092
6955
|
]
|
|
7093
6956
|
};
|
|
7094
6957
|
}));
|
|
7095
|
-
|
|
7096
6958
|
//#endregion
|
|
7097
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
6959
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.collection.js
|
|
7098
6960
|
var require_es2023_collection = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7099
6961
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7100
6962
|
exports.es2023_collection = void 0;
|
|
7101
|
-
const base_config_1 = require_base_config();
|
|
7102
6963
|
exports.es2023_collection = {
|
|
7103
6964
|
libs: [],
|
|
7104
|
-
variables: [["WeakKeyTypes",
|
|
6965
|
+
variables: [["WeakKeyTypes", require_base_config().TYPE]]
|
|
7105
6966
|
};
|
|
7106
6967
|
}));
|
|
7107
|
-
|
|
7108
6968
|
//#endregion
|
|
7109
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
6969
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.intl.js
|
|
7110
6970
|
var require_es2023_intl = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7111
6971
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7112
6972
|
exports.es2023_intl = void 0;
|
|
7113
|
-
const base_config_1 = require_base_config();
|
|
7114
6973
|
exports.es2023_intl = {
|
|
7115
6974
|
libs: [],
|
|
7116
|
-
variables: [["Intl",
|
|
6975
|
+
variables: [["Intl", require_base_config().TYPE_VALUE]]
|
|
7117
6976
|
};
|
|
7118
6977
|
}));
|
|
7119
|
-
|
|
7120
6978
|
//#endregion
|
|
7121
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
6979
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.js
|
|
7122
6980
|
var require_es2023 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7123
6981
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7124
6982
|
exports.es2023 = void 0;
|
|
@@ -7136,9 +6994,8 @@ var require_es2023 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
7136
6994
|
variables: []
|
|
7137
6995
|
};
|
|
7138
6996
|
}));
|
|
7139
|
-
|
|
7140
6997
|
//#endregion
|
|
7141
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
6998
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.full.js
|
|
7142
6999
|
var require_es2023_full = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7143
7000
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7144
7001
|
exports.es2023_full = void 0;
|
|
@@ -7160,9 +7017,8 @@ var require_es2023_full = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
7160
7017
|
variables: []
|
|
7161
7018
|
};
|
|
7162
7019
|
}));
|
|
7163
|
-
|
|
7164
7020
|
//#endregion
|
|
7165
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
7021
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.arraybuffer.js
|
|
7166
7022
|
var require_es2024_arraybuffer = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7167
7023
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7168
7024
|
exports.es2024_arraybuffer = void 0;
|
|
@@ -7172,33 +7028,28 @@ var require_es2024_arraybuffer = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
7172
7028
|
variables: [["ArrayBuffer", base_config_1.TYPE], ["ArrayBufferConstructor", base_config_1.TYPE]]
|
|
7173
7029
|
};
|
|
7174
7030
|
}));
|
|
7175
|
-
|
|
7176
7031
|
//#endregion
|
|
7177
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
7032
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.collection.js
|
|
7178
7033
|
var require_es2024_collection = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7179
7034
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7180
7035
|
exports.es2024_collection = void 0;
|
|
7181
|
-
const base_config_1 = require_base_config();
|
|
7182
7036
|
exports.es2024_collection = {
|
|
7183
7037
|
libs: [],
|
|
7184
|
-
variables: [["MapConstructor",
|
|
7038
|
+
variables: [["MapConstructor", require_base_config().TYPE]]
|
|
7185
7039
|
};
|
|
7186
7040
|
}));
|
|
7187
|
-
|
|
7188
7041
|
//#endregion
|
|
7189
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
7042
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.object.js
|
|
7190
7043
|
var require_es2024_object = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7191
7044
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7192
7045
|
exports.es2024_object = void 0;
|
|
7193
|
-
const base_config_1 = require_base_config();
|
|
7194
7046
|
exports.es2024_object = {
|
|
7195
7047
|
libs: [],
|
|
7196
|
-
variables: [["ObjectConstructor",
|
|
7048
|
+
variables: [["ObjectConstructor", require_base_config().TYPE]]
|
|
7197
7049
|
};
|
|
7198
7050
|
}));
|
|
7199
|
-
|
|
7200
7051
|
//#endregion
|
|
7201
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
7052
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.promise.js
|
|
7202
7053
|
var require_es2024_promise = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7203
7054
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7204
7055
|
exports.es2024_promise = void 0;
|
|
@@ -7208,28 +7059,24 @@ var require_es2024_promise = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
7208
7059
|
variables: [["PromiseWithResolvers", base_config_1.TYPE], ["PromiseConstructor", base_config_1.TYPE]]
|
|
7209
7060
|
};
|
|
7210
7061
|
}));
|
|
7211
|
-
|
|
7212
7062
|
//#endregion
|
|
7213
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
7063
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.regexp.js
|
|
7214
7064
|
var require_es2024_regexp = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7215
7065
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7216
7066
|
exports.es2024_regexp = void 0;
|
|
7217
|
-
const base_config_1 = require_base_config();
|
|
7218
7067
|
exports.es2024_regexp = {
|
|
7219
7068
|
libs: [],
|
|
7220
|
-
variables: [["RegExp",
|
|
7069
|
+
variables: [["RegExp", require_base_config().TYPE]]
|
|
7221
7070
|
};
|
|
7222
7071
|
}));
|
|
7223
|
-
|
|
7224
7072
|
//#endregion
|
|
7225
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
7073
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.sharedmemory.js
|
|
7226
7074
|
var require_es2024_sharedmemory = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7227
7075
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7228
7076
|
exports.es2024_sharedmemory = void 0;
|
|
7229
7077
|
const base_config_1 = require_base_config();
|
|
7230
|
-
const es2020_bigint_1 = require_es2020_bigint();
|
|
7231
7078
|
exports.es2024_sharedmemory = {
|
|
7232
|
-
libs: [
|
|
7079
|
+
libs: [require_es2020_bigint().es2020_bigint],
|
|
7233
7080
|
variables: [
|
|
7234
7081
|
["Atomics", base_config_1.TYPE],
|
|
7235
7082
|
["SharedArrayBuffer", base_config_1.TYPE],
|
|
@@ -7237,21 +7084,18 @@ var require_es2024_sharedmemory = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
7237
7084
|
]
|
|
7238
7085
|
};
|
|
7239
7086
|
}));
|
|
7240
|
-
|
|
7241
7087
|
//#endregion
|
|
7242
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
7088
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.string.js
|
|
7243
7089
|
var require_es2024_string = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7244
7090
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7245
7091
|
exports.es2024_string = void 0;
|
|
7246
|
-
const base_config_1 = require_base_config();
|
|
7247
7092
|
exports.es2024_string = {
|
|
7248
7093
|
libs: [],
|
|
7249
|
-
variables: [["String",
|
|
7094
|
+
variables: [["String", require_base_config().TYPE]]
|
|
7250
7095
|
};
|
|
7251
7096
|
}));
|
|
7252
|
-
|
|
7253
7097
|
//#endregion
|
|
7254
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
7098
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.js
|
|
7255
7099
|
var require_es2024 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7256
7100
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7257
7101
|
exports.es2024 = void 0;
|
|
@@ -7277,9 +7121,8 @@ var require_es2024 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
7277
7121
|
variables: []
|
|
7278
7122
|
};
|
|
7279
7123
|
}));
|
|
7280
|
-
|
|
7281
7124
|
//#endregion
|
|
7282
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
7125
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.full.js
|
|
7283
7126
|
var require_es2024_full = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7284
7127
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7285
7128
|
exports.es2024_full = void 0;
|
|
@@ -7301,28 +7144,24 @@ var require_es2024_full = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
7301
7144
|
variables: []
|
|
7302
7145
|
};
|
|
7303
7146
|
}));
|
|
7304
|
-
|
|
7305
7147
|
//#endregion
|
|
7306
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
7148
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.array.js
|
|
7307
7149
|
var require_esnext_array = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7308
7150
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7309
7151
|
exports.esnext_array = void 0;
|
|
7310
|
-
const base_config_1 = require_base_config();
|
|
7311
7152
|
exports.esnext_array = {
|
|
7312
7153
|
libs: [],
|
|
7313
|
-
variables: [["ArrayConstructor",
|
|
7154
|
+
variables: [["ArrayConstructor", require_base_config().TYPE]]
|
|
7314
7155
|
};
|
|
7315
7156
|
}));
|
|
7316
|
-
|
|
7317
7157
|
//#endregion
|
|
7318
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
7158
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.collection.js
|
|
7319
7159
|
var require_esnext_collection = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7320
7160
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7321
7161
|
exports.esnext_collection = void 0;
|
|
7322
7162
|
const base_config_1 = require_base_config();
|
|
7323
|
-
const es2024_collection_1 = require_es2024_collection();
|
|
7324
7163
|
exports.esnext_collection = {
|
|
7325
|
-
libs: [
|
|
7164
|
+
libs: [require_es2024_collection().es2024_collection],
|
|
7326
7165
|
variables: [
|
|
7327
7166
|
["ReadonlySetLike", base_config_1.TYPE],
|
|
7328
7167
|
["Set", base_config_1.TYPE],
|
|
@@ -7330,23 +7169,20 @@ var require_esnext_collection = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
7330
7169
|
]
|
|
7331
7170
|
};
|
|
7332
7171
|
}));
|
|
7333
|
-
|
|
7334
7172
|
//#endregion
|
|
7335
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
7173
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.decorators.js
|
|
7336
7174
|
var require_esnext_decorators = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7337
7175
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7338
7176
|
exports.esnext_decorators = void 0;
|
|
7339
7177
|
const base_config_1 = require_base_config();
|
|
7340
7178
|
const decorators_1 = require_decorators();
|
|
7341
|
-
const es2015_symbol_1 = require_es2015_symbol();
|
|
7342
7179
|
exports.esnext_decorators = {
|
|
7343
|
-
libs: [
|
|
7180
|
+
libs: [require_es2015_symbol().es2015_symbol, decorators_1.decorators],
|
|
7344
7181
|
variables: [["SymbolConstructor", base_config_1.TYPE], ["Function", base_config_1.TYPE]]
|
|
7345
7182
|
};
|
|
7346
7183
|
}));
|
|
7347
|
-
|
|
7348
7184
|
//#endregion
|
|
7349
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
7185
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.disposable.js
|
|
7350
7186
|
var require_esnext_disposable = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7351
7187
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7352
7188
|
exports.esnext_disposable = void 0;
|
|
@@ -7375,29 +7211,25 @@ var require_esnext_disposable = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
7375
7211
|
]
|
|
7376
7212
|
};
|
|
7377
7213
|
}));
|
|
7378
|
-
|
|
7379
7214
|
//#endregion
|
|
7380
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
7215
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.error.js
|
|
7381
7216
|
var require_esnext_error = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7382
7217
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7383
7218
|
exports.esnext_error = void 0;
|
|
7384
|
-
const base_config_1 = require_base_config();
|
|
7385
7219
|
exports.esnext_error = {
|
|
7386
7220
|
libs: [],
|
|
7387
|
-
variables: [["ErrorConstructor",
|
|
7221
|
+
variables: [["ErrorConstructor", require_base_config().TYPE]]
|
|
7388
7222
|
};
|
|
7389
7223
|
}));
|
|
7390
|
-
|
|
7391
7224
|
//#endregion
|
|
7392
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
7225
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.float16.js
|
|
7393
7226
|
var require_esnext_float16 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7394
7227
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7395
7228
|
exports.esnext_float16 = void 0;
|
|
7396
7229
|
const base_config_1 = require_base_config();
|
|
7397
7230
|
const es2015_iterable_1 = require_es2015_iterable();
|
|
7398
|
-
const es2015_symbol_1 = require_es2015_symbol();
|
|
7399
7231
|
exports.esnext_float16 = {
|
|
7400
|
-
libs: [
|
|
7232
|
+
libs: [require_es2015_symbol().es2015_symbol, es2015_iterable_1.es2015_iterable],
|
|
7401
7233
|
variables: [
|
|
7402
7234
|
["Float16Array", base_config_1.TYPE_VALUE],
|
|
7403
7235
|
["Float16ArrayConstructor", base_config_1.TYPE],
|
|
@@ -7406,58 +7238,49 @@ var require_esnext_float16 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
7406
7238
|
]
|
|
7407
7239
|
};
|
|
7408
7240
|
}));
|
|
7409
|
-
|
|
7410
7241
|
//#endregion
|
|
7411
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
7242
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.intl.js
|
|
7412
7243
|
var require_esnext_intl = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7413
7244
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7414
7245
|
exports.esnext_intl = void 0;
|
|
7415
|
-
const base_config_1 = require_base_config();
|
|
7416
7246
|
exports.esnext_intl = {
|
|
7417
7247
|
libs: [],
|
|
7418
|
-
variables: [["Intl",
|
|
7248
|
+
variables: [["Intl", require_base_config().TYPE_VALUE]]
|
|
7419
7249
|
};
|
|
7420
7250
|
}));
|
|
7421
|
-
|
|
7422
7251
|
//#endregion
|
|
7423
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
7252
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.iterator.js
|
|
7424
7253
|
var require_esnext_iterator = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7425
7254
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7426
7255
|
exports.esnext_iterator = void 0;
|
|
7427
7256
|
const base_config_1 = require_base_config();
|
|
7428
|
-
const es2015_iterable_1 = require_es2015_iterable();
|
|
7429
7257
|
exports.esnext_iterator = {
|
|
7430
|
-
libs: [
|
|
7258
|
+
libs: [require_es2015_iterable().es2015_iterable],
|
|
7431
7259
|
variables: [["Iterator", base_config_1.TYPE_VALUE], ["IteratorObjectConstructor", base_config_1.TYPE]]
|
|
7432
7260
|
};
|
|
7433
7261
|
}));
|
|
7434
|
-
|
|
7435
7262
|
//#endregion
|
|
7436
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
7263
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.promise.js
|
|
7437
7264
|
var require_esnext_promise = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7438
7265
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7439
7266
|
exports.esnext_promise = void 0;
|
|
7440
|
-
const base_config_1 = require_base_config();
|
|
7441
7267
|
exports.esnext_promise = {
|
|
7442
7268
|
libs: [],
|
|
7443
|
-
variables: [["PromiseConstructor",
|
|
7269
|
+
variables: [["PromiseConstructor", require_base_config().TYPE]]
|
|
7444
7270
|
};
|
|
7445
7271
|
}));
|
|
7446
|
-
|
|
7447
7272
|
//#endregion
|
|
7448
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
7273
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.sharedmemory.js
|
|
7449
7274
|
var require_esnext_sharedmemory = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7450
7275
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7451
7276
|
exports.esnext_sharedmemory = void 0;
|
|
7452
|
-
const base_config_1 = require_base_config();
|
|
7453
7277
|
exports.esnext_sharedmemory = {
|
|
7454
7278
|
libs: [],
|
|
7455
|
-
variables: [["Atomics",
|
|
7279
|
+
variables: [["Atomics", require_base_config().TYPE]]
|
|
7456
7280
|
};
|
|
7457
7281
|
}));
|
|
7458
|
-
|
|
7459
7282
|
//#endregion
|
|
7460
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
7283
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.js
|
|
7461
7284
|
var require_esnext = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7462
7285
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7463
7286
|
exports.esnext = void 0;
|
|
@@ -7489,17 +7312,15 @@ var require_esnext = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
7489
7312
|
variables: []
|
|
7490
7313
|
};
|
|
7491
7314
|
}));
|
|
7492
|
-
|
|
7493
7315
|
//#endregion
|
|
7494
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
7316
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.asynciterable.js
|
|
7495
7317
|
var require_esnext_asynciterable = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7496
7318
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7497
7319
|
exports.esnext_asynciterable = void 0;
|
|
7498
7320
|
const base_config_1 = require_base_config();
|
|
7499
7321
|
const es2015_iterable_1 = require_es2015_iterable();
|
|
7500
|
-
const es2015_symbol_1 = require_es2015_symbol();
|
|
7501
7322
|
exports.esnext_asynciterable = {
|
|
7502
|
-
libs: [
|
|
7323
|
+
libs: [require_es2015_symbol().es2015_symbol, es2015_iterable_1.es2015_iterable],
|
|
7503
7324
|
variables: [
|
|
7504
7325
|
["SymbolConstructor", base_config_1.TYPE],
|
|
7505
7326
|
["AsyncIterator", base_config_1.TYPE],
|
|
@@ -7509,16 +7330,14 @@ var require_esnext_asynciterable = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
7509
7330
|
]
|
|
7510
7331
|
};
|
|
7511
7332
|
}));
|
|
7512
|
-
|
|
7513
7333
|
//#endregion
|
|
7514
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
7334
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.bigint.js
|
|
7515
7335
|
var require_esnext_bigint = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7516
7336
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7517
7337
|
exports.esnext_bigint = void 0;
|
|
7518
7338
|
const base_config_1 = require_base_config();
|
|
7519
|
-
const es2020_intl_1 = require_es2020_intl();
|
|
7520
7339
|
exports.esnext_bigint = {
|
|
7521
|
-
libs: [
|
|
7340
|
+
libs: [require_es2020_intl().es2020_intl],
|
|
7522
7341
|
variables: [
|
|
7523
7342
|
["BigIntToLocaleStringOptions", base_config_1.TYPE],
|
|
7524
7343
|
["BigInt", base_config_1.TYPE_VALUE],
|
|
@@ -7532,9 +7351,8 @@ var require_esnext_bigint = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
7532
7351
|
]
|
|
7533
7352
|
};
|
|
7534
7353
|
}));
|
|
7535
|
-
|
|
7536
7354
|
//#endregion
|
|
7537
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
7355
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.full.js
|
|
7538
7356
|
var require_esnext_full = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7539
7357
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7540
7358
|
exports.esnext_full = void 0;
|
|
@@ -7556,64 +7374,54 @@ var require_esnext_full = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
7556
7374
|
variables: []
|
|
7557
7375
|
};
|
|
7558
7376
|
}));
|
|
7559
|
-
|
|
7560
7377
|
//#endregion
|
|
7561
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
7378
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.object.js
|
|
7562
7379
|
var require_esnext_object = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7563
7380
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7564
7381
|
exports.esnext_object = void 0;
|
|
7565
|
-
const base_config_1 = require_base_config();
|
|
7566
7382
|
exports.esnext_object = {
|
|
7567
7383
|
libs: [],
|
|
7568
|
-
variables: [["ObjectConstructor",
|
|
7384
|
+
variables: [["ObjectConstructor", require_base_config().TYPE]]
|
|
7569
7385
|
};
|
|
7570
7386
|
}));
|
|
7571
|
-
|
|
7572
7387
|
//#endregion
|
|
7573
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
7388
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.regexp.js
|
|
7574
7389
|
var require_esnext_regexp = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7575
7390
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7576
7391
|
exports.esnext_regexp = void 0;
|
|
7577
|
-
const base_config_1 = require_base_config();
|
|
7578
7392
|
exports.esnext_regexp = {
|
|
7579
7393
|
libs: [],
|
|
7580
|
-
variables: [["RegExp",
|
|
7394
|
+
variables: [["RegExp", require_base_config().TYPE]]
|
|
7581
7395
|
};
|
|
7582
7396
|
}));
|
|
7583
|
-
|
|
7584
7397
|
//#endregion
|
|
7585
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
7398
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.string.js
|
|
7586
7399
|
var require_esnext_string = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7587
7400
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7588
7401
|
exports.esnext_string = void 0;
|
|
7589
|
-
const base_config_1 = require_base_config();
|
|
7590
7402
|
exports.esnext_string = {
|
|
7591
7403
|
libs: [],
|
|
7592
|
-
variables: [["String",
|
|
7404
|
+
variables: [["String", require_base_config().TYPE]]
|
|
7593
7405
|
};
|
|
7594
7406
|
}));
|
|
7595
|
-
|
|
7596
7407
|
//#endregion
|
|
7597
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
7408
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.symbol.js
|
|
7598
7409
|
var require_esnext_symbol = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7599
7410
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7600
7411
|
exports.esnext_symbol = void 0;
|
|
7601
|
-
const base_config_1 = require_base_config();
|
|
7602
7412
|
exports.esnext_symbol = {
|
|
7603
7413
|
libs: [],
|
|
7604
|
-
variables: [["Symbol",
|
|
7414
|
+
variables: [["Symbol", require_base_config().TYPE]]
|
|
7605
7415
|
};
|
|
7606
7416
|
}));
|
|
7607
|
-
|
|
7608
7417
|
//#endregion
|
|
7609
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
7418
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.weakref.js
|
|
7610
7419
|
var require_esnext_weakref = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7611
7420
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7612
7421
|
exports.esnext_weakref = void 0;
|
|
7613
7422
|
const base_config_1 = require_base_config();
|
|
7614
|
-
const es2015_symbol_wellknown_1 = require_es2015_symbol_wellknown();
|
|
7615
7423
|
exports.esnext_weakref = {
|
|
7616
|
-
libs: [
|
|
7424
|
+
libs: [require_es2015_symbol_wellknown().es2015_symbol_wellknown],
|
|
7617
7425
|
variables: [
|
|
7618
7426
|
["WeakRef", base_config_1.TYPE_VALUE],
|
|
7619
7427
|
["WeakRefConstructor", base_config_1.TYPE],
|
|
@@ -7622,9 +7430,8 @@ var require_esnext_weakref = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
7622
7430
|
]
|
|
7623
7431
|
};
|
|
7624
7432
|
}));
|
|
7625
|
-
|
|
7626
7433
|
//#endregion
|
|
7627
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
7434
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/lib.js
|
|
7628
7435
|
var require_lib$1 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7629
7436
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7630
7437
|
exports.lib = void 0;
|
|
@@ -7642,9 +7449,8 @@ var require_lib$1 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
7642
7449
|
variables: []
|
|
7643
7450
|
};
|
|
7644
7451
|
}));
|
|
7645
|
-
|
|
7646
7452
|
//#endregion
|
|
7647
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
7453
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.js
|
|
7648
7454
|
var require_webworker = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7649
7455
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7650
7456
|
exports.webworker = void 0;
|
|
@@ -8292,9 +8098,8 @@ var require_webworker = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
8292
8098
|
]
|
|
8293
8099
|
};
|
|
8294
8100
|
}));
|
|
8295
|
-
|
|
8296
8101
|
//#endregion
|
|
8297
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
8102
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.asynciterable.js
|
|
8298
8103
|
var require_webworker_asynciterable = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
8299
8104
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8300
8105
|
exports.webworker_asynciterable = void 0;
|
|
@@ -8309,9 +8114,8 @@ var require_webworker_asynciterable = /* @__PURE__ */ __commonJSMin(((exports) =
|
|
|
8309
8114
|
]
|
|
8310
8115
|
};
|
|
8311
8116
|
}));
|
|
8312
|
-
|
|
8313
8117
|
//#endregion
|
|
8314
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
8118
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.iterable.js
|
|
8315
8119
|
var require_webworker_iterable = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
8316
8120
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8317
8121
|
exports.webworker_iterable = void 0;
|
|
@@ -8351,9 +8155,8 @@ var require_webworker_iterable = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
8351
8155
|
]
|
|
8352
8156
|
};
|
|
8353
8157
|
}));
|
|
8354
|
-
|
|
8355
8158
|
//#endregion
|
|
8356
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
8159
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/lib/index.js
|
|
8357
8160
|
var require_lib = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
8358
8161
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8359
8162
|
exports.lib = void 0;
|
|
@@ -8576,9 +8379,8 @@ var require_lib = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
8576
8379
|
["lib", lib_1.lib]
|
|
8577
8380
|
]);
|
|
8578
8381
|
}));
|
|
8579
|
-
|
|
8580
8382
|
//#endregion
|
|
8581
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
8383
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/referencer/Reference.js
|
|
8582
8384
|
var require_Reference = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
8583
8385
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8584
8386
|
exports.Reference = exports.ReferenceTypeFlag = exports.ReferenceFlag = void 0;
|
|
@@ -8699,9 +8501,8 @@ var require_Reference = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
8699
8501
|
};
|
|
8700
8502
|
exports.Reference = Reference;
|
|
8701
8503
|
}));
|
|
8702
|
-
|
|
8703
8504
|
//#endregion
|
|
8704
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
8505
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/variable/VariableBase.js
|
|
8705
8506
|
var require_VariableBase = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
8706
8507
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8707
8508
|
exports.VariableBase = void 0;
|
|
@@ -8742,16 +8543,15 @@ var require_VariableBase = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
8742
8543
|
* Reference to the enclosing Scope.
|
|
8743
8544
|
*/
|
|
8744
8545
|
scope;
|
|
8745
|
-
constructor(name
|
|
8746
|
-
this.name = name
|
|
8546
|
+
constructor(name, scope) {
|
|
8547
|
+
this.name = name;
|
|
8747
8548
|
this.scope = scope;
|
|
8748
8549
|
}
|
|
8749
8550
|
};
|
|
8750
8551
|
exports.VariableBase = VariableBase;
|
|
8751
8552
|
}));
|
|
8752
|
-
|
|
8753
8553
|
//#endregion
|
|
8754
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
8554
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/variable/ESLintScopeVariable.js
|
|
8755
8555
|
var require_ESLintScopeVariable = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
8756
8556
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8757
8557
|
exports.ESLintScopeVariable = void 0;
|
|
@@ -8788,9 +8588,8 @@ var require_ESLintScopeVariable = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
8788
8588
|
};
|
|
8789
8589
|
exports.ESLintScopeVariable = ESLintScopeVariable;
|
|
8790
8590
|
}));
|
|
8791
|
-
|
|
8792
8591
|
//#endregion
|
|
8793
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
8592
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/variable/ImplicitLibVariable.js
|
|
8794
8593
|
var require_ImplicitLibVariable = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
8795
8594
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8796
8595
|
exports.ImplicitLibVariable = void 0;
|
|
@@ -8807,8 +8606,8 @@ var require_ImplicitLibVariable = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
8807
8606
|
* `true` if the variable is valid in a value context, false otherwise
|
|
8808
8607
|
*/
|
|
8809
8608
|
isValueVariable;
|
|
8810
|
-
constructor(scope, name
|
|
8811
|
-
super(name
|
|
8609
|
+
constructor(scope, name, { eslintImplicitGlobalSetting, isTypeVariable, isValueVariable, writeable }) {
|
|
8610
|
+
super(name, scope);
|
|
8812
8611
|
this.isTypeVariable = isTypeVariable ?? false;
|
|
8813
8612
|
this.isValueVariable = isValueVariable ?? false;
|
|
8814
8613
|
this.writeable = writeable ?? false;
|
|
@@ -8817,9 +8616,8 @@ var require_ImplicitLibVariable = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
8817
8616
|
};
|
|
8818
8617
|
exports.ImplicitLibVariable = ImplicitLibVariable;
|
|
8819
8618
|
}));
|
|
8820
|
-
|
|
8821
8619
|
//#endregion
|
|
8822
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
8620
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/variable/Variable.js
|
|
8823
8621
|
var require_Variable = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
8824
8622
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8825
8623
|
exports.Variable = void 0;
|
|
@@ -8847,9 +8645,8 @@ var require_Variable = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
8847
8645
|
};
|
|
8848
8646
|
exports.Variable = Variable;
|
|
8849
8647
|
}));
|
|
8850
|
-
|
|
8851
8648
|
//#endregion
|
|
8852
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
8649
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/variable/index.js
|
|
8853
8650
|
var require_variable = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
8854
8651
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8855
8652
|
exports.Variable = exports.ImplicitLibVariable = exports.ESLintScopeVariable = void 0;
|
|
@@ -8875,9 +8672,8 @@ var require_variable = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
8875
8672
|
}
|
|
8876
8673
|
});
|
|
8877
8674
|
}));
|
|
8878
|
-
|
|
8879
8675
|
//#endregion
|
|
8880
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
8676
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeType.js
|
|
8881
8677
|
var require_ScopeType = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
8882
8678
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8883
8679
|
exports.ScopeType = void 0;
|
|
@@ -8903,15 +8699,13 @@ var require_ScopeType = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
8903
8699
|
ScopeType["with"] = "with";
|
|
8904
8700
|
})(ScopeType || (exports.ScopeType = ScopeType = {}));
|
|
8905
8701
|
}));
|
|
8906
|
-
|
|
8907
8702
|
//#endregion
|
|
8908
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
8703
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeBase.js
|
|
8909
8704
|
var require_ScopeBase = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
8910
8705
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8911
8706
|
exports.ScopeBase = void 0;
|
|
8912
8707
|
const types_1 = require_dist$3();
|
|
8913
8708
|
const assert_1 = require_assert();
|
|
8914
|
-
const definition_1 = require_definition();
|
|
8915
8709
|
const ID_1 = require_ID();
|
|
8916
8710
|
const Reference_1 = require_Reference();
|
|
8917
8711
|
const variable_1 = require_variable();
|
|
@@ -8941,12 +8735,8 @@ var require_ScopeBase = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
8941
8735
|
} else if (scope.type === ScopeType_1.ScopeType.global) body = block;
|
|
8942
8736
|
else return false;
|
|
8943
8737
|
for (const stmt of body.body) {
|
|
8944
|
-
if (stmt.type !== types_1.AST_NODE_TYPES.ExpressionStatement) break;
|
|
8738
|
+
if (stmt.type !== types_1.AST_NODE_TYPES.ExpressionStatement || stmt.directive == null) break;
|
|
8945
8739
|
if (stmt.directive === "use strict") return true;
|
|
8946
|
-
const expr = stmt.expression;
|
|
8947
|
-
if (expr.type !== types_1.AST_NODE_TYPES.Literal) break;
|
|
8948
|
-
if (expr.raw === "\"use strict\"" || expr.raw === "'use strict'") return true;
|
|
8949
|
-
if (expr.value === "use strict") return true;
|
|
8950
8740
|
}
|
|
8951
8741
|
return false;
|
|
8952
8742
|
}
|
|
@@ -9051,14 +8841,10 @@ var require_ScopeBase = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
9051
8841
|
current = current.upper;
|
|
9052
8842
|
} while (current);
|
|
9053
8843
|
};
|
|
9054
|
-
#globalCloseRef = (ref, scopeManager) => {
|
|
9055
|
-
if (this.shouldStaticallyCloseForGlobal(ref, scopeManager)) this.#staticCloseRef(ref);
|
|
9056
|
-
else this.#dynamicCloseRef(ref);
|
|
9057
|
-
};
|
|
9058
8844
|
#staticCloseRef = (ref) => {
|
|
9059
8845
|
const resolve = () => {
|
|
9060
|
-
const name
|
|
9061
|
-
const variable = this.set.get(name
|
|
8846
|
+
const name = ref.identifier.name;
|
|
8847
|
+
const variable = this.set.get(name);
|
|
9062
8848
|
if (!variable) return false;
|
|
9063
8849
|
if (!this.isValidResolution(ref, variable)) return false;
|
|
9064
8850
|
const isValidTypeReference = ref.isTypeReference && variable.isTypeVariable;
|
|
@@ -9090,40 +8876,26 @@ var require_ScopeBase = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
9090
8876
|
isVariableScope() {
|
|
9091
8877
|
return VARIABLE_SCOPE_TYPES.has(this.type);
|
|
9092
8878
|
}
|
|
9093
|
-
|
|
9094
|
-
const
|
|
9095
|
-
const variable = this.set.get(name$1);
|
|
9096
|
-
if (!variable) return false;
|
|
9097
|
-
if (scopeManager.isModule()) return true;
|
|
9098
|
-
const defs = variable.defs;
|
|
9099
|
-
return defs.length > 0 && defs.every((def) => {
|
|
9100
|
-
if (def.type === definition_1.DefinitionType.Variable && def.parent.kind === "var") return false;
|
|
9101
|
-
return true;
|
|
9102
|
-
});
|
|
9103
|
-
}
|
|
9104
|
-
close(scopeManager) {
|
|
9105
|
-
let closeRef;
|
|
9106
|
-
if (this.shouldStaticallyClose()) closeRef = this.#staticCloseRef;
|
|
9107
|
-
else if (this.type !== "global") closeRef = this.#dynamicCloseRef;
|
|
9108
|
-
else closeRef = this.#globalCloseRef;
|
|
8879
|
+
close(_scopeManager) {
|
|
8880
|
+
const closeRef = this.shouldStaticallyClose() ? this.#staticCloseRef : this.#dynamicCloseRef;
|
|
9109
8881
|
(0, assert_1.assert)(this.leftToResolve);
|
|
9110
|
-
this.leftToResolve.forEach((ref) => closeRef(ref
|
|
8882
|
+
this.leftToResolve.forEach((ref) => closeRef(ref));
|
|
9111
8883
|
this.leftToResolve = null;
|
|
9112
8884
|
return this.upper;
|
|
9113
8885
|
}
|
|
9114
8886
|
shouldStaticallyClose() {
|
|
9115
|
-
return !this.#dynamic;
|
|
8887
|
+
return !this.#dynamic || this.type === "global";
|
|
9116
8888
|
}
|
|
9117
8889
|
/**
|
|
9118
8890
|
* To override by function scopes.
|
|
9119
8891
|
* References in default parameters isn't resolved to variables which are in their function body.
|
|
9120
8892
|
*/
|
|
9121
8893
|
defineVariable(nameOrVariable, set, variables, node, def) {
|
|
9122
|
-
const name
|
|
9123
|
-
let variable = set.get(name
|
|
8894
|
+
const name = typeof nameOrVariable === "string" ? nameOrVariable : nameOrVariable.name;
|
|
8895
|
+
let variable = set.get(name);
|
|
9124
8896
|
if (!variable) {
|
|
9125
|
-
variable = typeof nameOrVariable === "string" ? new variable_1.Variable(name
|
|
9126
|
-
set.set(name
|
|
8897
|
+
variable = typeof nameOrVariable === "string" ? new variable_1.Variable(name, this) : nameOrVariable;
|
|
8898
|
+
set.set(name, variable);
|
|
9127
8899
|
variables.push(variable);
|
|
9128
8900
|
}
|
|
9129
8901
|
if (def) {
|
|
@@ -9173,9 +8945,8 @@ var require_ScopeBase = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
9173
8945
|
};
|
|
9174
8946
|
exports.ScopeBase = ScopeBase;
|
|
9175
8947
|
}));
|
|
9176
|
-
|
|
9177
8948
|
//#endregion
|
|
9178
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
8949
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/scope/BlockScope.js
|
|
9179
8950
|
var require_BlockScope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
9180
8951
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9181
8952
|
exports.BlockScope = void 0;
|
|
@@ -9188,9 +8959,8 @@ var require_BlockScope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
9188
8959
|
};
|
|
9189
8960
|
exports.BlockScope = BlockScope;
|
|
9190
8961
|
}));
|
|
9191
|
-
|
|
9192
8962
|
//#endregion
|
|
9193
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
8963
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/scope/CatchScope.js
|
|
9194
8964
|
var require_CatchScope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
9195
8965
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9196
8966
|
exports.CatchScope = void 0;
|
|
@@ -9203,9 +8973,8 @@ var require_CatchScope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
9203
8973
|
};
|
|
9204
8974
|
exports.CatchScope = CatchScope;
|
|
9205
8975
|
}));
|
|
9206
|
-
|
|
9207
8976
|
//#endregion
|
|
9208
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
8977
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassFieldInitializerScope.js
|
|
9209
8978
|
var require_ClassFieldInitializerScope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
9210
8979
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9211
8980
|
exports.ClassFieldInitializerScope = void 0;
|
|
@@ -9218,9 +8987,8 @@ var require_ClassFieldInitializerScope = /* @__PURE__ */ __commonJSMin(((exports
|
|
|
9218
8987
|
};
|
|
9219
8988
|
exports.ClassFieldInitializerScope = ClassFieldInitializerScope;
|
|
9220
8989
|
}));
|
|
9221
|
-
|
|
9222
8990
|
//#endregion
|
|
9223
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
8991
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassScope.js
|
|
9224
8992
|
var require_ClassScope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
9225
8993
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9226
8994
|
exports.ClassScope = void 0;
|
|
@@ -9233,9 +9001,8 @@ var require_ClassScope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
9233
9001
|
};
|
|
9234
9002
|
exports.ClassScope = ClassScope;
|
|
9235
9003
|
}));
|
|
9236
|
-
|
|
9237
9004
|
//#endregion
|
|
9238
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
9005
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/scope/ConditionalTypeScope.js
|
|
9239
9006
|
var require_ConditionalTypeScope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
9240
9007
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9241
9008
|
exports.ConditionalTypeScope = void 0;
|
|
@@ -9248,9 +9015,8 @@ var require_ConditionalTypeScope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
9248
9015
|
};
|
|
9249
9016
|
exports.ConditionalTypeScope = ConditionalTypeScope;
|
|
9250
9017
|
}));
|
|
9251
|
-
|
|
9252
9018
|
//#endregion
|
|
9253
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
9019
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/scope/ForScope.js
|
|
9254
9020
|
var require_ForScope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
9255
9021
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9256
9022
|
exports.ForScope = void 0;
|
|
@@ -9263,9 +9029,8 @@ var require_ForScope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
9263
9029
|
};
|
|
9264
9030
|
exports.ForScope = ForScope;
|
|
9265
9031
|
}));
|
|
9266
|
-
|
|
9267
9032
|
//#endregion
|
|
9268
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
9033
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionExpressionNameScope.js
|
|
9269
9034
|
var require_FunctionExpressionNameScope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
9270
9035
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9271
9036
|
exports.FunctionExpressionNameScope = void 0;
|
|
@@ -9282,9 +9047,8 @@ var require_FunctionExpressionNameScope = /* @__PURE__ */ __commonJSMin(((export
|
|
|
9282
9047
|
};
|
|
9283
9048
|
exports.FunctionExpressionNameScope = FunctionExpressionNameScope;
|
|
9284
9049
|
}));
|
|
9285
|
-
|
|
9286
9050
|
//#endregion
|
|
9287
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
9051
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionScope.js
|
|
9288
9052
|
var require_FunctionScope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
9289
9053
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9290
9054
|
exports.FunctionScope = void 0;
|
|
@@ -9304,9 +9068,8 @@ var require_FunctionScope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
9304
9068
|
};
|
|
9305
9069
|
exports.FunctionScope = FunctionScope;
|
|
9306
9070
|
}));
|
|
9307
|
-
|
|
9308
9071
|
//#endregion
|
|
9309
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
9072
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionTypeScope.js
|
|
9310
9073
|
var require_FunctionTypeScope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
9311
9074
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9312
9075
|
exports.FunctionTypeScope = void 0;
|
|
@@ -9319,9 +9082,8 @@ var require_FunctionTypeScope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
9319
9082
|
};
|
|
9320
9083
|
exports.FunctionTypeScope = FunctionTypeScope;
|
|
9321
9084
|
}));
|
|
9322
|
-
|
|
9323
9085
|
//#endregion
|
|
9324
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
9086
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/scope/GlobalScope.js
|
|
9325
9087
|
var require_GlobalScope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
9326
9088
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9327
9089
|
exports.GlobalScope = void 0;
|
|
@@ -9341,6 +9103,22 @@ var require_GlobalScope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
9341
9103
|
variables: []
|
|
9342
9104
|
};
|
|
9343
9105
|
}
|
|
9106
|
+
addVariables(names) {
|
|
9107
|
+
for (const name of names) {
|
|
9108
|
+
this.defineVariable(name, this.set, this.variables, null, null);
|
|
9109
|
+
this.implicit.set.delete(name);
|
|
9110
|
+
}
|
|
9111
|
+
const nameSet = new Set(names);
|
|
9112
|
+
for (const reference of this.through) if (nameSet.has(reference.identifier.name)) {
|
|
9113
|
+
const variable = this.set.get(reference.identifier.name);
|
|
9114
|
+
(0, assert_1.assert)(variable, `Expected variable with name "${reference.identifier.name}" to be specified.`);
|
|
9115
|
+
reference.resolved = variable;
|
|
9116
|
+
variable.references.push(reference);
|
|
9117
|
+
}
|
|
9118
|
+
this.through = this.through.filter((reference) => !nameSet.has(reference.identifier.name));
|
|
9119
|
+
this.implicit.variables = this.implicit.variables.filter((variable) => !nameSet.has(variable.name));
|
|
9120
|
+
this.implicit.leftToBeResolved = this.implicit.leftToBeResolved.filter((reference) => !nameSet.has(reference.identifier.name));
|
|
9121
|
+
}
|
|
9344
9122
|
close(scopeManager) {
|
|
9345
9123
|
(0, assert_1.assert)(this.leftToResolve);
|
|
9346
9124
|
for (const ref of this.leftToResolve) if (ref.maybeImplicitGlobal && !this.set.has(ref.identifier.name)) {
|
|
@@ -9349,17 +9127,18 @@ var require_GlobalScope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
9349
9127
|
if (node.type === types_1.AST_NODE_TYPES.Identifier) this.defineVariable(node.name, this.implicit.set, this.implicit.variables, node, new ImplicitGlobalVariableDefinition_1.ImplicitGlobalVariableDefinition(info.pattern, info.node));
|
|
9350
9128
|
}
|
|
9351
9129
|
this.implicit.leftToBeResolved = this.leftToResolve;
|
|
9352
|
-
|
|
9130
|
+
super.close(scopeManager);
|
|
9131
|
+
this.implicit.leftToBeResolved = [...this.through];
|
|
9132
|
+
return null;
|
|
9353
9133
|
}
|
|
9354
|
-
defineImplicitVariable(name
|
|
9355
|
-
this.defineVariable(new variable_1.ImplicitLibVariable(this, name
|
|
9134
|
+
defineImplicitVariable(name, options) {
|
|
9135
|
+
this.defineVariable(new variable_1.ImplicitLibVariable(this, name, options), this.set, this.variables, null, null);
|
|
9356
9136
|
}
|
|
9357
9137
|
};
|
|
9358
9138
|
exports.GlobalScope = GlobalScope;
|
|
9359
9139
|
}));
|
|
9360
|
-
|
|
9361
9140
|
//#endregion
|
|
9362
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
9141
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/scope/MappedTypeScope.js
|
|
9363
9142
|
var require_MappedTypeScope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
9364
9143
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9365
9144
|
exports.MappedTypeScope = void 0;
|
|
@@ -9372,9 +9151,8 @@ var require_MappedTypeScope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
9372
9151
|
};
|
|
9373
9152
|
exports.MappedTypeScope = MappedTypeScope;
|
|
9374
9153
|
}));
|
|
9375
|
-
|
|
9376
9154
|
//#endregion
|
|
9377
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
9155
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/scope/ModuleScope.js
|
|
9378
9156
|
var require_ModuleScope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
9379
9157
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9380
9158
|
exports.ModuleScope = void 0;
|
|
@@ -9387,15 +9165,13 @@ var require_ModuleScope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
9387
9165
|
};
|
|
9388
9166
|
exports.ModuleScope = ModuleScope;
|
|
9389
9167
|
}));
|
|
9390
|
-
|
|
9391
9168
|
//#endregion
|
|
9392
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
9169
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/scope/Scope.js
|
|
9393
9170
|
var require_Scope$1 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
9394
9171
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9395
9172
|
}));
|
|
9396
|
-
|
|
9397
9173
|
//#endregion
|
|
9398
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
9174
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/scope/SwitchScope.js
|
|
9399
9175
|
var require_SwitchScope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
9400
9176
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9401
9177
|
exports.SwitchScope = void 0;
|
|
@@ -9408,9 +9184,8 @@ var require_SwitchScope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
9408
9184
|
};
|
|
9409
9185
|
exports.SwitchScope = SwitchScope;
|
|
9410
9186
|
}));
|
|
9411
|
-
|
|
9412
9187
|
//#endregion
|
|
9413
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
9188
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/scope/TSEnumScope.js
|
|
9414
9189
|
var require_TSEnumScope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
9415
9190
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9416
9191
|
exports.TSEnumScope = void 0;
|
|
@@ -9423,9 +9198,8 @@ var require_TSEnumScope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
9423
9198
|
};
|
|
9424
9199
|
exports.TSEnumScope = TSEnumScope;
|
|
9425
9200
|
}));
|
|
9426
|
-
|
|
9427
9201
|
//#endregion
|
|
9428
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
9202
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/scope/TSModuleScope.js
|
|
9429
9203
|
var require_TSModuleScope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
9430
9204
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9431
9205
|
exports.TSModuleScope = void 0;
|
|
@@ -9438,9 +9212,8 @@ var require_TSModuleScope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
9438
9212
|
};
|
|
9439
9213
|
exports.TSModuleScope = TSModuleScope;
|
|
9440
9214
|
}));
|
|
9441
|
-
|
|
9442
9215
|
//#endregion
|
|
9443
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
9216
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/scope/TypeScope.js
|
|
9444
9217
|
var require_TypeScope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
9445
9218
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9446
9219
|
exports.TypeScope = void 0;
|
|
@@ -9453,9 +9226,8 @@ var require_TypeScope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
9453
9226
|
};
|
|
9454
9227
|
exports.TypeScope = TypeScope;
|
|
9455
9228
|
}));
|
|
9456
|
-
|
|
9457
9229
|
//#endregion
|
|
9458
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
9230
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/scope/WithScope.js
|
|
9459
9231
|
var require_WithScope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
9460
9232
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9461
9233
|
exports.WithScope = void 0;
|
|
@@ -9476,9 +9248,8 @@ var require_WithScope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
9476
9248
|
};
|
|
9477
9249
|
exports.WithScope = WithScope;
|
|
9478
9250
|
}));
|
|
9479
|
-
|
|
9480
9251
|
//#endregion
|
|
9481
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
9252
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/scope/index.js
|
|
9482
9253
|
var require_scope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
9483
9254
|
var __createBinding = exports && exports.__createBinding || (Object.create ? (function(o, m, k, k2) {
|
|
9484
9255
|
if (k2 === void 0) k2 = k;
|
|
@@ -9494,8 +9265,8 @@ var require_scope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
9494
9265
|
if (k2 === void 0) k2 = k;
|
|
9495
9266
|
o[k2] = m[k];
|
|
9496
9267
|
}));
|
|
9497
|
-
var __exportStar = exports && exports.__exportStar || function(m, exports$
|
|
9498
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports$
|
|
9268
|
+
var __exportStar = exports && exports.__exportStar || function(m, exports$5) {
|
|
9269
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports$5, p)) __createBinding(exports$5, m, p);
|
|
9499
9270
|
};
|
|
9500
9271
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9501
9272
|
__exportStar(require_BlockScope(), exports);
|
|
@@ -9518,9 +9289,8 @@ var require_scope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
9518
9289
|
__exportStar(require_TypeScope(), exports);
|
|
9519
9290
|
__exportStar(require_WithScope(), exports);
|
|
9520
9291
|
}));
|
|
9521
|
-
|
|
9522
9292
|
//#endregion
|
|
9523
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
9293
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/referencer/VisitorBase.js
|
|
9524
9294
|
var require_VisitorBase = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
9525
9295
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9526
9296
|
exports.VisitorBase = void 0;
|
|
@@ -9571,9 +9341,8 @@ var require_VisitorBase = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
9571
9341
|
};
|
|
9572
9342
|
exports.VisitorBase = VisitorBase;
|
|
9573
9343
|
}));
|
|
9574
|
-
|
|
9575
9344
|
//#endregion
|
|
9576
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
9345
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/referencer/PatternVisitor.js
|
|
9577
9346
|
var require_PatternVisitor = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
9578
9347
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9579
9348
|
exports.PatternVisitor = void 0;
|
|
@@ -9647,15 +9416,14 @@ var require_PatternVisitor = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
9647
9416
|
};
|
|
9648
9417
|
exports.PatternVisitor = PatternVisitor;
|
|
9649
9418
|
}));
|
|
9650
|
-
|
|
9651
9419
|
//#endregion
|
|
9652
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
9420
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/referencer/Visitor.js
|
|
9653
9421
|
var require_Visitor = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
9654
9422
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9655
9423
|
exports.VisitorBase = exports.Visitor = void 0;
|
|
9656
9424
|
const PatternVisitor_1 = require_PatternVisitor();
|
|
9657
9425
|
const VisitorBase_1 = require_VisitorBase();
|
|
9658
|
-
|
|
9426
|
+
exports.Visitor = class Visitor extends VisitorBase_1.VisitorBase {
|
|
9659
9427
|
#options;
|
|
9660
9428
|
constructor(optionsOrVisitor) {
|
|
9661
9429
|
super(optionsOrVisitor instanceof Visitor ? optionsOrVisitor.#options : optionsOrVisitor);
|
|
@@ -9667,7 +9435,6 @@ var require_Visitor = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
9667
9435
|
if (options.processRightHandNodes) visitor.rightHandNodes.forEach(this.visit, this);
|
|
9668
9436
|
}
|
|
9669
9437
|
};
|
|
9670
|
-
exports.Visitor = Visitor;
|
|
9671
9438
|
var VisitorBase_2 = require_VisitorBase();
|
|
9672
9439
|
Object.defineProperty(exports, "VisitorBase", {
|
|
9673
9440
|
enumerable: true,
|
|
@@ -9676,9 +9443,8 @@ var require_Visitor = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
9676
9443
|
}
|
|
9677
9444
|
});
|
|
9678
9445
|
}));
|
|
9679
|
-
|
|
9680
9446
|
//#endregion
|
|
9681
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
9447
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/referencer/TypeVisitor.js
|
|
9682
9448
|
var require_TypeVisitor = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
9683
9449
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9684
9450
|
exports.TypeVisitor = void 0;
|
|
@@ -9686,7 +9452,7 @@ var require_TypeVisitor = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
9686
9452
|
const definition_1 = require_definition();
|
|
9687
9453
|
const scope_1 = require_scope();
|
|
9688
9454
|
const Visitor_1 = require_Visitor();
|
|
9689
|
-
|
|
9455
|
+
exports.TypeVisitor = class TypeVisitor extends Visitor_1.Visitor {
|
|
9690
9456
|
#referencer;
|
|
9691
9457
|
constructor(referencer) {
|
|
9692
9458
|
super(referencer);
|
|
@@ -9834,11 +9600,9 @@ var require_TypeVisitor = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
9834
9600
|
this.visit(node.typeArguments);
|
|
9835
9601
|
}
|
|
9836
9602
|
};
|
|
9837
|
-
exports.TypeVisitor = TypeVisitor;
|
|
9838
9603
|
}));
|
|
9839
|
-
|
|
9840
9604
|
//#endregion
|
|
9841
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
9605
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/referencer/ClassVisitor.js
|
|
9842
9606
|
var require_ClassVisitor = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
9843
9607
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9844
9608
|
exports.ClassVisitor = void 0;
|
|
@@ -9846,7 +9610,7 @@ var require_ClassVisitor = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
9846
9610
|
const definition_1 = require_definition();
|
|
9847
9611
|
const TypeVisitor_1 = require_TypeVisitor();
|
|
9848
9612
|
const Visitor_1 = require_Visitor();
|
|
9849
|
-
|
|
9613
|
+
exports.ClassVisitor = class ClassVisitor extends Visitor_1.Visitor {
|
|
9850
9614
|
#referencer;
|
|
9851
9615
|
constructor(referencer) {
|
|
9852
9616
|
super(referencer);
|
|
@@ -9963,17 +9727,15 @@ var require_ClassVisitor = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
9963
9727
|
this.visitType(node);
|
|
9964
9728
|
}
|
|
9965
9729
|
};
|
|
9966
|
-
exports.ClassVisitor = ClassVisitor;
|
|
9967
9730
|
}));
|
|
9968
|
-
|
|
9969
9731
|
//#endregion
|
|
9970
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
9732
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/referencer/ExportVisitor.js
|
|
9971
9733
|
var require_ExportVisitor = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
9972
9734
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9973
9735
|
exports.ExportVisitor = void 0;
|
|
9974
9736
|
const types_1 = require_dist$3();
|
|
9975
9737
|
const Visitor_1 = require_Visitor();
|
|
9976
|
-
|
|
9738
|
+
exports.ExportVisitor = class ExportVisitor extends Visitor_1.Visitor {
|
|
9977
9739
|
#exportNode;
|
|
9978
9740
|
#referencer;
|
|
9979
9741
|
constructor(node, referencer) {
|
|
@@ -10000,17 +9762,15 @@ var require_ExportVisitor = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
10000
9762
|
else this.#referencer.currentScope().referenceDualValueType(node);
|
|
10001
9763
|
}
|
|
10002
9764
|
};
|
|
10003
|
-
exports.ExportVisitor = ExportVisitor;
|
|
10004
9765
|
}));
|
|
10005
|
-
|
|
10006
9766
|
//#endregion
|
|
10007
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
9767
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/referencer/ImportVisitor.js
|
|
10008
9768
|
var require_ImportVisitor = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
10009
9769
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10010
9770
|
exports.ImportVisitor = void 0;
|
|
10011
9771
|
const definition_1 = require_definition();
|
|
10012
9772
|
const Visitor_1 = require_Visitor();
|
|
10013
|
-
|
|
9773
|
+
exports.ImportVisitor = class ImportVisitor extends Visitor_1.Visitor {
|
|
10014
9774
|
#declaration;
|
|
10015
9775
|
#referencer;
|
|
10016
9776
|
constructor(declaration, referencer) {
|
|
@@ -10037,11 +9797,9 @@ var require_ImportVisitor = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
10037
9797
|
this.#referencer.currentScope().defineIdentifier(id, new definition_1.ImportBindingDefinition(id, specifier, this.#declaration));
|
|
10038
9798
|
}
|
|
10039
9799
|
};
|
|
10040
|
-
exports.ImportVisitor = ImportVisitor;
|
|
10041
9800
|
}));
|
|
10042
|
-
|
|
10043
9801
|
//#endregion
|
|
10044
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
9802
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/referencer/Referencer.js
|
|
10045
9803
|
var require_Referencer = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
10046
9804
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10047
9805
|
exports.Referencer = void 0;
|
|
@@ -10079,7 +9837,7 @@ var require_Referencer = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
10079
9837
|
}
|
|
10080
9838
|
for (const lib of flattenedLibs) {
|
|
10081
9839
|
for (const referencedLib of lib.libs) flattenedLibs.add(referencedLib);
|
|
10082
|
-
for (const [name
|
|
9840
|
+
for (const [name, variable] of lib.variables) globalScope.defineImplicitVariable(name, variable);
|
|
10083
9841
|
}
|
|
10084
9842
|
globalScope.defineImplicitVariable("const", {
|
|
10085
9843
|
eslintImplicitGlobalSetting: "readonly",
|
|
@@ -10102,10 +9860,10 @@ var require_Referencer = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
10102
9860
|
/**
|
|
10103
9861
|
* Searches for a variable named "name" in the upper scopes and adds a pseudo-reference from itself to itself
|
|
10104
9862
|
*/
|
|
10105
|
-
referenceInSomeUpperScope(name
|
|
9863
|
+
referenceInSomeUpperScope(name) {
|
|
10106
9864
|
let scope = this.scopeManager.currentScope;
|
|
10107
9865
|
while (scope) {
|
|
10108
|
-
const variable = scope.set.get(name
|
|
9866
|
+
const variable = scope.set.get(name);
|
|
10109
9867
|
if (!variable) {
|
|
10110
9868
|
scope = scope.upper;
|
|
10111
9869
|
continue;
|
|
@@ -10224,13 +9982,10 @@ var require_Referencer = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
10224
9982
|
}
|
|
10225
9983
|
CatchClause(node) {
|
|
10226
9984
|
this.scopeManager.nestCatchScope(node);
|
|
10227
|
-
if (node.param) {
|
|
10228
|
-
|
|
10229
|
-
this.
|
|
10230
|
-
|
|
10231
|
-
this.referencingDefaultValue(pattern, info.assignments, null, true);
|
|
10232
|
-
}, { processRightHandNodes: true });
|
|
10233
|
-
}
|
|
9985
|
+
if (node.param) this.visitPattern(node.param, (pattern, info) => {
|
|
9986
|
+
this.currentScope().defineIdentifier(pattern, new definition_1.CatchClauseDefinition(pattern, node));
|
|
9987
|
+
this.referencingDefaultValue(pattern, info.assignments, null, true);
|
|
9988
|
+
}, { processRightHandNodes: true });
|
|
10234
9989
|
this.visit(node.body);
|
|
10235
9990
|
this.close(node);
|
|
10236
9991
|
}
|
|
@@ -10257,7 +10012,7 @@ var require_Referencer = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
10257
10012
|
this.visitForIn(node);
|
|
10258
10013
|
}
|
|
10259
10014
|
ForStatement(node) {
|
|
10260
|
-
if (node.init
|
|
10015
|
+
if (node.init?.type === types_1.AST_NODE_TYPES.VariableDeclaration && node.init.kind !== "var") this.scopeManager.nestForScope(node);
|
|
10261
10016
|
this.visitChildren(node);
|
|
10262
10017
|
this.close(node);
|
|
10263
10018
|
}
|
|
@@ -10352,8 +10107,8 @@ var require_Referencer = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
10352
10107
|
this.scopeManager.nestTSEnumScope(node);
|
|
10353
10108
|
for (const member of node.body.members) {
|
|
10354
10109
|
if (member.id.type === types_1.AST_NODE_TYPES.Literal && typeof member.id.value === "string") {
|
|
10355
|
-
const name
|
|
10356
|
-
this.currentScope().defineLiteralIdentifier(name
|
|
10110
|
+
const name = member.id;
|
|
10111
|
+
this.currentScope().defineLiteralIdentifier(name, new definition_1.TSEnumMemberDefinition(name, member));
|
|
10357
10112
|
} else if (member.id.type === types_1.AST_NODE_TYPES.Identifier) this.currentScope().defineIdentifier(member.id, new definition_1.TSEnumMemberDefinition(member.id, member));
|
|
10358
10113
|
this.visit(member.initializer);
|
|
10359
10114
|
}
|
|
@@ -10430,9 +10185,8 @@ var require_Referencer = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
10430
10185
|
};
|
|
10431
10186
|
exports.Referencer = Referencer;
|
|
10432
10187
|
}));
|
|
10433
|
-
|
|
10434
10188
|
//#endregion
|
|
10435
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
10189
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/referencer/index.js
|
|
10436
10190
|
var require_referencer = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
10437
10191
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10438
10192
|
exports.Referencer = void 0;
|
|
@@ -10444,9 +10198,8 @@ var require_referencer = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
10444
10198
|
}
|
|
10445
10199
|
});
|
|
10446
10200
|
}));
|
|
10447
|
-
|
|
10448
10201
|
//#endregion
|
|
10449
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
10202
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassStaticBlockScope.js
|
|
10450
10203
|
var require_ClassStaticBlockScope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
10451
10204
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10452
10205
|
exports.ClassStaticBlockScope = void 0;
|
|
@@ -10459,9 +10212,8 @@ var require_ClassStaticBlockScope = /* @__PURE__ */ __commonJSMin(((exports) =>
|
|
|
10459
10212
|
};
|
|
10460
10213
|
exports.ClassStaticBlockScope = ClassStaticBlockScope;
|
|
10461
10214
|
}));
|
|
10462
|
-
|
|
10463
10215
|
//#endregion
|
|
10464
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
10216
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/ScopeManager.js
|
|
10465
10217
|
var require_ScopeManager = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
10466
10218
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10467
10219
|
exports.ScopeManager = void 0;
|
|
@@ -10551,6 +10303,14 @@ var require_ScopeManager = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
10551
10303
|
}
|
|
10552
10304
|
return scopes.find(predicate) ?? null;
|
|
10553
10305
|
}
|
|
10306
|
+
/**
|
|
10307
|
+
* Adds dynamically created globals to the global scope and resolve their references.
|
|
10308
|
+
* This method is called by ESLint.
|
|
10309
|
+
* @param names Names of the globals to create
|
|
10310
|
+
*/
|
|
10311
|
+
addGlobals(names) {
|
|
10312
|
+
this.globalScope?.addVariables(names);
|
|
10313
|
+
}
|
|
10554
10314
|
nestBlockScope(node) {
|
|
10555
10315
|
(0, assert_1.assert)(this.currentScope);
|
|
10556
10316
|
return this.nestScope(new scope_1.BlockScope(this, this.currentScope, node));
|
|
@@ -10633,9 +10393,8 @@ var require_ScopeManager = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
10633
10393
|
};
|
|
10634
10394
|
exports.ScopeManager = ScopeManager;
|
|
10635
10395
|
}));
|
|
10636
|
-
|
|
10637
10396
|
//#endregion
|
|
10638
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
10397
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/analyze.js
|
|
10639
10398
|
var require_analyze = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
10640
10399
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10641
10400
|
exports.analyze = analyze;
|
|
@@ -10672,9 +10431,8 @@ var require_analyze = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
10672
10431
|
return scopeManager;
|
|
10673
10432
|
}
|
|
10674
10433
|
}));
|
|
10675
|
-
|
|
10676
10434
|
//#endregion
|
|
10677
|
-
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.
|
|
10435
|
+
//#region node_modules/.pnpm/@typescript-eslint+scope-manager@8.57.0/node_modules/@typescript-eslint/scope-manager/dist/index.js
|
|
10678
10436
|
var require_dist$1 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
10679
10437
|
var __createBinding = exports && exports.__createBinding || (Object.create ? (function(o, m, k, k2) {
|
|
10680
10438
|
if (k2 === void 0) k2 = k;
|
|
@@ -10690,8 +10448,8 @@ var require_dist$1 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
10690
10448
|
if (k2 === void 0) k2 = k;
|
|
10691
10449
|
o[k2] = m[k];
|
|
10692
10450
|
}));
|
|
10693
|
-
var __exportStar = exports && exports.__exportStar || function(m, exports$
|
|
10694
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports$
|
|
10451
|
+
var __exportStar = exports && exports.__exportStar || function(m, exports$4) {
|
|
10452
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports$4, p)) __createBinding(exports$4, m, p);
|
|
10695
10453
|
};
|
|
10696
10454
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10697
10455
|
exports.ScopeManager = exports.Visitor = exports.Reference = exports.PatternVisitor = exports.analyze = void 0;
|
|
@@ -10734,9 +10492,8 @@ var require_dist$1 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
10734
10492
|
});
|
|
10735
10493
|
__exportStar(require_variable(), exports);
|
|
10736
10494
|
}));
|
|
10737
|
-
|
|
10738
10495
|
//#endregion
|
|
10739
|
-
//#region node_modules/.pnpm/@typescript-eslint+utils@8.
|
|
10496
|
+
//#region node_modules/.pnpm/@typescript-eslint+utils@8.57.0_eslint@10.0.3_jiti@2.6.1__typescript@5.9.3/node_modules/@typescript-eslint/utils/dist/ts-eslint/Scope.js
|
|
10740
10497
|
var require_Scope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
10741
10498
|
var __createBinding = exports && exports.__createBinding || (Object.create ? (function(o, m, k, k2) {
|
|
10742
10499
|
if (k2 === void 0) k2 = k;
|
|
@@ -10762,9 +10519,9 @@ var require_Scope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
10762
10519
|
});
|
|
10763
10520
|
var __importStar = exports && exports.__importStar || (function() {
|
|
10764
10521
|
var ownKeys = function(o) {
|
|
10765
|
-
ownKeys = Object.getOwnPropertyNames || function(o
|
|
10522
|
+
ownKeys = Object.getOwnPropertyNames || function(o) {
|
|
10766
10523
|
var ar = [];
|
|
10767
|
-
for (var k in o
|
|
10524
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
10768
10525
|
return ar;
|
|
10769
10526
|
};
|
|
10770
10527
|
return ownKeys(o);
|
|
@@ -10788,9 +10545,8 @@ var require_Scope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
10788
10545
|
Scope.DefinitionType = scopeManager.DefinitionType;
|
|
10789
10546
|
})(Scope || (exports.Scope = Scope = {}));
|
|
10790
10547
|
}));
|
|
10791
|
-
|
|
10792
10548
|
//#endregion
|
|
10793
|
-
//#region node_modules/.pnpm/@typescript-eslint+utils@8.
|
|
10549
|
+
//#region node_modules/.pnpm/@typescript-eslint+utils@8.57.0_eslint@10.0.3_jiti@2.6.1__typescript@5.9.3/node_modules/@typescript-eslint/utils/dist/ts-eslint/SourceCode.js
|
|
10794
10550
|
var require_SourceCode = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
10795
10551
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10796
10552
|
exports.SourceCode = void 0;
|
|
@@ -10798,9 +10554,8 @@ var require_SourceCode = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
10798
10554
|
var SourceCode = class extends eslint_1.SourceCode {};
|
|
10799
10555
|
exports.SourceCode = SourceCode;
|
|
10800
10556
|
}));
|
|
10801
|
-
|
|
10802
10557
|
//#endregion
|
|
10803
|
-
//#region node_modules/.pnpm/@typescript-eslint+utils@8.
|
|
10558
|
+
//#region node_modules/.pnpm/@typescript-eslint+utils@8.57.0_eslint@10.0.3_jiti@2.6.1__typescript@5.9.3/node_modules/@typescript-eslint/utils/dist/ts-eslint/index.js
|
|
10804
10559
|
var require_ts_eslint = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
10805
10560
|
var __createBinding = exports && exports.__createBinding || (Object.create ? (function(o, m, k, k2) {
|
|
10806
10561
|
if (k2 === void 0) k2 = k;
|
|
@@ -10816,8 +10571,8 @@ var require_ts_eslint = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
10816
10571
|
if (k2 === void 0) k2 = k;
|
|
10817
10572
|
o[k2] = m[k];
|
|
10818
10573
|
}));
|
|
10819
|
-
var __exportStar = exports && exports.__exportStar || function(m, exports$
|
|
10820
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports$
|
|
10574
|
+
var __exportStar = exports && exports.__exportStar || function(m, exports$3) {
|
|
10575
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports$3, p)) __createBinding(exports$3, m, p);
|
|
10821
10576
|
};
|
|
10822
10577
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10823
10578
|
__exportStar(require_AST(), exports);
|
|
@@ -10832,9 +10587,8 @@ var require_ts_eslint = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
10832
10587
|
__exportStar(require_Scope(), exports);
|
|
10833
10588
|
__exportStar(require_SourceCode(), exports);
|
|
10834
10589
|
}));
|
|
10835
|
-
|
|
10836
10590
|
//#endregion
|
|
10837
|
-
//#region node_modules/.pnpm/@typescript-eslint+utils@8.
|
|
10591
|
+
//#region node_modules/.pnpm/@typescript-eslint+utils@8.57.0_eslint@10.0.3_jiti@2.6.1__typescript@5.9.3/node_modules/@typescript-eslint/utils/dist/ts-utils/isArray.js
|
|
10838
10592
|
var require_isArray = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
10839
10593
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10840
10594
|
exports.isArray = isArray;
|
|
@@ -10842,15 +10596,13 @@ var require_isArray = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
10842
10596
|
return Array.isArray(arg);
|
|
10843
10597
|
}
|
|
10844
10598
|
}));
|
|
10845
|
-
|
|
10846
10599
|
//#endregion
|
|
10847
|
-
//#region node_modules/.pnpm/@typescript-eslint+utils@8.
|
|
10600
|
+
//#region node_modules/.pnpm/@typescript-eslint+utils@8.57.0_eslint@10.0.3_jiti@2.6.1__typescript@5.9.3/node_modules/@typescript-eslint/utils/dist/ts-utils/NoInfer.js
|
|
10848
10601
|
var require_NoInfer = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
10849
10602
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10850
10603
|
}));
|
|
10851
|
-
|
|
10852
10604
|
//#endregion
|
|
10853
|
-
//#region node_modules/.pnpm/@typescript-eslint+utils@8.
|
|
10605
|
+
//#region node_modules/.pnpm/@typescript-eslint+utils@8.57.0_eslint@10.0.3_jiti@2.6.1__typescript@5.9.3/node_modules/@typescript-eslint/utils/dist/ts-utils/index.js
|
|
10854
10606
|
var require_ts_utils = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
10855
10607
|
var __createBinding = exports && exports.__createBinding || (Object.create ? (function(o, m, k, k2) {
|
|
10856
10608
|
if (k2 === void 0) k2 = k;
|
|
@@ -10866,17 +10618,16 @@ var require_ts_utils = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
10866
10618
|
if (k2 === void 0) k2 = k;
|
|
10867
10619
|
o[k2] = m[k];
|
|
10868
10620
|
}));
|
|
10869
|
-
var __exportStar = exports && exports.__exportStar || function(m, exports$
|
|
10870
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports$
|
|
10621
|
+
var __exportStar = exports && exports.__exportStar || function(m, exports$2) {
|
|
10622
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports$2, p)) __createBinding(exports$2, m, p);
|
|
10871
10623
|
};
|
|
10872
10624
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10873
10625
|
__exportStar(require_isArray(), exports);
|
|
10874
10626
|
__exportStar(require_NoInfer(), exports);
|
|
10875
10627
|
}));
|
|
10876
|
-
|
|
10877
10628
|
//#endregion
|
|
10878
|
-
//#region node_modules/.pnpm
|
|
10879
|
-
var
|
|
10629
|
+
//#region node_modules/.pnpm/eslint-plugin-erasable-syntax-only@0.4.0_@typescript-eslint+parser@8.57.0_eslint@10.0.3_c2f6f298082d288087cfcf61737427ed/node_modules/eslint-plugin-erasable-syntax-only/lib/utils.js
|
|
10630
|
+
var import_dist = (/* @__PURE__ */ __commonJSMin(((exports) => {
|
|
10880
10631
|
var __createBinding = exports && exports.__createBinding || (Object.create ? (function(o, m, k, k2) {
|
|
10881
10632
|
if (k2 === void 0) k2 = k;
|
|
10882
10633
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
@@ -10901,9 +10652,9 @@ var require_dist = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
10901
10652
|
});
|
|
10902
10653
|
var __importStar = exports && exports.__importStar || (function() {
|
|
10903
10654
|
var ownKeys = function(o) {
|
|
10904
|
-
ownKeys = Object.getOwnPropertyNames || function(o
|
|
10655
|
+
ownKeys = Object.getOwnPropertyNames || function(o) {
|
|
10905
10656
|
var ar = [];
|
|
10906
|
-
for (var k in o
|
|
10657
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
10907
10658
|
return ar;
|
|
10908
10659
|
};
|
|
10909
10660
|
return ownKeys(o);
|
|
@@ -10929,19 +10680,14 @@ var require_dist = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
10929
10680
|
exports.TSESLint = __importStar(require_ts_eslint());
|
|
10930
10681
|
__exportStar(require_ts_estree(), exports);
|
|
10931
10682
|
exports.TSUtils = __importStar(require_ts_utils());
|
|
10932
|
-
}));
|
|
10933
|
-
|
|
10934
|
-
//#endregion
|
|
10935
|
-
//#region node_modules/.pnpm/eslint-plugin-erasable-syntax-only@0.4.0_@typescript-eslint+parser@8.53.0_eslint@9.39.2_24da780f368b860d5b1e09d753136340/node_modules/eslint-plugin-erasable-syntax-only/lib/utils.js
|
|
10936
|
-
var import_dist = require_dist();
|
|
10937
|
-
const createRule = import_dist.ESLintUtils.RuleCreator((name$1) => `https://github.com/JoshuaKGoldberg/eslint-plugin-erasable-syntax-only/blob/main/docs/rules/${name$1}.md`);
|
|
10938
|
-
|
|
10683
|
+
})))();
|
|
10684
|
+
const createRule = import_dist.ESLintUtils.RuleCreator((name) => `https://github.com/JoshuaKGoldberg/eslint-plugin-erasable-syntax-only/blob/main/docs/rules/${name}.md`);
|
|
10939
10685
|
//#endregion
|
|
10940
|
-
//#region node_modules/.pnpm/eslint-plugin-erasable-syntax-only@0.4.0_@typescript-eslint+parser@8.
|
|
10686
|
+
//#region node_modules/.pnpm/eslint-plugin-erasable-syntax-only@0.4.0_@typescript-eslint+parser@8.57.0_eslint@10.0.3_c2f6f298082d288087cfcf61737427ed/node_modules/eslint-plugin-erasable-syntax-only/lib/rules/enums.js
|
|
10941
10687
|
const rule$3 = createRule({
|
|
10942
10688
|
create(context) {
|
|
10943
10689
|
return { TSEnumDeclaration(node) {
|
|
10944
|
-
const name
|
|
10690
|
+
const name = node.id.name;
|
|
10945
10691
|
const isExported = node.parent.type === import_dist.AST_NODE_TYPES.ExportNamedDeclaration;
|
|
10946
10692
|
let canSuggestion = true;
|
|
10947
10693
|
const body = [];
|
|
@@ -10975,7 +10721,7 @@ const rule$3 = createRule({
|
|
|
10975
10721
|
fixer.insertTextAfter(node.body, " as const"),
|
|
10976
10722
|
fixer.insertTextAfter(node.parent.parent ?? node.parent, `
|
|
10977
10723
|
|
|
10978
|
-
${isExported ? "export " : ""}type ${name
|
|
10724
|
+
${isExported ? "export " : ""}type ${name} = typeof ${name}[keyof typeof ${name}]`)
|
|
10979
10725
|
];
|
|
10980
10726
|
},
|
|
10981
10727
|
messageId: "enumFix"
|
|
@@ -10996,9 +10742,8 @@ ${isExported ? "export " : ""}type ${name$1} = typeof ${name$1}[keyof typeof ${n
|
|
|
10996
10742
|
},
|
|
10997
10743
|
name: "enums"
|
|
10998
10744
|
});
|
|
10999
|
-
|
|
11000
10745
|
//#endregion
|
|
11001
|
-
//#region node_modules/.pnpm/eslint-plugin-erasable-syntax-only@0.4.0_@typescript-eslint+parser@8.
|
|
10746
|
+
//#region node_modules/.pnpm/eslint-plugin-erasable-syntax-only@0.4.0_@typescript-eslint+parser@8.57.0_eslint@10.0.3_c2f6f298082d288087cfcf61737427ed/node_modules/eslint-plugin-erasable-syntax-only/lib/rules/import-aliases.js
|
|
11002
10747
|
const rule$2 = createRule({
|
|
11003
10748
|
create(context) {
|
|
11004
10749
|
return { TSImportEqualsDeclaration(node) {
|
|
@@ -11037,7 +10782,6 @@ const rule$2 = createRule({
|
|
|
11037
10782
|
},
|
|
11038
10783
|
name: "import-aliases"
|
|
11039
10784
|
});
|
|
11040
|
-
|
|
11041
10785
|
//#endregion
|
|
11042
10786
|
//#region node_modules/.pnpm/cached-factory@0.1.0/node_modules/cached-factory/lib/index.js
|
|
11043
10787
|
var CachedFactory = class {
|
|
@@ -11060,9 +10804,8 @@ var CachedFactory = class {
|
|
|
11060
10804
|
return value;
|
|
11061
10805
|
}
|
|
11062
10806
|
};
|
|
11063
|
-
|
|
11064
10807
|
//#endregion
|
|
11065
|
-
//#region node_modules/.pnpm/eslint-plugin-erasable-syntax-only@0.4.0_@typescript-eslint+parser@8.
|
|
10808
|
+
//#region node_modules/.pnpm/eslint-plugin-erasable-syntax-only@0.4.0_@typescript-eslint+parser@8.57.0_eslint@10.0.3_c2f6f298082d288087cfcf61737427ed/node_modules/eslint-plugin-erasable-syntax-only/lib/rules/namespaces.js
|
|
11066
10809
|
function skipExportParent(node) {
|
|
11067
10810
|
return node.parent.type == import_dist.AST_NODE_TYPES.ExportNamedDeclaration ? node.parent : node;
|
|
11068
10811
|
}
|
|
@@ -11097,9 +10840,8 @@ const rule$1 = createRule({
|
|
|
11097
10840
|
},
|
|
11098
10841
|
name: "namespaces"
|
|
11099
10842
|
});
|
|
11100
|
-
|
|
11101
10843
|
//#endregion
|
|
11102
|
-
//#region node_modules/.pnpm/eslint-plugin-erasable-syntax-only@0.4.0_@typescript-eslint+parser@8.
|
|
10844
|
+
//#region node_modules/.pnpm/eslint-plugin-erasable-syntax-only@0.4.0_@typescript-eslint+parser@8.57.0_eslint@10.0.3_c2f6f298082d288087cfcf61737427ed/node_modules/eslint-plugin-erasable-syntax-only/lib/rules/parameter-properties.js
|
|
11103
10845
|
const rule = createRule({
|
|
11104
10846
|
create(context) {
|
|
11105
10847
|
return { TSParameterProperty(node) {
|
|
@@ -11118,18 +10860,16 @@ const rule = createRule({
|
|
|
11118
10860
|
},
|
|
11119
10861
|
name: "parameter-properties"
|
|
11120
10862
|
});
|
|
11121
|
-
|
|
11122
10863
|
//#endregion
|
|
11123
|
-
//#region node_modules/.pnpm/eslint-plugin-erasable-syntax-only@0.4.0_@typescript-eslint+parser@8.
|
|
10864
|
+
//#region node_modules/.pnpm/eslint-plugin-erasable-syntax-only@0.4.0_@typescript-eslint+parser@8.57.0_eslint@10.0.3_c2f6f298082d288087cfcf61737427ed/node_modules/eslint-plugin-erasable-syntax-only/lib/rules/index.js
|
|
11124
10865
|
const rules = {
|
|
11125
10866
|
enums: rule$3,
|
|
11126
10867
|
"import-aliases": rule$2,
|
|
11127
10868
|
namespaces: rule$1,
|
|
11128
10869
|
"parameter-properties": rule
|
|
11129
10870
|
};
|
|
11130
|
-
|
|
11131
10871
|
//#endregion
|
|
11132
|
-
//#region node_modules/.pnpm/eslint-plugin-erasable-syntax-only@0.4.0_@typescript-eslint+parser@8.
|
|
10872
|
+
//#region node_modules/.pnpm/eslint-plugin-erasable-syntax-only@0.4.0_@typescript-eslint+parser@8.57.0_eslint@10.0.3_c2f6f298082d288087cfcf61737427ed/node_modules/eslint-plugin-erasable-syntax-only/lib/index.js
|
|
11133
10873
|
const { name, version } = Module.createRequire(import.meta.url)("../package.json");
|
|
11134
10874
|
const plugin = {
|
|
11135
10875
|
configs: { get recommended() {
|
|
@@ -11143,9 +10883,8 @@ const plugin = {
|
|
|
11143
10883
|
};
|
|
11144
10884
|
const recommended = {
|
|
11145
10885
|
plugins: { "erasable-syntax-only": plugin },
|
|
11146
|
-
rules: Object.fromEntries(Object.keys(rules).map((rule
|
|
10886
|
+
rules: Object.fromEntries(Object.keys(rules).map((rule) => [`erasable-syntax-only/${rule}`, "error"]))
|
|
11147
10887
|
};
|
|
11148
10888
|
var index_default = plugin;
|
|
11149
|
-
|
|
11150
10889
|
//#endregion
|
|
11151
|
-
export { index_default as default, plugin, rules };
|
|
10890
|
+
export { index_default as default, plugin, rules };
|