@antfu/eslint-config 7.7.0 → 7.7.2
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/dist/cli.mjs +20 -30
- package/dist/index.d.mts +1000 -1975
- package/dist/index.mjs +114 -150
- package/dist/{lib-B1Rme4qD.mjs → lib-D3Kr7UIJ.mjs} +559 -850
- package/package.json +31 -19
|
@@ -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.1_eslint@10.0.
|
|
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
|
}
|
|
@@ -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
|
/**
|
|
@@ -1081,8 +1078,8 @@ var require_eslint_utils$2 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
1081
1078
|
}
|
|
1082
1079
|
if (isObjectMethod || isClassMethod || isClassFieldMethod) if (parent.key.type === "PrivateIdentifier") tokens.push(`#${parent.key.name}`);
|
|
1083
1080
|
else {
|
|
1084
|
-
const name
|
|
1085
|
-
if (name
|
|
1081
|
+
const name = getPropertyName(parent);
|
|
1082
|
+
if (name) tokens.push(`'${name}'`);
|
|
1086
1083
|
else if (sourceCode) {
|
|
1087
1084
|
const keyText = sourceCode.getText(parent.key);
|
|
1088
1085
|
if (!keyText.includes("\n")) tokens.push(`[${keyText}]`);
|
|
@@ -1824,8 +1821,8 @@ var require_eslint_utils$2 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
1824
1821
|
* @param {number} index The index of the name.
|
|
1825
1822
|
* @returns {boolean} `false` if it's default.
|
|
1826
1823
|
*/
|
|
1827
|
-
function exceptDefault(name
|
|
1828
|
-
return !(index === 1 && name
|
|
1824
|
+
function exceptDefault(name, index) {
|
|
1825
|
+
return !(index === 1 && name === "default");
|
|
1829
1826
|
}
|
|
1830
1827
|
/** @typedef {import("./types.mjs").StaticValue} StaticValue */
|
|
1831
1828
|
var index = {
|
|
@@ -1906,9 +1903,8 @@ var require_eslint_utils$2 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
1906
1903
|
exports.isParenthesized = isParenthesized;
|
|
1907
1904
|
exports.isSemicolonToken = isSemicolonToken;
|
|
1908
1905
|
}));
|
|
1909
|
-
|
|
1910
1906
|
//#endregion
|
|
1911
|
-
//#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
|
|
1912
1908
|
var require_astUtilities = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
1913
1909
|
var __createBinding = exports && exports.__createBinding || (Object.create ? (function(o, m, k, k2) {
|
|
1914
1910
|
if (k2 === void 0) k2 = k;
|
|
@@ -1934,9 +1930,9 @@ var require_astUtilities = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
1934
1930
|
});
|
|
1935
1931
|
var __importStar = exports && exports.__importStar || (function() {
|
|
1936
1932
|
var ownKeys = function(o) {
|
|
1937
|
-
ownKeys = Object.getOwnPropertyNames || function(o
|
|
1933
|
+
ownKeys = Object.getOwnPropertyNames || function(o) {
|
|
1938
1934
|
var ar = [];
|
|
1939
|
-
for (var k in o
|
|
1935
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
1940
1936
|
return ar;
|
|
1941
1937
|
};
|
|
1942
1938
|
return ownKeys(o);
|
|
@@ -2019,9 +2015,8 @@ var require_astUtilities = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2019
2015
|
exports.hasSideEffect = eslintUtils.hasSideEffect;
|
|
2020
2016
|
exports.isParenthesized = eslintUtils.isParenthesized;
|
|
2021
2017
|
}));
|
|
2022
|
-
|
|
2023
2018
|
//#endregion
|
|
2024
|
-
//#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
|
|
2025
2020
|
var require_PatternMatcher = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2026
2021
|
var __createBinding = exports && exports.__createBinding || (Object.create ? (function(o, m, k, k2) {
|
|
2027
2022
|
if (k2 === void 0) k2 = k;
|
|
@@ -2047,9 +2042,9 @@ var require_PatternMatcher = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2047
2042
|
});
|
|
2048
2043
|
var __importStar = exports && exports.__importStar || (function() {
|
|
2049
2044
|
var ownKeys = function(o) {
|
|
2050
|
-
ownKeys = Object.getOwnPropertyNames || function(o
|
|
2045
|
+
ownKeys = Object.getOwnPropertyNames || function(o) {
|
|
2051
2046
|
var ar = [];
|
|
2052
|
-
for (var k in o
|
|
2047
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
2053
2048
|
return ar;
|
|
2054
2049
|
};
|
|
2055
2050
|
return ownKeys(o);
|
|
@@ -2066,18 +2061,16 @@ var require_PatternMatcher = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2066
2061
|
})();
|
|
2067
2062
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2068
2063
|
exports.PatternMatcher = void 0;
|
|
2069
|
-
const eslintUtils = __importStar(require_eslint_utils$2());
|
|
2070
2064
|
/**
|
|
2071
2065
|
* The class to find a pattern in strings as handling escape sequences.
|
|
2072
2066
|
* It ignores the found pattern if it's escaped with `\`.
|
|
2073
2067
|
*
|
|
2074
2068
|
* @see {@link https://eslint-community.github.io/eslint-utils/api/ast-utils.html#patternmatcher-class}
|
|
2075
2069
|
*/
|
|
2076
|
-
exports.PatternMatcher =
|
|
2070
|
+
exports.PatternMatcher = __importStar(require_eslint_utils$2()).PatternMatcher;
|
|
2077
2071
|
}));
|
|
2078
|
-
|
|
2079
2072
|
//#endregion
|
|
2080
|
-
//#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
|
|
2081
2074
|
var require_predicates$1 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2082
2075
|
var __createBinding = exports && exports.__createBinding || (Object.create ? (function(o, m, k, k2) {
|
|
2083
2076
|
if (k2 === void 0) k2 = k;
|
|
@@ -2103,9 +2096,9 @@ var require_predicates$1 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2103
2096
|
});
|
|
2104
2097
|
var __importStar = exports && exports.__importStar || (function() {
|
|
2105
2098
|
var ownKeys = function(o) {
|
|
2106
|
-
ownKeys = Object.getOwnPropertyNames || function(o
|
|
2099
|
+
ownKeys = Object.getOwnPropertyNames || function(o) {
|
|
2107
2100
|
var ar = [];
|
|
2108
|
-
for (var k in o
|
|
2101
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
2109
2102
|
return ar;
|
|
2110
2103
|
};
|
|
2111
2104
|
return ownKeys(o);
|
|
@@ -2146,9 +2139,8 @@ var require_predicates$1 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2146
2139
|
exports.isSemicolonToken = eslintUtils.isSemicolonToken;
|
|
2147
2140
|
exports.isNotSemicolonToken = eslintUtils.isNotSemicolonToken;
|
|
2148
2141
|
}));
|
|
2149
|
-
|
|
2150
2142
|
//#endregion
|
|
2151
|
-
//#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
|
|
2152
2144
|
var require_ReferenceTracker = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2153
2145
|
var __createBinding = exports && exports.__createBinding || (Object.create ? (function(o, m, k, k2) {
|
|
2154
2146
|
if (k2 === void 0) k2 = k;
|
|
@@ -2174,9 +2166,9 @@ var require_ReferenceTracker = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2174
2166
|
});
|
|
2175
2167
|
var __importStar = exports && exports.__importStar || (function() {
|
|
2176
2168
|
var ownKeys = function(o) {
|
|
2177
|
-
ownKeys = Object.getOwnPropertyNames || function(o
|
|
2169
|
+
ownKeys = Object.getOwnPropertyNames || function(o) {
|
|
2178
2170
|
var ar = [];
|
|
2179
|
-
for (var k in o
|
|
2171
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
2180
2172
|
return ar;
|
|
2181
2173
|
};
|
|
2182
2174
|
return ownKeys(o);
|
|
@@ -2205,9 +2197,8 @@ var require_ReferenceTracker = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2205
2197
|
*/
|
|
2206
2198
|
exports.ReferenceTracker = eslintUtils.ReferenceTracker;
|
|
2207
2199
|
}));
|
|
2208
|
-
|
|
2209
2200
|
//#endregion
|
|
2210
|
-
//#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
|
|
2211
2202
|
var require_scopeAnalysis = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2212
2203
|
var __createBinding = exports && exports.__createBinding || (Object.create ? (function(o, m, k, k2) {
|
|
2213
2204
|
if (k2 === void 0) k2 = k;
|
|
@@ -2233,9 +2224,9 @@ var require_scopeAnalysis = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2233
2224
|
});
|
|
2234
2225
|
var __importStar = exports && exports.__importStar || (function() {
|
|
2235
2226
|
var ownKeys = function(o) {
|
|
2236
|
-
ownKeys = Object.getOwnPropertyNames || function(o
|
|
2227
|
+
ownKeys = Object.getOwnPropertyNames || function(o) {
|
|
2237
2228
|
var ar = [];
|
|
2238
|
-
for (var k in o
|
|
2229
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
2239
2230
|
return ar;
|
|
2240
2231
|
};
|
|
2241
2232
|
return ownKeys(o);
|
|
@@ -2268,9 +2259,8 @@ var require_scopeAnalysis = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2268
2259
|
*/
|
|
2269
2260
|
exports.getInnermostScope = eslintUtils.getInnermostScope;
|
|
2270
2261
|
}));
|
|
2271
|
-
|
|
2272
2262
|
//#endregion
|
|
2273
|
-
//#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
|
|
2274
2264
|
var require_eslint_utils$1 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2275
2265
|
var __createBinding = exports && exports.__createBinding || (Object.create ? (function(o, m, k, k2) {
|
|
2276
2266
|
if (k2 === void 0) k2 = k;
|
|
@@ -2286,8 +2276,8 @@ var require_eslint_utils$1 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2286
2276
|
if (k2 === void 0) k2 = k;
|
|
2287
2277
|
o[k2] = m[k];
|
|
2288
2278
|
}));
|
|
2289
|
-
var __exportStar = exports && exports.__exportStar || function(m, exports$
|
|
2290
|
-
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);
|
|
2291
2281
|
};
|
|
2292
2282
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2293
2283
|
__exportStar(require_astUtilities(), exports);
|
|
@@ -2296,9 +2286,8 @@ var require_eslint_utils$1 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2296
2286
|
__exportStar(require_ReferenceTracker(), exports);
|
|
2297
2287
|
__exportStar(require_scopeAnalysis(), exports);
|
|
2298
2288
|
}));
|
|
2299
|
-
|
|
2300
2289
|
//#endregion
|
|
2301
|
-
//#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
|
|
2302
2291
|
var require_helpers = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2303
2292
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2304
2293
|
exports.isNotTokenOfTypeWithConditions = exports.isTokenOfTypeWithConditions = exports.isNodeOfTypeWithConditions = exports.isNodeOfTypes = exports.isNodeOfType = void 0;
|
|
@@ -2319,9 +2308,8 @@ var require_helpers = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2319
2308
|
const isNotTokenOfTypeWithConditions = (tokenType, conditions) => (token) => !(0, exports.isTokenOfTypeWithConditions)(tokenType, conditions)(token);
|
|
2320
2309
|
exports.isNotTokenOfTypeWithConditions = isNotTokenOfTypeWithConditions;
|
|
2321
2310
|
}));
|
|
2322
|
-
|
|
2323
2311
|
//#endregion
|
|
2324
|
-
//#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
|
|
2325
2313
|
var require_misc = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2326
2314
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2327
2315
|
exports.LINEBREAK_MATCHER = void 0;
|
|
@@ -2334,9 +2322,8 @@ var require_misc = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2334
2322
|
return left.loc.end.line === right.loc.start.line;
|
|
2335
2323
|
}
|
|
2336
2324
|
}));
|
|
2337
|
-
|
|
2338
2325
|
//#endregion
|
|
2339
|
-
//#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
|
|
2340
2327
|
var require_ast_spec = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2341
2328
|
/**********************************************
|
|
2342
2329
|
* DO NOT MODIFY THIS FILE MANUALLY *
|
|
@@ -2350,175 +2337,175 @@ var require_ast_spec = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2350
2337
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2351
2338
|
exports.AST_TOKEN_TYPES = exports.AST_NODE_TYPES = void 0;
|
|
2352
2339
|
var AST_NODE_TYPES;
|
|
2353
|
-
(function(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
|
|
2519
|
-
AST_NODE_TYPES
|
|
2520
|
-
AST_NODE_TYPES
|
|
2521
|
-
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";
|
|
2522
2509
|
})(AST_NODE_TYPES || (exports.AST_NODE_TYPES = AST_NODE_TYPES = {}));
|
|
2523
2510
|
var AST_TOKEN_TYPES;
|
|
2524
2511
|
(function(AST_TOKEN_TYPES) {
|
|
@@ -2538,21 +2525,18 @@ var require_ast_spec = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2538
2525
|
AST_TOKEN_TYPES["Line"] = "Line";
|
|
2539
2526
|
})(AST_TOKEN_TYPES || (exports.AST_TOKEN_TYPES = AST_TOKEN_TYPES = {}));
|
|
2540
2527
|
}));
|
|
2541
|
-
|
|
2542
2528
|
//#endregion
|
|
2543
|
-
//#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
|
|
2544
2530
|
var require_lib$2 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2545
2531
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2546
2532
|
}));
|
|
2547
|
-
|
|
2548
2533
|
//#endregion
|
|
2549
|
-
//#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
|
|
2550
2535
|
var require_parser_options = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2551
2536
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2552
2537
|
}));
|
|
2553
|
-
|
|
2554
2538
|
//#endregion
|
|
2555
|
-
//#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
|
|
2556
2540
|
var require_ts_estree$1 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2557
2541
|
var __createBinding = exports && exports.__createBinding || (Object.create ? (function(o, m, k, k2) {
|
|
2558
2542
|
if (k2 === void 0) k2 = k;
|
|
@@ -2578,9 +2562,9 @@ var require_ts_estree$1 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2578
2562
|
});
|
|
2579
2563
|
var __importStar = exports && exports.__importStar || (function() {
|
|
2580
2564
|
var ownKeys = function(o) {
|
|
2581
|
-
ownKeys = Object.getOwnPropertyNames || function(o
|
|
2565
|
+
ownKeys = Object.getOwnPropertyNames || function(o) {
|
|
2582
2566
|
var ar = [];
|
|
2583
|
-
for (var k in o
|
|
2567
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
2584
2568
|
return ar;
|
|
2585
2569
|
};
|
|
2586
2570
|
return ownKeys(o);
|
|
@@ -2599,9 +2583,8 @@ var require_ts_estree$1 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2599
2583
|
exports.TSESTree = void 0;
|
|
2600
2584
|
exports.TSESTree = __importStar(require_ast_spec());
|
|
2601
2585
|
}));
|
|
2602
|
-
|
|
2603
2586
|
//#endregion
|
|
2604
|
-
//#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
|
|
2605
2588
|
var require_dist$3 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2606
2589
|
var __createBinding = exports && exports.__createBinding || (Object.create ? (function(o, m, k, k2) {
|
|
2607
2590
|
if (k2 === void 0) k2 = k;
|
|
@@ -2617,8 +2600,8 @@ var require_dist$3 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2617
2600
|
if (k2 === void 0) k2 = k;
|
|
2618
2601
|
o[k2] = m[k];
|
|
2619
2602
|
}));
|
|
2620
|
-
var __exportStar = exports && exports.__exportStar || function(m, exports$
|
|
2621
|
-
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);
|
|
2622
2605
|
};
|
|
2623
2606
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2624
2607
|
exports.AST_TOKEN_TYPES = exports.AST_NODE_TYPES = void 0;
|
|
@@ -2639,9 +2622,8 @@ var require_dist$3 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2639
2622
|
__exportStar(require_parser_options(), exports);
|
|
2640
2623
|
__exportStar(require_ts_estree$1(), exports);
|
|
2641
2624
|
}));
|
|
2642
|
-
|
|
2643
2625
|
//#endregion
|
|
2644
|
-
//#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
|
|
2645
2627
|
var require_ts_estree = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2646
2628
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2647
2629
|
exports.TSESTree = exports.AST_TOKEN_TYPES = exports.AST_NODE_TYPES = void 0;
|
|
@@ -2665,9 +2647,8 @@ var require_ts_estree = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2665
2647
|
}
|
|
2666
2648
|
});
|
|
2667
2649
|
}));
|
|
2668
|
-
|
|
2669
2650
|
//#endregion
|
|
2670
|
-
//#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
|
|
2671
2652
|
var require_predicates = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2672
2653
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2673
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;
|
|
@@ -2762,9 +2743,8 @@ var require_predicates = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2762
2743
|
ts_estree_1.AST_NODE_TYPES.WhileStatement
|
|
2763
2744
|
]);
|
|
2764
2745
|
}));
|
|
2765
|
-
|
|
2766
2746
|
//#endregion
|
|
2767
|
-
//#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
|
|
2768
2748
|
var require_ast_utils = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2769
2749
|
var __createBinding = exports && exports.__createBinding || (Object.create ? (function(o, m, k, k2) {
|
|
2770
2750
|
if (k2 === void 0) k2 = k;
|
|
@@ -2780,8 +2760,8 @@ var require_ast_utils = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2780
2760
|
if (k2 === void 0) k2 = k;
|
|
2781
2761
|
o[k2] = m[k];
|
|
2782
2762
|
}));
|
|
2783
|
-
var __exportStar = exports && exports.__exportStar || function(m, exports$
|
|
2784
|
-
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);
|
|
2785
2765
|
};
|
|
2786
2766
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2787
2767
|
__exportStar(require_eslint_utils$1(), exports);
|
|
@@ -2789,9 +2769,8 @@ var require_ast_utils = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2789
2769
|
__exportStar(require_misc(), exports);
|
|
2790
2770
|
__exportStar(require_predicates(), exports);
|
|
2791
2771
|
}));
|
|
2792
|
-
|
|
2793
2772
|
//#endregion
|
|
2794
|
-
//#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
|
|
2795
2774
|
var require_deepMerge = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2796
2775
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2797
2776
|
exports.isObjectNotArray = isObjectNotArray;
|
|
@@ -2826,9 +2805,8 @@ var require_deepMerge = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2826
2805
|
}));
|
|
2827
2806
|
}
|
|
2828
2807
|
}));
|
|
2829
|
-
|
|
2830
2808
|
//#endregion
|
|
2831
|
-
//#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
|
|
2832
2810
|
var require_applyDefault = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2833
2811
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2834
2812
|
exports.applyDefault = applyDefault;
|
|
@@ -2853,9 +2831,8 @@ var require_applyDefault = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2853
2831
|
return options;
|
|
2854
2832
|
}
|
|
2855
2833
|
}));
|
|
2856
|
-
|
|
2857
2834
|
//#endregion
|
|
2858
|
-
//#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
|
|
2859
2836
|
var require_parserSeemsToBeTSESLint = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2860
2837
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2861
2838
|
exports.parserSeemsToBeTSESLint = parserSeemsToBeTSESLint;
|
|
@@ -2863,9 +2840,8 @@ var require_parserSeemsToBeTSESLint = /* @__PURE__ */ __commonJSMin(((exports) =
|
|
|
2863
2840
|
return !!parser && /(?:typescript-eslint|\.\.)[\w/\\]*parser/.test(parser);
|
|
2864
2841
|
}
|
|
2865
2842
|
}));
|
|
2866
|
-
|
|
2867
2843
|
//#endregion
|
|
2868
|
-
//#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
|
|
2869
2845
|
var require_getParserServices = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2870
2846
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2871
2847
|
exports.getParserServices = getParserServices;
|
|
@@ -2887,15 +2863,13 @@ var require_getParserServices = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2887
2863
|
throw new Error(messages.join("\n"));
|
|
2888
2864
|
}
|
|
2889
2865
|
}));
|
|
2890
|
-
|
|
2891
2866
|
//#endregion
|
|
2892
|
-
//#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
|
|
2893
2868
|
var require_InferTypesFromRule = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2894
2869
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2895
2870
|
}));
|
|
2896
|
-
|
|
2897
2871
|
//#endregion
|
|
2898
|
-
//#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
|
|
2899
2873
|
var require_nullThrows = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2900
2874
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2901
2875
|
exports.NullThrowsReasons = void 0;
|
|
@@ -2916,9 +2890,8 @@ var require_nullThrows = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2916
2890
|
return value;
|
|
2917
2891
|
}
|
|
2918
2892
|
}));
|
|
2919
|
-
|
|
2920
2893
|
//#endregion
|
|
2921
|
-
//#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
|
|
2922
2895
|
var require_RuleCreator = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2923
2896
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2924
2897
|
exports.RuleCreator = RuleCreator;
|
|
@@ -2930,21 +2903,21 @@ var require_RuleCreator = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2930
2903
|
* @returns Function to create a rule with the docs URL format.
|
|
2931
2904
|
*/
|
|
2932
2905
|
function RuleCreator(urlCreator) {
|
|
2933
|
-
return function createNamedRule({ meta, name
|
|
2906
|
+
return function createNamedRule({ meta, name, ...rule }) {
|
|
2934
2907
|
return createRule({
|
|
2935
2908
|
meta: {
|
|
2936
2909
|
...meta,
|
|
2937
2910
|
docs: {
|
|
2938
2911
|
...meta.docs,
|
|
2939
|
-
url: urlCreator(name
|
|
2912
|
+
url: urlCreator(name)
|
|
2940
2913
|
}
|
|
2941
2914
|
},
|
|
2942
|
-
name
|
|
2943
|
-
...rule
|
|
2915
|
+
name,
|
|
2916
|
+
...rule
|
|
2944
2917
|
});
|
|
2945
2918
|
};
|
|
2946
2919
|
}
|
|
2947
|
-
function createRule({ create, defaultOptions, meta, name
|
|
2920
|
+
function createRule({ create, defaultOptions, meta, name }) {
|
|
2948
2921
|
const resolvedDefaultOptions = meta.defaultOptions ?? defaultOptions ?? [];
|
|
2949
2922
|
return {
|
|
2950
2923
|
create(context) {
|
|
@@ -2952,7 +2925,7 @@ var require_RuleCreator = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2952
2925
|
},
|
|
2953
2926
|
defaultOptions,
|
|
2954
2927
|
meta,
|
|
2955
|
-
name
|
|
2928
|
+
name
|
|
2956
2929
|
};
|
|
2957
2930
|
}
|
|
2958
2931
|
/**
|
|
@@ -2965,9 +2938,8 @@ var require_RuleCreator = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2965
2938
|
return createRule(args);
|
|
2966
2939
|
};
|
|
2967
2940
|
}));
|
|
2968
|
-
|
|
2969
2941
|
//#endregion
|
|
2970
|
-
//#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
|
|
2971
2943
|
var require_eslint_utils = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2972
2944
|
var __createBinding = exports && exports.__createBinding || (Object.create ? (function(o, m, k, k2) {
|
|
2973
2945
|
if (k2 === void 0) k2 = k;
|
|
@@ -2983,8 +2955,8 @@ var require_eslint_utils = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2983
2955
|
if (k2 === void 0) k2 = k;
|
|
2984
2956
|
o[k2] = m[k];
|
|
2985
2957
|
}));
|
|
2986
|
-
var __exportStar = exports && exports.__exportStar || function(m, exports$
|
|
2987
|
-
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);
|
|
2988
2960
|
};
|
|
2989
2961
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2990
2962
|
__exportStar(require_applyDefault(), exports);
|
|
@@ -2994,9 +2966,8 @@ var require_eslint_utils = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2994
2966
|
__exportStar(require_nullThrows(), exports);
|
|
2995
2967
|
__exportStar(require_RuleCreator(), exports);
|
|
2996
2968
|
}));
|
|
2997
|
-
|
|
2998
2969
|
//#endregion
|
|
2999
|
-
//#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
|
|
3000
2971
|
var require_json_schema = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
3001
2972
|
/**
|
|
3002
2973
|
* This is a fork of https://github.com/DefinitelyTyped/DefinitelyTyped/blob/13f63c2eb8d7479caf01ab8d72f9e3683368a8f5/types/json-schema/index.d.ts
|
|
@@ -3006,21 +2977,18 @@ var require_json_schema = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
3006
2977
|
*/
|
|
3007
2978
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3008
2979
|
}));
|
|
3009
|
-
|
|
3010
2980
|
//#endregion
|
|
3011
|
-
//#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
|
|
3012
2982
|
var require_AST = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
3013
2983
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3014
2984
|
}));
|
|
3015
|
-
|
|
3016
2985
|
//#endregion
|
|
3017
|
-
//#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
|
|
3018
2987
|
var require_Config = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
3019
2988
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3020
2989
|
}));
|
|
3021
|
-
|
|
3022
2990
|
//#endregion
|
|
3023
|
-
//#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
|
|
3024
2992
|
var require_FlatESLint = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
3025
2993
|
var __importDefault = exports && exports.__importDefault || function(mod) {
|
|
3026
2994
|
return mod && mod.__esModule ? mod : { "default": mod };
|
|
@@ -3038,9 +3006,8 @@ var require_FlatESLint = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
3038
3006
|
var FlatESLint = class extends (use_at_your_own_risk_1$1.default.FlatESLint ?? eslint_1$4.ESLint) {};
|
|
3039
3007
|
exports.FlatESLint = FlatESLint;
|
|
3040
3008
|
}));
|
|
3041
|
-
|
|
3042
3009
|
//#endregion
|
|
3043
|
-
//#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
|
|
3044
3011
|
var require_LegacyESLint = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
3045
3012
|
var __importDefault = exports && exports.__importDefault || function(mod) {
|
|
3046
3013
|
return mod && mod.__esModule ? mod : { "default": mod };
|
|
@@ -3074,9 +3041,8 @@ var require_LegacyESLint = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
3074
3041
|
var LegacyESLint = class extends (use_at_your_own_risk_1.default.LegacyESLint ?? MissingLegacyESLint) {};
|
|
3075
3042
|
exports.LegacyESLint = LegacyESLint;
|
|
3076
3043
|
}));
|
|
3077
|
-
|
|
3078
3044
|
//#endregion
|
|
3079
|
-
//#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
|
|
3080
3046
|
var require_ESLint = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
3081
3047
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3082
3048
|
exports.LegacyESLint = exports.ESLint = exports.FlatESLint = void 0;
|
|
@@ -3105,9 +3071,8 @@ var require_ESLint = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
3105
3071
|
}
|
|
3106
3072
|
});
|
|
3107
3073
|
}));
|
|
3108
|
-
|
|
3109
3074
|
//#endregion
|
|
3110
|
-
//#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
|
|
3111
3076
|
var require_Linter = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
3112
3077
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3113
3078
|
exports.Linter = void 0;
|
|
@@ -3120,33 +3085,28 @@ var require_Linter = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
3120
3085
|
var Linter = class extends eslint_1$2.Linter {};
|
|
3121
3086
|
exports.Linter = Linter;
|
|
3122
3087
|
}));
|
|
3123
|
-
|
|
3124
3088
|
//#endregion
|
|
3125
|
-
//#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
|
|
3126
3090
|
var require_Parser = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
3127
3091
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3128
3092
|
}));
|
|
3129
|
-
|
|
3130
3093
|
//#endregion
|
|
3131
|
-
//#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
|
|
3132
3095
|
var require_ParserOptions = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
3133
3096
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3134
3097
|
}));
|
|
3135
|
-
|
|
3136
3098
|
//#endregion
|
|
3137
|
-
//#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
|
|
3138
3100
|
var require_Processor = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
3139
3101
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3140
3102
|
}));
|
|
3141
|
-
|
|
3142
3103
|
//#endregion
|
|
3143
|
-
//#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
|
|
3144
3105
|
var require_Rule = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
3145
3106
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3146
3107
|
}));
|
|
3147
|
-
|
|
3148
3108
|
//#endregion
|
|
3149
|
-
//#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
|
|
3150
3110
|
var require_RuleTester = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
3151
3111
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3152
3112
|
exports.RuleTester = void 0;
|
|
@@ -3157,7 +3117,6 @@ var require_RuleTester = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
3157
3117
|
var RuleTester = class extends eslint_1$1.RuleTester {};
|
|
3158
3118
|
exports.RuleTester = RuleTester;
|
|
3159
3119
|
}));
|
|
3160
|
-
|
|
3161
3120
|
//#endregion
|
|
3162
3121
|
//#region node_modules/.pnpm/eslint-visitor-keys@5.0.1/node_modules/eslint-visitor-keys/dist/eslint-visitor-keys.cjs
|
|
3163
3122
|
var require_eslint_visitor_keys = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
@@ -3369,18 +3328,15 @@ var require_eslint_visitor_keys = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
3369
3328
|
exports.getKeys = getKeys;
|
|
3370
3329
|
exports.unionWith = unionWith;
|
|
3371
3330
|
}));
|
|
3372
|
-
|
|
3373
3331
|
//#endregion
|
|
3374
|
-
//#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
|
|
3375
3333
|
var require_get_keys = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
3376
3334
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3377
3335
|
exports.getKeys = void 0;
|
|
3378
|
-
|
|
3379
|
-
exports.getKeys = eslint_visitor_keys_1.getKeys;
|
|
3336
|
+
exports.getKeys = require_eslint_visitor_keys().getKeys;
|
|
3380
3337
|
}));
|
|
3381
|
-
|
|
3382
3338
|
//#endregion
|
|
3383
|
-
//#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
|
|
3384
3340
|
var require_visitor_keys = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
3385
3341
|
var __createBinding = exports && exports.__createBinding || (Object.create ? (function(o, m, k, k2) {
|
|
3386
3342
|
if (k2 === void 0) k2 = k;
|
|
@@ -3406,9 +3362,9 @@ var require_visitor_keys = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
3406
3362
|
});
|
|
3407
3363
|
var __importStar = exports && exports.__importStar || (function() {
|
|
3408
3364
|
var ownKeys = function(o) {
|
|
3409
|
-
ownKeys = Object.getOwnPropertyNames || function(o
|
|
3365
|
+
ownKeys = Object.getOwnPropertyNames || function(o) {
|
|
3410
3366
|
var ar = [];
|
|
3411
|
-
for (var k in o
|
|
3367
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
3412
3368
|
return ar;
|
|
3413
3369
|
};
|
|
3414
3370
|
return ownKeys(o);
|
|
@@ -3653,9 +3609,8 @@ var require_visitor_keys = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
3653
3609
|
};
|
|
3654
3610
|
exports.visitorKeys = eslintVisitorKeys.unionWith(additionalKeys);
|
|
3655
3611
|
}));
|
|
3656
|
-
|
|
3657
3612
|
//#endregion
|
|
3658
|
-
//#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
|
|
3659
3614
|
var require_dist$2 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
3660
3615
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3661
3616
|
exports.visitorKeys = exports.getKeys = void 0;
|
|
@@ -3674,9 +3629,8 @@ var require_dist$2 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
3674
3629
|
}
|
|
3675
3630
|
});
|
|
3676
3631
|
}));
|
|
3677
|
-
|
|
3678
3632
|
//#endregion
|
|
3679
|
-
//#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
|
|
3680
3634
|
var require_assert = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
3681
3635
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3682
3636
|
exports.assert = assert;
|
|
@@ -3684,9 +3638,8 @@ var require_assert = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
3684
3638
|
if (value == null) throw new Error(message);
|
|
3685
3639
|
}
|
|
3686
3640
|
}));
|
|
3687
|
-
|
|
3688
3641
|
//#endregion
|
|
3689
|
-
//#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
|
|
3690
3643
|
var require_ID = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
3691
3644
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3692
3645
|
exports.createIdGenerator = createIdGenerator;
|
|
@@ -3706,9 +3659,8 @@ var require_ID = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
3706
3659
|
ID_CACHE.clear();
|
|
3707
3660
|
}
|
|
3708
3661
|
}));
|
|
3709
|
-
|
|
3710
3662
|
//#endregion
|
|
3711
|
-
//#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
|
|
3712
3664
|
var require_DefinitionBase = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
3713
3665
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3714
3666
|
exports.DefinitionBase = void 0;
|
|
@@ -3734,18 +3686,17 @@ var require_DefinitionBase = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
3734
3686
|
* @public
|
|
3735
3687
|
*/
|
|
3736
3688
|
parent;
|
|
3737
|
-
constructor(type, name
|
|
3689
|
+
constructor(type, name, node, parent) {
|
|
3738
3690
|
this.type = type;
|
|
3739
|
-
this.name = name
|
|
3691
|
+
this.name = name;
|
|
3740
3692
|
this.node = node;
|
|
3741
3693
|
this.parent = parent;
|
|
3742
3694
|
}
|
|
3743
3695
|
};
|
|
3744
3696
|
exports.DefinitionBase = DefinitionBase;
|
|
3745
3697
|
}));
|
|
3746
|
-
|
|
3747
3698
|
//#endregion
|
|
3748
|
-
//#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
|
|
3749
3700
|
var require_DefinitionType = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
3750
3701
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3751
3702
|
exports.DefinitionType = void 0;
|
|
@@ -3764,9 +3715,8 @@ var require_DefinitionType = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
3764
3715
|
DefinitionType["Variable"] = "Variable";
|
|
3765
3716
|
})(DefinitionType || (exports.DefinitionType = DefinitionType = {}));
|
|
3766
3717
|
}));
|
|
3767
|
-
|
|
3768
3718
|
//#endregion
|
|
3769
|
-
//#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
|
|
3770
3720
|
var require_CatchClauseDefinition = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
3771
3721
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3772
3722
|
exports.CatchClauseDefinition = void 0;
|
|
@@ -3775,15 +3725,14 @@ var require_CatchClauseDefinition = /* @__PURE__ */ __commonJSMin(((exports) =>
|
|
|
3775
3725
|
var CatchClauseDefinition = class extends DefinitionBase_1.DefinitionBase {
|
|
3776
3726
|
isTypeDefinition = false;
|
|
3777
3727
|
isVariableDefinition = true;
|
|
3778
|
-
constructor(name
|
|
3779
|
-
super(DefinitionType_1.DefinitionType.CatchClause, name
|
|
3728
|
+
constructor(name, node) {
|
|
3729
|
+
super(DefinitionType_1.DefinitionType.CatchClause, name, node, null);
|
|
3780
3730
|
}
|
|
3781
3731
|
};
|
|
3782
3732
|
exports.CatchClauseDefinition = CatchClauseDefinition;
|
|
3783
3733
|
}));
|
|
3784
|
-
|
|
3785
3734
|
//#endregion
|
|
3786
|
-
//#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
|
|
3787
3736
|
var require_ClassNameDefinition = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
3788
3737
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3789
3738
|
exports.ClassNameDefinition = void 0;
|
|
@@ -3792,21 +3741,19 @@ var require_ClassNameDefinition = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
3792
3741
|
var ClassNameDefinition = class extends DefinitionBase_1.DefinitionBase {
|
|
3793
3742
|
isTypeDefinition = true;
|
|
3794
3743
|
isVariableDefinition = true;
|
|
3795
|
-
constructor(name
|
|
3796
|
-
super(DefinitionType_1.DefinitionType.ClassName, name
|
|
3744
|
+
constructor(name, node) {
|
|
3745
|
+
super(DefinitionType_1.DefinitionType.ClassName, name, node, null);
|
|
3797
3746
|
}
|
|
3798
3747
|
};
|
|
3799
3748
|
exports.ClassNameDefinition = ClassNameDefinition;
|
|
3800
3749
|
}));
|
|
3801
|
-
|
|
3802
3750
|
//#endregion
|
|
3803
|
-
//#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
|
|
3804
3752
|
var require_Definition = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
3805
3753
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3806
3754
|
}));
|
|
3807
|
-
|
|
3808
3755
|
//#endregion
|
|
3809
|
-
//#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
|
|
3810
3757
|
var require_FunctionNameDefinition = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
3811
3758
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3812
3759
|
exports.FunctionNameDefinition = void 0;
|
|
@@ -3815,15 +3762,14 @@ var require_FunctionNameDefinition = /* @__PURE__ */ __commonJSMin(((exports) =>
|
|
|
3815
3762
|
var FunctionNameDefinition = class extends DefinitionBase_1.DefinitionBase {
|
|
3816
3763
|
isTypeDefinition = false;
|
|
3817
3764
|
isVariableDefinition = true;
|
|
3818
|
-
constructor(name
|
|
3819
|
-
super(DefinitionType_1.DefinitionType.FunctionName, name
|
|
3765
|
+
constructor(name, node) {
|
|
3766
|
+
super(DefinitionType_1.DefinitionType.FunctionName, name, node, null);
|
|
3820
3767
|
}
|
|
3821
3768
|
};
|
|
3822
3769
|
exports.FunctionNameDefinition = FunctionNameDefinition;
|
|
3823
3770
|
}));
|
|
3824
|
-
|
|
3825
3771
|
//#endregion
|
|
3826
|
-
//#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
|
|
3827
3773
|
var require_ImplicitGlobalVariableDefinition = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
3828
3774
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3829
3775
|
exports.ImplicitGlobalVariableDefinition = void 0;
|
|
@@ -3832,15 +3778,14 @@ var require_ImplicitGlobalVariableDefinition = /* @__PURE__ */ __commonJSMin(((e
|
|
|
3832
3778
|
var ImplicitGlobalVariableDefinition = class extends DefinitionBase_1.DefinitionBase {
|
|
3833
3779
|
isTypeDefinition = false;
|
|
3834
3780
|
isVariableDefinition = true;
|
|
3835
|
-
constructor(name
|
|
3836
|
-
super(DefinitionType_1.DefinitionType.ImplicitGlobalVariable, name
|
|
3781
|
+
constructor(name, node) {
|
|
3782
|
+
super(DefinitionType_1.DefinitionType.ImplicitGlobalVariable, name, node, null);
|
|
3837
3783
|
}
|
|
3838
3784
|
};
|
|
3839
3785
|
exports.ImplicitGlobalVariableDefinition = ImplicitGlobalVariableDefinition;
|
|
3840
3786
|
}));
|
|
3841
|
-
|
|
3842
3787
|
//#endregion
|
|
3843
|
-
//#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
|
|
3844
3789
|
var require_ImportBindingDefinition = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
3845
3790
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3846
3791
|
exports.ImportBindingDefinition = void 0;
|
|
@@ -3849,15 +3794,14 @@ var require_ImportBindingDefinition = /* @__PURE__ */ __commonJSMin(((exports) =
|
|
|
3849
3794
|
var ImportBindingDefinition = class extends DefinitionBase_1.DefinitionBase {
|
|
3850
3795
|
isTypeDefinition = true;
|
|
3851
3796
|
isVariableDefinition = true;
|
|
3852
|
-
constructor(name
|
|
3853
|
-
super(DefinitionType_1.DefinitionType.ImportBinding, name
|
|
3797
|
+
constructor(name, node, decl) {
|
|
3798
|
+
super(DefinitionType_1.DefinitionType.ImportBinding, name, node, decl);
|
|
3854
3799
|
}
|
|
3855
3800
|
};
|
|
3856
3801
|
exports.ImportBindingDefinition = ImportBindingDefinition;
|
|
3857
3802
|
}));
|
|
3858
|
-
|
|
3859
3803
|
//#endregion
|
|
3860
|
-
//#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
|
|
3861
3805
|
var require_ParameterDefinition = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
3862
3806
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3863
3807
|
exports.ParameterDefinition = void 0;
|
|
@@ -3870,16 +3814,15 @@ var require_ParameterDefinition = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
3870
3814
|
isTypeDefinition = false;
|
|
3871
3815
|
isVariableDefinition = true;
|
|
3872
3816
|
rest;
|
|
3873
|
-
constructor(name
|
|
3874
|
-
super(DefinitionType_1.DefinitionType.Parameter, name
|
|
3817
|
+
constructor(name, node, rest) {
|
|
3818
|
+
super(DefinitionType_1.DefinitionType.Parameter, name, node, null);
|
|
3875
3819
|
this.rest = rest;
|
|
3876
3820
|
}
|
|
3877
3821
|
};
|
|
3878
3822
|
exports.ParameterDefinition = ParameterDefinition;
|
|
3879
3823
|
}));
|
|
3880
|
-
|
|
3881
3824
|
//#endregion
|
|
3882
|
-
//#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
|
|
3883
3826
|
var require_TSEnumMemberDefinition = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
3884
3827
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3885
3828
|
exports.TSEnumMemberDefinition = void 0;
|
|
@@ -3888,15 +3831,14 @@ var require_TSEnumMemberDefinition = /* @__PURE__ */ __commonJSMin(((exports) =>
|
|
|
3888
3831
|
var TSEnumMemberDefinition = class extends DefinitionBase_1.DefinitionBase {
|
|
3889
3832
|
isTypeDefinition = true;
|
|
3890
3833
|
isVariableDefinition = true;
|
|
3891
|
-
constructor(name
|
|
3892
|
-
super(DefinitionType_1.DefinitionType.TSEnumMember, name
|
|
3834
|
+
constructor(name, node) {
|
|
3835
|
+
super(DefinitionType_1.DefinitionType.TSEnumMember, name, node, null);
|
|
3893
3836
|
}
|
|
3894
3837
|
};
|
|
3895
3838
|
exports.TSEnumMemberDefinition = TSEnumMemberDefinition;
|
|
3896
3839
|
}));
|
|
3897
|
-
|
|
3898
3840
|
//#endregion
|
|
3899
|
-
//#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
|
|
3900
3842
|
var require_TSEnumNameDefinition = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
3901
3843
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3902
3844
|
exports.TSEnumNameDefinition = void 0;
|
|
@@ -3905,15 +3847,14 @@ var require_TSEnumNameDefinition = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
3905
3847
|
var TSEnumNameDefinition = class extends DefinitionBase_1.DefinitionBase {
|
|
3906
3848
|
isTypeDefinition = true;
|
|
3907
3849
|
isVariableDefinition = true;
|
|
3908
|
-
constructor(name
|
|
3909
|
-
super(DefinitionType_1.DefinitionType.TSEnumName, name
|
|
3850
|
+
constructor(name, node) {
|
|
3851
|
+
super(DefinitionType_1.DefinitionType.TSEnumName, name, node, null);
|
|
3910
3852
|
}
|
|
3911
3853
|
};
|
|
3912
3854
|
exports.TSEnumNameDefinition = TSEnumNameDefinition;
|
|
3913
3855
|
}));
|
|
3914
|
-
|
|
3915
3856
|
//#endregion
|
|
3916
|
-
//#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
|
|
3917
3858
|
var require_TSModuleNameDefinition = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
3918
3859
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3919
3860
|
exports.TSModuleNameDefinition = void 0;
|
|
@@ -3922,15 +3863,14 @@ var require_TSModuleNameDefinition = /* @__PURE__ */ __commonJSMin(((exports) =>
|
|
|
3922
3863
|
var TSModuleNameDefinition = class extends DefinitionBase_1.DefinitionBase {
|
|
3923
3864
|
isTypeDefinition = true;
|
|
3924
3865
|
isVariableDefinition = true;
|
|
3925
|
-
constructor(name
|
|
3926
|
-
super(DefinitionType_1.DefinitionType.TSModuleName, name
|
|
3866
|
+
constructor(name, node) {
|
|
3867
|
+
super(DefinitionType_1.DefinitionType.TSModuleName, name, node, null);
|
|
3927
3868
|
}
|
|
3928
3869
|
};
|
|
3929
3870
|
exports.TSModuleNameDefinition = TSModuleNameDefinition;
|
|
3930
3871
|
}));
|
|
3931
|
-
|
|
3932
3872
|
//#endregion
|
|
3933
|
-
//#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
|
|
3934
3874
|
var require_TypeDefinition = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
3935
3875
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3936
3876
|
exports.TypeDefinition = void 0;
|
|
@@ -3939,15 +3879,14 @@ var require_TypeDefinition = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
3939
3879
|
var TypeDefinition = class extends DefinitionBase_1.DefinitionBase {
|
|
3940
3880
|
isTypeDefinition = true;
|
|
3941
3881
|
isVariableDefinition = false;
|
|
3942
|
-
constructor(name
|
|
3943
|
-
super(DefinitionType_1.DefinitionType.Type, name
|
|
3882
|
+
constructor(name, node) {
|
|
3883
|
+
super(DefinitionType_1.DefinitionType.Type, name, node, null);
|
|
3944
3884
|
}
|
|
3945
3885
|
};
|
|
3946
3886
|
exports.TypeDefinition = TypeDefinition;
|
|
3947
3887
|
}));
|
|
3948
|
-
|
|
3949
3888
|
//#endregion
|
|
3950
|
-
//#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
|
|
3951
3890
|
var require_VariableDefinition = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
3952
3891
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3953
3892
|
exports.VariableDefinition = void 0;
|
|
@@ -3956,15 +3895,14 @@ var require_VariableDefinition = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
3956
3895
|
var VariableDefinition = class extends DefinitionBase_1.DefinitionBase {
|
|
3957
3896
|
isTypeDefinition = false;
|
|
3958
3897
|
isVariableDefinition = true;
|
|
3959
|
-
constructor(name
|
|
3960
|
-
super(DefinitionType_1.DefinitionType.Variable, name
|
|
3898
|
+
constructor(name, node, decl) {
|
|
3899
|
+
super(DefinitionType_1.DefinitionType.Variable, name, node, decl);
|
|
3961
3900
|
}
|
|
3962
3901
|
};
|
|
3963
3902
|
exports.VariableDefinition = VariableDefinition;
|
|
3964
3903
|
}));
|
|
3965
|
-
|
|
3966
3904
|
//#endregion
|
|
3967
|
-
//#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
|
|
3968
3906
|
var require_definition = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
3969
3907
|
var __createBinding = exports && exports.__createBinding || (Object.create ? (function(o, m, k, k2) {
|
|
3970
3908
|
if (k2 === void 0) k2 = k;
|
|
@@ -3980,8 +3918,8 @@ var require_definition = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
3980
3918
|
if (k2 === void 0) k2 = k;
|
|
3981
3919
|
o[k2] = m[k];
|
|
3982
3920
|
}));
|
|
3983
|
-
var __exportStar = exports && exports.__exportStar || function(m, exports$
|
|
3984
|
-
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);
|
|
3985
3923
|
};
|
|
3986
3924
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3987
3925
|
__exportStar(require_CatchClauseDefinition(), exports);
|
|
@@ -3998,9 +3936,8 @@ var require_definition = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
3998
3936
|
__exportStar(require_TypeDefinition(), exports);
|
|
3999
3937
|
__exportStar(require_VariableDefinition(), exports);
|
|
4000
3938
|
}));
|
|
4001
|
-
|
|
4002
3939
|
//#endregion
|
|
4003
|
-
//#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
|
|
4004
3941
|
var require_base_config = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
4005
3942
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4006
3943
|
exports.TYPE_VALUE = exports.VALUE = exports.TYPE = void 0;
|
|
@@ -4020,9 +3957,8 @@ var require_base_config = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
4020
3957
|
isValueVariable: true
|
|
4021
3958
|
});
|
|
4022
3959
|
}));
|
|
4023
|
-
|
|
4024
3960
|
//#endregion
|
|
4025
|
-
//#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
|
|
4026
3962
|
var require_decorators = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
4027
3963
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4028
3964
|
exports.decorators = void 0;
|
|
@@ -4045,9 +3981,8 @@ var require_decorators = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
4045
3981
|
]
|
|
4046
3982
|
};
|
|
4047
3983
|
}));
|
|
4048
|
-
|
|
4049
3984
|
//#endregion
|
|
4050
|
-
//#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
|
|
4051
3986
|
var require_decorators_legacy = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
4052
3987
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4053
3988
|
exports.decorators_legacy = void 0;
|
|
@@ -4062,9 +3997,8 @@ var require_decorators_legacy = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
4062
3997
|
]
|
|
4063
3998
|
};
|
|
4064
3999
|
}));
|
|
4065
|
-
|
|
4066
4000
|
//#endregion
|
|
4067
|
-
//#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
|
|
4068
4002
|
var require_dom = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
4069
4003
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4070
4004
|
exports.dom = void 0;
|
|
@@ -5618,9 +5552,8 @@ var require_dom = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
5618
5552
|
]
|
|
5619
5553
|
};
|
|
5620
5554
|
}));
|
|
5621
|
-
|
|
5622
5555
|
//#endregion
|
|
5623
|
-
//#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
|
|
5624
5557
|
var require_dom_asynciterable = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
5625
5558
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5626
5559
|
exports.dom_asynciterable = void 0;
|
|
@@ -5635,9 +5568,8 @@ var require_dom_asynciterable = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
5635
5568
|
]
|
|
5636
5569
|
};
|
|
5637
5570
|
}));
|
|
5638
|
-
|
|
5639
5571
|
//#endregion
|
|
5640
|
-
//#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
|
|
5641
5573
|
var require_dom_iterable = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
5642
5574
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5643
5575
|
exports.dom_iterable = void 0;
|
|
@@ -5723,9 +5655,8 @@ var require_dom_iterable = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
5723
5655
|
]
|
|
5724
5656
|
};
|
|
5725
5657
|
}));
|
|
5726
|
-
|
|
5727
5658
|
//#endregion
|
|
5728
|
-
//#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
|
|
5729
5660
|
var require_es5 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
5730
5661
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5731
5662
|
exports.es5 = void 0;
|
|
@@ -5841,9 +5772,8 @@ var require_es5 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
5841
5772
|
]
|
|
5842
5773
|
};
|
|
5843
5774
|
}));
|
|
5844
|
-
|
|
5845
5775
|
//#endregion
|
|
5846
|
-
//#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
|
|
5847
5777
|
var require_es2015_collection = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
5848
5778
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5849
5779
|
exports.es2015_collection = void 0;
|
|
@@ -5864,9 +5794,8 @@ var require_es2015_collection = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
5864
5794
|
]
|
|
5865
5795
|
};
|
|
5866
5796
|
}));
|
|
5867
|
-
|
|
5868
5797
|
//#endregion
|
|
5869
|
-
//#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
|
|
5870
5799
|
var require_es2015_core = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
5871
5800
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5872
5801
|
exports.es2015_core = void 0;
|
|
@@ -5898,28 +5827,24 @@ var require_es2015_core = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
5898
5827
|
]
|
|
5899
5828
|
};
|
|
5900
5829
|
}));
|
|
5901
|
-
|
|
5902
5830
|
//#endregion
|
|
5903
|
-
//#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
|
|
5904
5832
|
var require_es2015_symbol = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
5905
5833
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5906
5834
|
exports.es2015_symbol = void 0;
|
|
5907
|
-
const base_config_1 = require_base_config();
|
|
5908
5835
|
exports.es2015_symbol = {
|
|
5909
5836
|
libs: [],
|
|
5910
|
-
variables: [["SymbolConstructor",
|
|
5837
|
+
variables: [["SymbolConstructor", require_base_config().TYPE]]
|
|
5911
5838
|
};
|
|
5912
5839
|
}));
|
|
5913
|
-
|
|
5914
5840
|
//#endregion
|
|
5915
|
-
//#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
|
|
5916
5842
|
var require_es2015_iterable = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
5917
5843
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5918
5844
|
exports.es2015_iterable = void 0;
|
|
5919
5845
|
const base_config_1 = require_base_config();
|
|
5920
|
-
const es2015_symbol_1 = require_es2015_symbol();
|
|
5921
5846
|
exports.es2015_iterable = {
|
|
5922
|
-
libs: [
|
|
5847
|
+
libs: [require_es2015_symbol().es2015_symbol],
|
|
5923
5848
|
variables: [
|
|
5924
5849
|
["SymbolConstructor", base_config_1.TYPE],
|
|
5925
5850
|
["IteratorYieldResult", base_config_1.TYPE],
|
|
@@ -5972,16 +5897,14 @@ var require_es2015_iterable = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
5972
5897
|
]
|
|
5973
5898
|
};
|
|
5974
5899
|
}));
|
|
5975
|
-
|
|
5976
5900
|
//#endregion
|
|
5977
|
-
//#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
|
|
5978
5902
|
var require_es2015_generator = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
5979
5903
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5980
5904
|
exports.es2015_generator = void 0;
|
|
5981
5905
|
const base_config_1 = require_base_config();
|
|
5982
|
-
const es2015_iterable_1 = require_es2015_iterable();
|
|
5983
5906
|
exports.es2015_generator = {
|
|
5984
|
-
libs: [
|
|
5907
|
+
libs: [require_es2015_iterable().es2015_iterable],
|
|
5985
5908
|
variables: [
|
|
5986
5909
|
["Generator", base_config_1.TYPE],
|
|
5987
5910
|
["GeneratorFunction", base_config_1.TYPE],
|
|
@@ -5989,21 +5912,18 @@ var require_es2015_generator = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
5989
5912
|
]
|
|
5990
5913
|
};
|
|
5991
5914
|
}));
|
|
5992
|
-
|
|
5993
5915
|
//#endregion
|
|
5994
|
-
//#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
|
|
5995
5917
|
var require_es2015_promise = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
5996
5918
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5997
5919
|
exports.es2015_promise = void 0;
|
|
5998
|
-
const base_config_1 = require_base_config();
|
|
5999
5920
|
exports.es2015_promise = {
|
|
6000
5921
|
libs: [],
|
|
6001
|
-
variables: [["PromiseConstructor",
|
|
5922
|
+
variables: [["PromiseConstructor", require_base_config().TYPE]]
|
|
6002
5923
|
};
|
|
6003
5924
|
}));
|
|
6004
|
-
|
|
6005
5925
|
//#endregion
|
|
6006
|
-
//#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
|
|
6007
5927
|
var require_es2015_proxy = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6008
5928
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6009
5929
|
exports.es2015_proxy = void 0;
|
|
@@ -6013,28 +5933,24 @@ var require_es2015_proxy = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
6013
5933
|
variables: [["ProxyHandler", base_config_1.TYPE], ["ProxyConstructor", base_config_1.TYPE]]
|
|
6014
5934
|
};
|
|
6015
5935
|
}));
|
|
6016
|
-
|
|
6017
5936
|
//#endregion
|
|
6018
|
-
//#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
|
|
6019
5938
|
var require_es2015_reflect = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6020
5939
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6021
5940
|
exports.es2015_reflect = void 0;
|
|
6022
|
-
const base_config_1 = require_base_config();
|
|
6023
5941
|
exports.es2015_reflect = {
|
|
6024
5942
|
libs: [],
|
|
6025
|
-
variables: [["Reflect",
|
|
5943
|
+
variables: [["Reflect", require_base_config().TYPE_VALUE]]
|
|
6026
5944
|
};
|
|
6027
5945
|
}));
|
|
6028
|
-
|
|
6029
5946
|
//#endregion
|
|
6030
|
-
//#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
|
|
6031
5948
|
var require_es2015_symbol_wellknown = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6032
5949
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6033
5950
|
exports.es2015_symbol_wellknown = void 0;
|
|
6034
5951
|
const base_config_1 = require_base_config();
|
|
6035
|
-
const es2015_symbol_1 = require_es2015_symbol();
|
|
6036
5952
|
exports.es2015_symbol_wellknown = {
|
|
6037
|
-
libs: [
|
|
5953
|
+
libs: [require_es2015_symbol().es2015_symbol],
|
|
6038
5954
|
variables: [
|
|
6039
5955
|
["SymbolConstructor", base_config_1.TYPE],
|
|
6040
5956
|
["Symbol", base_config_1.TYPE],
|
|
@@ -6072,9 +5988,8 @@ var require_es2015_symbol_wellknown = /* @__PURE__ */ __commonJSMin(((exports) =
|
|
|
6072
5988
|
]
|
|
6073
5989
|
};
|
|
6074
5990
|
}));
|
|
6075
|
-
|
|
6076
5991
|
//#endregion
|
|
6077
|
-
//#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
|
|
6078
5993
|
var require_es6 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6079
5994
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6080
5995
|
exports.es6 = void 0;
|
|
@@ -6104,9 +6019,8 @@ var require_es6 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
6104
6019
|
variables: []
|
|
6105
6020
|
};
|
|
6106
6021
|
}));
|
|
6107
|
-
|
|
6108
6022
|
//#endregion
|
|
6109
|
-
//#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
|
|
6110
6024
|
var require_es2015 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6111
6025
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6112
6026
|
exports.es2015 = void 0;
|
|
@@ -6136,9 +6050,8 @@ var require_es2015 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
6136
6050
|
variables: []
|
|
6137
6051
|
};
|
|
6138
6052
|
}));
|
|
6139
|
-
|
|
6140
6053
|
//#endregion
|
|
6141
|
-
//#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
|
|
6142
6055
|
var require_es2016_array_include = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6143
6056
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6144
6057
|
exports.es2016_array_include = void 0;
|
|
@@ -6160,21 +6073,18 @@ var require_es2016_array_include = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
6160
6073
|
]
|
|
6161
6074
|
};
|
|
6162
6075
|
}));
|
|
6163
|
-
|
|
6164
6076
|
//#endregion
|
|
6165
|
-
//#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
|
|
6166
6078
|
var require_es2016_intl = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6167
6079
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6168
6080
|
exports.es2016_intl = void 0;
|
|
6169
|
-
const base_config_1 = require_base_config();
|
|
6170
6081
|
exports.es2016_intl = {
|
|
6171
6082
|
libs: [],
|
|
6172
|
-
variables: [["Intl",
|
|
6083
|
+
variables: [["Intl", require_base_config().TYPE_VALUE]]
|
|
6173
6084
|
};
|
|
6174
6085
|
}));
|
|
6175
|
-
|
|
6176
6086
|
//#endregion
|
|
6177
|
-
//#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
|
|
6178
6088
|
var require_es7 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6179
6089
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6180
6090
|
exports.es7 = void 0;
|
|
@@ -6190,9 +6100,8 @@ var require_es7 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
6190
6100
|
variables: []
|
|
6191
6101
|
};
|
|
6192
6102
|
}));
|
|
6193
|
-
|
|
6194
6103
|
//#endregion
|
|
6195
|
-
//#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
|
|
6196
6105
|
var require_es2016 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6197
6106
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6198
6107
|
exports.es2016 = void 0;
|
|
@@ -6208,9 +6117,8 @@ var require_es2016 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
6208
6117
|
variables: []
|
|
6209
6118
|
};
|
|
6210
6119
|
}));
|
|
6211
|
-
|
|
6212
6120
|
//#endregion
|
|
6213
|
-
//#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
|
|
6214
6122
|
var require_scripthost = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6215
6123
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6216
6124
|
exports.scripthost = void 0;
|
|
@@ -6234,9 +6142,8 @@ var require_scripthost = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
6234
6142
|
]
|
|
6235
6143
|
};
|
|
6236
6144
|
}));
|
|
6237
|
-
|
|
6238
6145
|
//#endregion
|
|
6239
|
-
//#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
|
|
6240
6147
|
var require_webworker_importscripts = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6241
6148
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6242
6149
|
exports.webworker_importscripts = void 0;
|
|
@@ -6245,9 +6152,8 @@ var require_webworker_importscripts = /* @__PURE__ */ __commonJSMin(((exports) =
|
|
|
6245
6152
|
variables: []
|
|
6246
6153
|
};
|
|
6247
6154
|
}));
|
|
6248
|
-
|
|
6249
6155
|
//#endregion
|
|
6250
|
-
//#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
|
|
6251
6157
|
var require_es2016_full = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6252
6158
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6253
6159
|
exports.es2016_full = void 0;
|
|
@@ -6267,57 +6173,48 @@ var require_es2016_full = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
6267
6173
|
variables: []
|
|
6268
6174
|
};
|
|
6269
6175
|
}));
|
|
6270
|
-
|
|
6271
6176
|
//#endregion
|
|
6272
|
-
//#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
|
|
6273
6178
|
var require_es2017_arraybuffer = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6274
6179
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6275
6180
|
exports.es2017_arraybuffer = void 0;
|
|
6276
|
-
const base_config_1 = require_base_config();
|
|
6277
6181
|
exports.es2017_arraybuffer = {
|
|
6278
6182
|
libs: [],
|
|
6279
|
-
variables: [["ArrayBufferConstructor",
|
|
6183
|
+
variables: [["ArrayBufferConstructor", require_base_config().TYPE]]
|
|
6280
6184
|
};
|
|
6281
6185
|
}));
|
|
6282
|
-
|
|
6283
6186
|
//#endregion
|
|
6284
|
-
//#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
|
|
6285
6188
|
var require_es2017_date = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6286
6189
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6287
6190
|
exports.es2017_date = void 0;
|
|
6288
|
-
const base_config_1 = require_base_config();
|
|
6289
6191
|
exports.es2017_date = {
|
|
6290
6192
|
libs: [],
|
|
6291
|
-
variables: [["DateConstructor",
|
|
6193
|
+
variables: [["DateConstructor", require_base_config().TYPE]]
|
|
6292
6194
|
};
|
|
6293
6195
|
}));
|
|
6294
|
-
|
|
6295
6196
|
//#endregion
|
|
6296
|
-
//#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
|
|
6297
6198
|
var require_es2017_intl = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6298
6199
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6299
6200
|
exports.es2017_intl = void 0;
|
|
6300
|
-
const base_config_1 = require_base_config();
|
|
6301
6201
|
exports.es2017_intl = {
|
|
6302
6202
|
libs: [],
|
|
6303
|
-
variables: [["Intl",
|
|
6203
|
+
variables: [["Intl", require_base_config().TYPE_VALUE]]
|
|
6304
6204
|
};
|
|
6305
6205
|
}));
|
|
6306
|
-
|
|
6307
6206
|
//#endregion
|
|
6308
|
-
//#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
|
|
6309
6208
|
var require_es2017_object = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6310
6209
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6311
6210
|
exports.es2017_object = void 0;
|
|
6312
|
-
const base_config_1 = require_base_config();
|
|
6313
6211
|
exports.es2017_object = {
|
|
6314
6212
|
libs: [],
|
|
6315
|
-
variables: [["ObjectConstructor",
|
|
6213
|
+
variables: [["ObjectConstructor", require_base_config().TYPE]]
|
|
6316
6214
|
};
|
|
6317
6215
|
}));
|
|
6318
|
-
|
|
6319
6216
|
//#endregion
|
|
6320
|
-
//#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
|
|
6321
6218
|
var require_es2017_sharedmemory = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6322
6219
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6323
6220
|
exports.es2017_sharedmemory = void 0;
|
|
@@ -6334,21 +6231,18 @@ var require_es2017_sharedmemory = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
6334
6231
|
]
|
|
6335
6232
|
};
|
|
6336
6233
|
}));
|
|
6337
|
-
|
|
6338
6234
|
//#endregion
|
|
6339
|
-
//#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
|
|
6340
6236
|
var require_es2017_string = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6341
6237
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6342
6238
|
exports.es2017_string = void 0;
|
|
6343
|
-
const base_config_1 = require_base_config();
|
|
6344
6239
|
exports.es2017_string = {
|
|
6345
6240
|
libs: [],
|
|
6346
|
-
variables: [["String",
|
|
6241
|
+
variables: [["String", require_base_config().TYPE]]
|
|
6347
6242
|
};
|
|
6348
6243
|
}));
|
|
6349
|
-
|
|
6350
6244
|
//#endregion
|
|
6351
|
-
//#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
|
|
6352
6246
|
var require_es2017_typedarrays = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6353
6247
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6354
6248
|
exports.es2017_typedarrays = void 0;
|
|
@@ -6368,9 +6262,8 @@ var require_es2017_typedarrays = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
6368
6262
|
]
|
|
6369
6263
|
};
|
|
6370
6264
|
}));
|
|
6371
|
-
|
|
6372
6265
|
//#endregion
|
|
6373
|
-
//#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
|
|
6374
6267
|
var require_es2017 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6375
6268
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6376
6269
|
exports.es2017 = void 0;
|
|
@@ -6396,9 +6289,8 @@ var require_es2017 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
6396
6289
|
variables: []
|
|
6397
6290
|
};
|
|
6398
6291
|
}));
|
|
6399
|
-
|
|
6400
6292
|
//#endregion
|
|
6401
|
-
//#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
|
|
6402
6294
|
var require_es2017_full = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6403
6295
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6404
6296
|
exports.es2017_full = void 0;
|
|
@@ -6418,17 +6310,15 @@ var require_es2017_full = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
6418
6310
|
variables: []
|
|
6419
6311
|
};
|
|
6420
6312
|
}));
|
|
6421
|
-
|
|
6422
6313
|
//#endregion
|
|
6423
|
-
//#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
|
|
6424
6315
|
var require_es2018_asynciterable = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6425
6316
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6426
6317
|
exports.es2018_asynciterable = void 0;
|
|
6427
6318
|
const base_config_1 = require_base_config();
|
|
6428
6319
|
const es2015_iterable_1 = require_es2015_iterable();
|
|
6429
|
-
const es2015_symbol_1 = require_es2015_symbol();
|
|
6430
6320
|
exports.es2018_asynciterable = {
|
|
6431
|
-
libs: [
|
|
6321
|
+
libs: [require_es2015_symbol().es2015_symbol, es2015_iterable_1.es2015_iterable],
|
|
6432
6322
|
variables: [
|
|
6433
6323
|
["SymbolConstructor", base_config_1.TYPE],
|
|
6434
6324
|
["AsyncIterator", base_config_1.TYPE],
|
|
@@ -6438,16 +6328,14 @@ var require_es2018_asynciterable = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
6438
6328
|
]
|
|
6439
6329
|
};
|
|
6440
6330
|
}));
|
|
6441
|
-
|
|
6442
6331
|
//#endregion
|
|
6443
|
-
//#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
|
|
6444
6333
|
var require_es2018_asyncgenerator = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6445
6334
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6446
6335
|
exports.es2018_asyncgenerator = void 0;
|
|
6447
6336
|
const base_config_1 = require_base_config();
|
|
6448
|
-
const es2018_asynciterable_1 = require_es2018_asynciterable();
|
|
6449
6337
|
exports.es2018_asyncgenerator = {
|
|
6450
|
-
libs: [
|
|
6338
|
+
libs: [require_es2018_asynciterable().es2018_asynciterable],
|
|
6451
6339
|
variables: [
|
|
6452
6340
|
["AsyncGenerator", base_config_1.TYPE],
|
|
6453
6341
|
["AsyncGeneratorFunction", base_config_1.TYPE],
|
|
@@ -6455,33 +6343,28 @@ var require_es2018_asyncgenerator = /* @__PURE__ */ __commonJSMin(((exports) =>
|
|
|
6455
6343
|
]
|
|
6456
6344
|
};
|
|
6457
6345
|
}));
|
|
6458
|
-
|
|
6459
6346
|
//#endregion
|
|
6460
|
-
//#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
|
|
6461
6348
|
var require_es2018_intl = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6462
6349
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6463
6350
|
exports.es2018_intl = void 0;
|
|
6464
|
-
const base_config_1 = require_base_config();
|
|
6465
6351
|
exports.es2018_intl = {
|
|
6466
6352
|
libs: [],
|
|
6467
|
-
variables: [["Intl",
|
|
6353
|
+
variables: [["Intl", require_base_config().TYPE_VALUE]]
|
|
6468
6354
|
};
|
|
6469
6355
|
}));
|
|
6470
|
-
|
|
6471
6356
|
//#endregion
|
|
6472
|
-
//#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
|
|
6473
6358
|
var require_es2018_promise = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6474
6359
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6475
6360
|
exports.es2018_promise = void 0;
|
|
6476
|
-
const base_config_1 = require_base_config();
|
|
6477
6361
|
exports.es2018_promise = {
|
|
6478
6362
|
libs: [],
|
|
6479
|
-
variables: [["Promise",
|
|
6363
|
+
variables: [["Promise", require_base_config().TYPE]]
|
|
6480
6364
|
};
|
|
6481
6365
|
}));
|
|
6482
|
-
|
|
6483
6366
|
//#endregion
|
|
6484
|
-
//#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
|
|
6485
6368
|
var require_es2018_regexp = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6486
6369
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6487
6370
|
exports.es2018_regexp = void 0;
|
|
@@ -6495,9 +6378,8 @@ var require_es2018_regexp = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
6495
6378
|
]
|
|
6496
6379
|
};
|
|
6497
6380
|
}));
|
|
6498
|
-
|
|
6499
6381
|
//#endregion
|
|
6500
|
-
//#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
|
|
6501
6383
|
var require_es2018 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6502
6384
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6503
6385
|
exports.es2018 = void 0;
|
|
@@ -6519,9 +6401,8 @@ var require_es2018 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
6519
6401
|
variables: []
|
|
6520
6402
|
};
|
|
6521
6403
|
}));
|
|
6522
|
-
|
|
6523
6404
|
//#endregion
|
|
6524
|
-
//#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
|
|
6525
6406
|
var require_es2018_full = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6526
6407
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6527
6408
|
exports.es2018_full = void 0;
|
|
@@ -6543,9 +6424,8 @@ var require_es2018_full = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
6543
6424
|
variables: []
|
|
6544
6425
|
};
|
|
6545
6426
|
}));
|
|
6546
|
-
|
|
6547
6427
|
//#endregion
|
|
6548
|
-
//#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
|
|
6549
6429
|
var require_es2019_array = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6550
6430
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6551
6431
|
exports.es2019_array = void 0;
|
|
@@ -6559,58 +6439,49 @@ var require_es2019_array = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
6559
6439
|
]
|
|
6560
6440
|
};
|
|
6561
6441
|
}));
|
|
6562
|
-
|
|
6563
6442
|
//#endregion
|
|
6564
|
-
//#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
|
|
6565
6444
|
var require_es2019_intl = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6566
6445
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6567
6446
|
exports.es2019_intl = void 0;
|
|
6568
|
-
const base_config_1 = require_base_config();
|
|
6569
6447
|
exports.es2019_intl = {
|
|
6570
6448
|
libs: [],
|
|
6571
|
-
variables: [["Intl",
|
|
6449
|
+
variables: [["Intl", require_base_config().TYPE_VALUE]]
|
|
6572
6450
|
};
|
|
6573
6451
|
}));
|
|
6574
|
-
|
|
6575
6452
|
//#endregion
|
|
6576
|
-
//#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
|
|
6577
6454
|
var require_es2019_object = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6578
6455
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6579
6456
|
exports.es2019_object = void 0;
|
|
6580
6457
|
const base_config_1 = require_base_config();
|
|
6581
|
-
const es2015_iterable_1 = require_es2015_iterable();
|
|
6582
6458
|
exports.es2019_object = {
|
|
6583
|
-
libs: [
|
|
6459
|
+
libs: [require_es2015_iterable().es2015_iterable],
|
|
6584
6460
|
variables: [["ObjectConstructor", base_config_1.TYPE]]
|
|
6585
6461
|
};
|
|
6586
6462
|
}));
|
|
6587
|
-
|
|
6588
6463
|
//#endregion
|
|
6589
|
-
//#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
|
|
6590
6465
|
var require_es2019_string = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6591
6466
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6592
6467
|
exports.es2019_string = void 0;
|
|
6593
|
-
const base_config_1 = require_base_config();
|
|
6594
6468
|
exports.es2019_string = {
|
|
6595
6469
|
libs: [],
|
|
6596
|
-
variables: [["String",
|
|
6470
|
+
variables: [["String", require_base_config().TYPE]]
|
|
6597
6471
|
};
|
|
6598
6472
|
}));
|
|
6599
|
-
|
|
6600
6473
|
//#endregion
|
|
6601
|
-
//#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
|
|
6602
6475
|
var require_es2019_symbol = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6603
6476
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6604
6477
|
exports.es2019_symbol = void 0;
|
|
6605
|
-
const base_config_1 = require_base_config();
|
|
6606
6478
|
exports.es2019_symbol = {
|
|
6607
6479
|
libs: [],
|
|
6608
|
-
variables: [["Symbol",
|
|
6480
|
+
variables: [["Symbol", require_base_config().TYPE]]
|
|
6609
6481
|
};
|
|
6610
6482
|
}));
|
|
6611
|
-
|
|
6612
6483
|
//#endregion
|
|
6613
|
-
//#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
|
|
6614
6485
|
var require_es2019 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6615
6486
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6616
6487
|
exports.es2019 = void 0;
|
|
@@ -6632,9 +6503,8 @@ var require_es2019 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
6632
6503
|
variables: []
|
|
6633
6504
|
};
|
|
6634
6505
|
}));
|
|
6635
|
-
|
|
6636
6506
|
//#endregion
|
|
6637
|
-
//#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
|
|
6638
6508
|
var require_es2019_full = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6639
6509
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6640
6510
|
exports.es2019_full = void 0;
|
|
@@ -6656,29 +6526,25 @@ var require_es2019_full = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
6656
6526
|
variables: []
|
|
6657
6527
|
};
|
|
6658
6528
|
}));
|
|
6659
|
-
|
|
6660
6529
|
//#endregion
|
|
6661
|
-
//#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
|
|
6662
6531
|
var require_es2020_intl = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6663
6532
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6664
6533
|
exports.es2020_intl = void 0;
|
|
6665
6534
|
const base_config_1 = require_base_config();
|
|
6666
|
-
const es2018_intl_1 = require_es2018_intl();
|
|
6667
6535
|
exports.es2020_intl = {
|
|
6668
|
-
libs: [
|
|
6536
|
+
libs: [require_es2018_intl().es2018_intl],
|
|
6669
6537
|
variables: [["Intl", base_config_1.TYPE_VALUE]]
|
|
6670
6538
|
};
|
|
6671
6539
|
}));
|
|
6672
|
-
|
|
6673
6540
|
//#endregion
|
|
6674
|
-
//#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
|
|
6675
6542
|
var require_es2020_bigint = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6676
6543
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6677
6544
|
exports.es2020_bigint = void 0;
|
|
6678
6545
|
const base_config_1 = require_base_config();
|
|
6679
|
-
const es2020_intl_1 = require_es2020_intl();
|
|
6680
6546
|
exports.es2020_bigint = {
|
|
6681
|
-
libs: [
|
|
6547
|
+
libs: [require_es2020_intl().es2020_intl],
|
|
6682
6548
|
variables: [
|
|
6683
6549
|
["BigIntToLocaleStringOptions", base_config_1.TYPE],
|
|
6684
6550
|
["BigInt", base_config_1.TYPE_VALUE],
|
|
@@ -6692,35 +6558,30 @@ var require_es2020_bigint = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
6692
6558
|
]
|
|
6693
6559
|
};
|
|
6694
6560
|
}));
|
|
6695
|
-
|
|
6696
6561
|
//#endregion
|
|
6697
|
-
//#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
|
|
6698
6563
|
var require_es2020_date = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6699
6564
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6700
6565
|
exports.es2020_date = void 0;
|
|
6701
6566
|
const base_config_1 = require_base_config();
|
|
6702
|
-
const es2020_intl_1 = require_es2020_intl();
|
|
6703
6567
|
exports.es2020_date = {
|
|
6704
|
-
libs: [
|
|
6568
|
+
libs: [require_es2020_intl().es2020_intl],
|
|
6705
6569
|
variables: [["Date", base_config_1.TYPE]]
|
|
6706
6570
|
};
|
|
6707
6571
|
}));
|
|
6708
|
-
|
|
6709
6572
|
//#endregion
|
|
6710
|
-
//#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
|
|
6711
6574
|
var require_es2020_number = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6712
6575
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6713
6576
|
exports.es2020_number = void 0;
|
|
6714
6577
|
const base_config_1 = require_base_config();
|
|
6715
|
-
const es2020_intl_1 = require_es2020_intl();
|
|
6716
6578
|
exports.es2020_number = {
|
|
6717
|
-
libs: [
|
|
6579
|
+
libs: [require_es2020_intl().es2020_intl],
|
|
6718
6580
|
variables: [["Number", base_config_1.TYPE]]
|
|
6719
6581
|
};
|
|
6720
6582
|
}));
|
|
6721
|
-
|
|
6722
6583
|
//#endregion
|
|
6723
|
-
//#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
|
|
6724
6585
|
var require_es2020_promise = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6725
6586
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6726
6587
|
exports.es2020_promise = void 0;
|
|
@@ -6735,22 +6596,19 @@ var require_es2020_promise = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
6735
6596
|
]
|
|
6736
6597
|
};
|
|
6737
6598
|
}));
|
|
6738
|
-
|
|
6739
6599
|
//#endregion
|
|
6740
|
-
//#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
|
|
6741
6601
|
var require_es2020_sharedmemory = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6742
6602
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6743
6603
|
exports.es2020_sharedmemory = void 0;
|
|
6744
6604
|
const base_config_1 = require_base_config();
|
|
6745
|
-
const es2020_bigint_1 = require_es2020_bigint();
|
|
6746
6605
|
exports.es2020_sharedmemory = {
|
|
6747
|
-
libs: [
|
|
6606
|
+
libs: [require_es2020_bigint().es2020_bigint],
|
|
6748
6607
|
variables: [["Atomics", base_config_1.TYPE]]
|
|
6749
6608
|
};
|
|
6750
6609
|
}));
|
|
6751
|
-
|
|
6752
6610
|
//#endregion
|
|
6753
|
-
//#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
|
|
6754
6612
|
var require_es2020_symbol_wellknown = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6755
6613
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6756
6614
|
exports.es2020_symbol_wellknown = void 0;
|
|
@@ -6766,9 +6624,8 @@ var require_es2020_symbol_wellknown = /* @__PURE__ */ __commonJSMin(((exports) =
|
|
|
6766
6624
|
]
|
|
6767
6625
|
};
|
|
6768
6626
|
}));
|
|
6769
|
-
|
|
6770
6627
|
//#endregion
|
|
6771
|
-
//#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
|
|
6772
6629
|
var require_es2020_string = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6773
6630
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6774
6631
|
exports.es2020_string = void 0;
|
|
@@ -6785,9 +6642,8 @@ var require_es2020_string = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
6785
6642
|
variables: [["String", base_config_1.TYPE]]
|
|
6786
6643
|
};
|
|
6787
6644
|
}));
|
|
6788
|
-
|
|
6789
6645
|
//#endregion
|
|
6790
|
-
//#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
|
|
6791
6647
|
var require_es2020 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6792
6648
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6793
6649
|
exports.es2020 = void 0;
|
|
@@ -6815,9 +6671,8 @@ var require_es2020 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
6815
6671
|
variables: []
|
|
6816
6672
|
};
|
|
6817
6673
|
}));
|
|
6818
|
-
|
|
6819
6674
|
//#endregion
|
|
6820
|
-
//#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
|
|
6821
6676
|
var require_es2020_full = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6822
6677
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6823
6678
|
exports.es2020_full = void 0;
|
|
@@ -6839,21 +6694,18 @@ var require_es2020_full = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
6839
6694
|
variables: []
|
|
6840
6695
|
};
|
|
6841
6696
|
}));
|
|
6842
|
-
|
|
6843
6697
|
//#endregion
|
|
6844
|
-
//#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
|
|
6845
6699
|
var require_es2021_intl = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6846
6700
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6847
6701
|
exports.es2021_intl = void 0;
|
|
6848
|
-
const base_config_1 = require_base_config();
|
|
6849
6702
|
exports.es2021_intl = {
|
|
6850
6703
|
libs: [],
|
|
6851
|
-
variables: [["Intl",
|
|
6704
|
+
variables: [["Intl", require_base_config().TYPE_VALUE]]
|
|
6852
6705
|
};
|
|
6853
6706
|
}));
|
|
6854
|
-
|
|
6855
6707
|
//#endregion
|
|
6856
|
-
//#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
|
|
6857
6709
|
var require_es2021_promise = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6858
6710
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6859
6711
|
exports.es2021_promise = void 0;
|
|
@@ -6867,28 +6719,24 @@ var require_es2021_promise = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
6867
6719
|
]
|
|
6868
6720
|
};
|
|
6869
6721
|
}));
|
|
6870
|
-
|
|
6871
6722
|
//#endregion
|
|
6872
|
-
//#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
|
|
6873
6724
|
var require_es2021_string = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6874
6725
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6875
6726
|
exports.es2021_string = void 0;
|
|
6876
|
-
const base_config_1 = require_base_config();
|
|
6877
6727
|
exports.es2021_string = {
|
|
6878
6728
|
libs: [],
|
|
6879
|
-
variables: [["String",
|
|
6729
|
+
variables: [["String", require_base_config().TYPE]]
|
|
6880
6730
|
};
|
|
6881
6731
|
}));
|
|
6882
|
-
|
|
6883
6732
|
//#endregion
|
|
6884
|
-
//#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
|
|
6885
6734
|
var require_es2021_weakref = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6886
6735
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6887
6736
|
exports.es2021_weakref = void 0;
|
|
6888
6737
|
const base_config_1 = require_base_config();
|
|
6889
|
-
const es2015_symbol_wellknown_1 = require_es2015_symbol_wellknown();
|
|
6890
6738
|
exports.es2021_weakref = {
|
|
6891
|
-
libs: [
|
|
6739
|
+
libs: [require_es2015_symbol_wellknown().es2015_symbol_wellknown],
|
|
6892
6740
|
variables: [
|
|
6893
6741
|
["WeakRef", base_config_1.TYPE_VALUE],
|
|
6894
6742
|
["WeakRefConstructor", base_config_1.TYPE],
|
|
@@ -6897,9 +6745,8 @@ var require_es2021_weakref = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
6897
6745
|
]
|
|
6898
6746
|
};
|
|
6899
6747
|
}));
|
|
6900
|
-
|
|
6901
6748
|
//#endregion
|
|
6902
|
-
//#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
|
|
6903
6750
|
var require_es2021 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6904
6751
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6905
6752
|
exports.es2021 = void 0;
|
|
@@ -6919,9 +6766,8 @@ var require_es2021 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
6919
6766
|
variables: []
|
|
6920
6767
|
};
|
|
6921
6768
|
}));
|
|
6922
|
-
|
|
6923
6769
|
//#endregion
|
|
6924
|
-
//#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
|
|
6925
6771
|
var require_es2021_full = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6926
6772
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6927
6773
|
exports.es2021_full = void 0;
|
|
@@ -6943,9 +6789,8 @@ var require_es2021_full = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
6943
6789
|
variables: []
|
|
6944
6790
|
};
|
|
6945
6791
|
}));
|
|
6946
|
-
|
|
6947
6792
|
//#endregion
|
|
6948
|
-
//#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
|
|
6949
6794
|
var require_es2022_array = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6950
6795
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6951
6796
|
exports.es2022_array = void 0;
|
|
@@ -6969,16 +6814,14 @@ var require_es2022_array = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
6969
6814
|
]
|
|
6970
6815
|
};
|
|
6971
6816
|
}));
|
|
6972
|
-
|
|
6973
6817
|
//#endregion
|
|
6974
|
-
//#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
|
|
6975
6819
|
var require_es2022_error = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6976
6820
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6977
6821
|
exports.es2022_error = void 0;
|
|
6978
6822
|
const base_config_1 = require_base_config();
|
|
6979
|
-
const es2021_promise_1 = require_es2021_promise();
|
|
6980
6823
|
exports.es2022_error = {
|
|
6981
|
-
libs: [
|
|
6824
|
+
libs: [require_es2021_promise().es2021_promise],
|
|
6982
6825
|
variables: [
|
|
6983
6826
|
["ErrorOptions", base_config_1.TYPE],
|
|
6984
6827
|
["Error", base_config_1.TYPE],
|
|
@@ -6993,33 +6836,28 @@ var require_es2022_error = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
6993
6836
|
]
|
|
6994
6837
|
};
|
|
6995
6838
|
}));
|
|
6996
|
-
|
|
6997
6839
|
//#endregion
|
|
6998
|
-
//#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
|
|
6999
6841
|
var require_es2022_intl = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7000
6842
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7001
6843
|
exports.es2022_intl = void 0;
|
|
7002
|
-
const base_config_1 = require_base_config();
|
|
7003
6844
|
exports.es2022_intl = {
|
|
7004
6845
|
libs: [],
|
|
7005
|
-
variables: [["Intl",
|
|
6846
|
+
variables: [["Intl", require_base_config().TYPE_VALUE]]
|
|
7006
6847
|
};
|
|
7007
6848
|
}));
|
|
7008
|
-
|
|
7009
6849
|
//#endregion
|
|
7010
|
-
//#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
|
|
7011
6851
|
var require_es2022_object = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7012
6852
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7013
6853
|
exports.es2022_object = void 0;
|
|
7014
|
-
const base_config_1 = require_base_config();
|
|
7015
6854
|
exports.es2022_object = {
|
|
7016
6855
|
libs: [],
|
|
7017
|
-
variables: [["ObjectConstructor",
|
|
6856
|
+
variables: [["ObjectConstructor", require_base_config().TYPE]]
|
|
7018
6857
|
};
|
|
7019
6858
|
}));
|
|
7020
|
-
|
|
7021
6859
|
//#endregion
|
|
7022
|
-
//#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
|
|
7023
6861
|
var require_es2022_regexp = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7024
6862
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7025
6863
|
exports.es2022_regexp = void 0;
|
|
@@ -7034,21 +6872,18 @@ var require_es2022_regexp = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
7034
6872
|
]
|
|
7035
6873
|
};
|
|
7036
6874
|
}));
|
|
7037
|
-
|
|
7038
6875
|
//#endregion
|
|
7039
|
-
//#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
|
|
7040
6877
|
var require_es2022_string = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7041
6878
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7042
6879
|
exports.es2022_string = void 0;
|
|
7043
|
-
const base_config_1 = require_base_config();
|
|
7044
6880
|
exports.es2022_string = {
|
|
7045
6881
|
libs: [],
|
|
7046
|
-
variables: [["String",
|
|
6882
|
+
variables: [["String", require_base_config().TYPE]]
|
|
7047
6883
|
};
|
|
7048
6884
|
}));
|
|
7049
|
-
|
|
7050
6885
|
//#endregion
|
|
7051
|
-
//#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
|
|
7052
6887
|
var require_es2022 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7053
6888
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7054
6889
|
exports.es2022 = void 0;
|
|
@@ -7072,9 +6907,8 @@ var require_es2022 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
7072
6907
|
variables: []
|
|
7073
6908
|
};
|
|
7074
6909
|
}));
|
|
7075
|
-
|
|
7076
6910
|
//#endregion
|
|
7077
|
-
//#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
|
|
7078
6912
|
var require_es2022_full = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7079
6913
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7080
6914
|
exports.es2022_full = void 0;
|
|
@@ -7096,9 +6930,8 @@ var require_es2022_full = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
7096
6930
|
variables: []
|
|
7097
6931
|
};
|
|
7098
6932
|
}));
|
|
7099
|
-
|
|
7100
6933
|
//#endregion
|
|
7101
|
-
//#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
|
|
7102
6935
|
var require_es2023_array = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7103
6936
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7104
6937
|
exports.es2023_array = void 0;
|
|
@@ -7122,33 +6955,28 @@ var require_es2023_array = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
7122
6955
|
]
|
|
7123
6956
|
};
|
|
7124
6957
|
}));
|
|
7125
|
-
|
|
7126
6958
|
//#endregion
|
|
7127
|
-
//#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
|
|
7128
6960
|
var require_es2023_collection = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7129
6961
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7130
6962
|
exports.es2023_collection = void 0;
|
|
7131
|
-
const base_config_1 = require_base_config();
|
|
7132
6963
|
exports.es2023_collection = {
|
|
7133
6964
|
libs: [],
|
|
7134
|
-
variables: [["WeakKeyTypes",
|
|
6965
|
+
variables: [["WeakKeyTypes", require_base_config().TYPE]]
|
|
7135
6966
|
};
|
|
7136
6967
|
}));
|
|
7137
|
-
|
|
7138
6968
|
//#endregion
|
|
7139
|
-
//#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
|
|
7140
6970
|
var require_es2023_intl = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7141
6971
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7142
6972
|
exports.es2023_intl = void 0;
|
|
7143
|
-
const base_config_1 = require_base_config();
|
|
7144
6973
|
exports.es2023_intl = {
|
|
7145
6974
|
libs: [],
|
|
7146
|
-
variables: [["Intl",
|
|
6975
|
+
variables: [["Intl", require_base_config().TYPE_VALUE]]
|
|
7147
6976
|
};
|
|
7148
6977
|
}));
|
|
7149
|
-
|
|
7150
6978
|
//#endregion
|
|
7151
|
-
//#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
|
|
7152
6980
|
var require_es2023 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7153
6981
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7154
6982
|
exports.es2023 = void 0;
|
|
@@ -7166,9 +6994,8 @@ var require_es2023 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
7166
6994
|
variables: []
|
|
7167
6995
|
};
|
|
7168
6996
|
}));
|
|
7169
|
-
|
|
7170
6997
|
//#endregion
|
|
7171
|
-
//#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
|
|
7172
6999
|
var require_es2023_full = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7173
7000
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7174
7001
|
exports.es2023_full = void 0;
|
|
@@ -7190,9 +7017,8 @@ var require_es2023_full = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
7190
7017
|
variables: []
|
|
7191
7018
|
};
|
|
7192
7019
|
}));
|
|
7193
|
-
|
|
7194
7020
|
//#endregion
|
|
7195
|
-
//#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
|
|
7196
7022
|
var require_es2024_arraybuffer = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7197
7023
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7198
7024
|
exports.es2024_arraybuffer = void 0;
|
|
@@ -7202,33 +7028,28 @@ var require_es2024_arraybuffer = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
7202
7028
|
variables: [["ArrayBuffer", base_config_1.TYPE], ["ArrayBufferConstructor", base_config_1.TYPE]]
|
|
7203
7029
|
};
|
|
7204
7030
|
}));
|
|
7205
|
-
|
|
7206
7031
|
//#endregion
|
|
7207
|
-
//#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
|
|
7208
7033
|
var require_es2024_collection = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7209
7034
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7210
7035
|
exports.es2024_collection = void 0;
|
|
7211
|
-
const base_config_1 = require_base_config();
|
|
7212
7036
|
exports.es2024_collection = {
|
|
7213
7037
|
libs: [],
|
|
7214
|
-
variables: [["MapConstructor",
|
|
7038
|
+
variables: [["MapConstructor", require_base_config().TYPE]]
|
|
7215
7039
|
};
|
|
7216
7040
|
}));
|
|
7217
|
-
|
|
7218
7041
|
//#endregion
|
|
7219
|
-
//#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
|
|
7220
7043
|
var require_es2024_object = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7221
7044
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7222
7045
|
exports.es2024_object = void 0;
|
|
7223
|
-
const base_config_1 = require_base_config();
|
|
7224
7046
|
exports.es2024_object = {
|
|
7225
7047
|
libs: [],
|
|
7226
|
-
variables: [["ObjectConstructor",
|
|
7048
|
+
variables: [["ObjectConstructor", require_base_config().TYPE]]
|
|
7227
7049
|
};
|
|
7228
7050
|
}));
|
|
7229
|
-
|
|
7230
7051
|
//#endregion
|
|
7231
|
-
//#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
|
|
7232
7053
|
var require_es2024_promise = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7233
7054
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7234
7055
|
exports.es2024_promise = void 0;
|
|
@@ -7238,28 +7059,24 @@ var require_es2024_promise = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
7238
7059
|
variables: [["PromiseWithResolvers", base_config_1.TYPE], ["PromiseConstructor", base_config_1.TYPE]]
|
|
7239
7060
|
};
|
|
7240
7061
|
}));
|
|
7241
|
-
|
|
7242
7062
|
//#endregion
|
|
7243
|
-
//#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
|
|
7244
7064
|
var require_es2024_regexp = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7245
7065
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7246
7066
|
exports.es2024_regexp = void 0;
|
|
7247
|
-
const base_config_1 = require_base_config();
|
|
7248
7067
|
exports.es2024_regexp = {
|
|
7249
7068
|
libs: [],
|
|
7250
|
-
variables: [["RegExp",
|
|
7069
|
+
variables: [["RegExp", require_base_config().TYPE]]
|
|
7251
7070
|
};
|
|
7252
7071
|
}));
|
|
7253
|
-
|
|
7254
7072
|
//#endregion
|
|
7255
|
-
//#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
|
|
7256
7074
|
var require_es2024_sharedmemory = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7257
7075
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7258
7076
|
exports.es2024_sharedmemory = void 0;
|
|
7259
7077
|
const base_config_1 = require_base_config();
|
|
7260
|
-
const es2020_bigint_1 = require_es2020_bigint();
|
|
7261
7078
|
exports.es2024_sharedmemory = {
|
|
7262
|
-
libs: [
|
|
7079
|
+
libs: [require_es2020_bigint().es2020_bigint],
|
|
7263
7080
|
variables: [
|
|
7264
7081
|
["Atomics", base_config_1.TYPE],
|
|
7265
7082
|
["SharedArrayBuffer", base_config_1.TYPE],
|
|
@@ -7267,21 +7084,18 @@ var require_es2024_sharedmemory = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
7267
7084
|
]
|
|
7268
7085
|
};
|
|
7269
7086
|
}));
|
|
7270
|
-
|
|
7271
7087
|
//#endregion
|
|
7272
|
-
//#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
|
|
7273
7089
|
var require_es2024_string = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7274
7090
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7275
7091
|
exports.es2024_string = void 0;
|
|
7276
|
-
const base_config_1 = require_base_config();
|
|
7277
7092
|
exports.es2024_string = {
|
|
7278
7093
|
libs: [],
|
|
7279
|
-
variables: [["String",
|
|
7094
|
+
variables: [["String", require_base_config().TYPE]]
|
|
7280
7095
|
};
|
|
7281
7096
|
}));
|
|
7282
|
-
|
|
7283
7097
|
//#endregion
|
|
7284
|
-
//#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
|
|
7285
7099
|
var require_es2024 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7286
7100
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7287
7101
|
exports.es2024 = void 0;
|
|
@@ -7307,9 +7121,8 @@ var require_es2024 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
7307
7121
|
variables: []
|
|
7308
7122
|
};
|
|
7309
7123
|
}));
|
|
7310
|
-
|
|
7311
7124
|
//#endregion
|
|
7312
|
-
//#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
|
|
7313
7126
|
var require_es2024_full = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7314
7127
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7315
7128
|
exports.es2024_full = void 0;
|
|
@@ -7331,28 +7144,24 @@ var require_es2024_full = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
7331
7144
|
variables: []
|
|
7332
7145
|
};
|
|
7333
7146
|
}));
|
|
7334
|
-
|
|
7335
7147
|
//#endregion
|
|
7336
|
-
//#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
|
|
7337
7149
|
var require_esnext_array = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7338
7150
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7339
7151
|
exports.esnext_array = void 0;
|
|
7340
|
-
const base_config_1 = require_base_config();
|
|
7341
7152
|
exports.esnext_array = {
|
|
7342
7153
|
libs: [],
|
|
7343
|
-
variables: [["ArrayConstructor",
|
|
7154
|
+
variables: [["ArrayConstructor", require_base_config().TYPE]]
|
|
7344
7155
|
};
|
|
7345
7156
|
}));
|
|
7346
|
-
|
|
7347
7157
|
//#endregion
|
|
7348
|
-
//#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
|
|
7349
7159
|
var require_esnext_collection = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7350
7160
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7351
7161
|
exports.esnext_collection = void 0;
|
|
7352
7162
|
const base_config_1 = require_base_config();
|
|
7353
|
-
const es2024_collection_1 = require_es2024_collection();
|
|
7354
7163
|
exports.esnext_collection = {
|
|
7355
|
-
libs: [
|
|
7164
|
+
libs: [require_es2024_collection().es2024_collection],
|
|
7356
7165
|
variables: [
|
|
7357
7166
|
["ReadonlySetLike", base_config_1.TYPE],
|
|
7358
7167
|
["Set", base_config_1.TYPE],
|
|
@@ -7360,23 +7169,20 @@ var require_esnext_collection = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
7360
7169
|
]
|
|
7361
7170
|
};
|
|
7362
7171
|
}));
|
|
7363
|
-
|
|
7364
7172
|
//#endregion
|
|
7365
|
-
//#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
|
|
7366
7174
|
var require_esnext_decorators = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7367
7175
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7368
7176
|
exports.esnext_decorators = void 0;
|
|
7369
7177
|
const base_config_1 = require_base_config();
|
|
7370
7178
|
const decorators_1 = require_decorators();
|
|
7371
|
-
const es2015_symbol_1 = require_es2015_symbol();
|
|
7372
7179
|
exports.esnext_decorators = {
|
|
7373
|
-
libs: [
|
|
7180
|
+
libs: [require_es2015_symbol().es2015_symbol, decorators_1.decorators],
|
|
7374
7181
|
variables: [["SymbolConstructor", base_config_1.TYPE], ["Function", base_config_1.TYPE]]
|
|
7375
7182
|
};
|
|
7376
7183
|
}));
|
|
7377
|
-
|
|
7378
7184
|
//#endregion
|
|
7379
|
-
//#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
|
|
7380
7186
|
var require_esnext_disposable = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7381
7187
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7382
7188
|
exports.esnext_disposable = void 0;
|
|
@@ -7405,29 +7211,25 @@ var require_esnext_disposable = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
7405
7211
|
]
|
|
7406
7212
|
};
|
|
7407
7213
|
}));
|
|
7408
|
-
|
|
7409
7214
|
//#endregion
|
|
7410
|
-
//#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
|
|
7411
7216
|
var require_esnext_error = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7412
7217
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7413
7218
|
exports.esnext_error = void 0;
|
|
7414
|
-
const base_config_1 = require_base_config();
|
|
7415
7219
|
exports.esnext_error = {
|
|
7416
7220
|
libs: [],
|
|
7417
|
-
variables: [["ErrorConstructor",
|
|
7221
|
+
variables: [["ErrorConstructor", require_base_config().TYPE]]
|
|
7418
7222
|
};
|
|
7419
7223
|
}));
|
|
7420
|
-
|
|
7421
7224
|
//#endregion
|
|
7422
|
-
//#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
|
|
7423
7226
|
var require_esnext_float16 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7424
7227
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7425
7228
|
exports.esnext_float16 = void 0;
|
|
7426
7229
|
const base_config_1 = require_base_config();
|
|
7427
7230
|
const es2015_iterable_1 = require_es2015_iterable();
|
|
7428
|
-
const es2015_symbol_1 = require_es2015_symbol();
|
|
7429
7231
|
exports.esnext_float16 = {
|
|
7430
|
-
libs: [
|
|
7232
|
+
libs: [require_es2015_symbol().es2015_symbol, es2015_iterable_1.es2015_iterable],
|
|
7431
7233
|
variables: [
|
|
7432
7234
|
["Float16Array", base_config_1.TYPE_VALUE],
|
|
7433
7235
|
["Float16ArrayConstructor", base_config_1.TYPE],
|
|
@@ -7436,58 +7238,49 @@ var require_esnext_float16 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
7436
7238
|
]
|
|
7437
7239
|
};
|
|
7438
7240
|
}));
|
|
7439
|
-
|
|
7440
7241
|
//#endregion
|
|
7441
|
-
//#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
|
|
7442
7243
|
var require_esnext_intl = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7443
7244
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7444
7245
|
exports.esnext_intl = void 0;
|
|
7445
|
-
const base_config_1 = require_base_config();
|
|
7446
7246
|
exports.esnext_intl = {
|
|
7447
7247
|
libs: [],
|
|
7448
|
-
variables: [["Intl",
|
|
7248
|
+
variables: [["Intl", require_base_config().TYPE_VALUE]]
|
|
7449
7249
|
};
|
|
7450
7250
|
}));
|
|
7451
|
-
|
|
7452
7251
|
//#endregion
|
|
7453
|
-
//#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
|
|
7454
7253
|
var require_esnext_iterator = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7455
7254
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7456
7255
|
exports.esnext_iterator = void 0;
|
|
7457
7256
|
const base_config_1 = require_base_config();
|
|
7458
|
-
const es2015_iterable_1 = require_es2015_iterable();
|
|
7459
7257
|
exports.esnext_iterator = {
|
|
7460
|
-
libs: [
|
|
7258
|
+
libs: [require_es2015_iterable().es2015_iterable],
|
|
7461
7259
|
variables: [["Iterator", base_config_1.TYPE_VALUE], ["IteratorObjectConstructor", base_config_1.TYPE]]
|
|
7462
7260
|
};
|
|
7463
7261
|
}));
|
|
7464
|
-
|
|
7465
7262
|
//#endregion
|
|
7466
|
-
//#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
|
|
7467
7264
|
var require_esnext_promise = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7468
7265
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7469
7266
|
exports.esnext_promise = void 0;
|
|
7470
|
-
const base_config_1 = require_base_config();
|
|
7471
7267
|
exports.esnext_promise = {
|
|
7472
7268
|
libs: [],
|
|
7473
|
-
variables: [["PromiseConstructor",
|
|
7269
|
+
variables: [["PromiseConstructor", require_base_config().TYPE]]
|
|
7474
7270
|
};
|
|
7475
7271
|
}));
|
|
7476
|
-
|
|
7477
7272
|
//#endregion
|
|
7478
|
-
//#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
|
|
7479
7274
|
var require_esnext_sharedmemory = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7480
7275
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7481
7276
|
exports.esnext_sharedmemory = void 0;
|
|
7482
|
-
const base_config_1 = require_base_config();
|
|
7483
7277
|
exports.esnext_sharedmemory = {
|
|
7484
7278
|
libs: [],
|
|
7485
|
-
variables: [["Atomics",
|
|
7279
|
+
variables: [["Atomics", require_base_config().TYPE]]
|
|
7486
7280
|
};
|
|
7487
7281
|
}));
|
|
7488
|
-
|
|
7489
7282
|
//#endregion
|
|
7490
|
-
//#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
|
|
7491
7284
|
var require_esnext = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7492
7285
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7493
7286
|
exports.esnext = void 0;
|
|
@@ -7519,17 +7312,15 @@ var require_esnext = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
7519
7312
|
variables: []
|
|
7520
7313
|
};
|
|
7521
7314
|
}));
|
|
7522
|
-
|
|
7523
7315
|
//#endregion
|
|
7524
|
-
//#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
|
|
7525
7317
|
var require_esnext_asynciterable = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7526
7318
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7527
7319
|
exports.esnext_asynciterable = void 0;
|
|
7528
7320
|
const base_config_1 = require_base_config();
|
|
7529
7321
|
const es2015_iterable_1 = require_es2015_iterable();
|
|
7530
|
-
const es2015_symbol_1 = require_es2015_symbol();
|
|
7531
7322
|
exports.esnext_asynciterable = {
|
|
7532
|
-
libs: [
|
|
7323
|
+
libs: [require_es2015_symbol().es2015_symbol, es2015_iterable_1.es2015_iterable],
|
|
7533
7324
|
variables: [
|
|
7534
7325
|
["SymbolConstructor", base_config_1.TYPE],
|
|
7535
7326
|
["AsyncIterator", base_config_1.TYPE],
|
|
@@ -7539,16 +7330,14 @@ var require_esnext_asynciterable = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
7539
7330
|
]
|
|
7540
7331
|
};
|
|
7541
7332
|
}));
|
|
7542
|
-
|
|
7543
7333
|
//#endregion
|
|
7544
|
-
//#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
|
|
7545
7335
|
var require_esnext_bigint = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7546
7336
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7547
7337
|
exports.esnext_bigint = void 0;
|
|
7548
7338
|
const base_config_1 = require_base_config();
|
|
7549
|
-
const es2020_intl_1 = require_es2020_intl();
|
|
7550
7339
|
exports.esnext_bigint = {
|
|
7551
|
-
libs: [
|
|
7340
|
+
libs: [require_es2020_intl().es2020_intl],
|
|
7552
7341
|
variables: [
|
|
7553
7342
|
["BigIntToLocaleStringOptions", base_config_1.TYPE],
|
|
7554
7343
|
["BigInt", base_config_1.TYPE_VALUE],
|
|
@@ -7562,9 +7351,8 @@ var require_esnext_bigint = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
7562
7351
|
]
|
|
7563
7352
|
};
|
|
7564
7353
|
}));
|
|
7565
|
-
|
|
7566
7354
|
//#endregion
|
|
7567
|
-
//#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
|
|
7568
7356
|
var require_esnext_full = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7569
7357
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7570
7358
|
exports.esnext_full = void 0;
|
|
@@ -7586,64 +7374,54 @@ var require_esnext_full = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
7586
7374
|
variables: []
|
|
7587
7375
|
};
|
|
7588
7376
|
}));
|
|
7589
|
-
|
|
7590
7377
|
//#endregion
|
|
7591
|
-
//#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
|
|
7592
7379
|
var require_esnext_object = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7593
7380
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7594
7381
|
exports.esnext_object = void 0;
|
|
7595
|
-
const base_config_1 = require_base_config();
|
|
7596
7382
|
exports.esnext_object = {
|
|
7597
7383
|
libs: [],
|
|
7598
|
-
variables: [["ObjectConstructor",
|
|
7384
|
+
variables: [["ObjectConstructor", require_base_config().TYPE]]
|
|
7599
7385
|
};
|
|
7600
7386
|
}));
|
|
7601
|
-
|
|
7602
7387
|
//#endregion
|
|
7603
|
-
//#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
|
|
7604
7389
|
var require_esnext_regexp = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7605
7390
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7606
7391
|
exports.esnext_regexp = void 0;
|
|
7607
|
-
const base_config_1 = require_base_config();
|
|
7608
7392
|
exports.esnext_regexp = {
|
|
7609
7393
|
libs: [],
|
|
7610
|
-
variables: [["RegExp",
|
|
7394
|
+
variables: [["RegExp", require_base_config().TYPE]]
|
|
7611
7395
|
};
|
|
7612
7396
|
}));
|
|
7613
|
-
|
|
7614
7397
|
//#endregion
|
|
7615
|
-
//#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
|
|
7616
7399
|
var require_esnext_string = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7617
7400
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7618
7401
|
exports.esnext_string = void 0;
|
|
7619
|
-
const base_config_1 = require_base_config();
|
|
7620
7402
|
exports.esnext_string = {
|
|
7621
7403
|
libs: [],
|
|
7622
|
-
variables: [["String",
|
|
7404
|
+
variables: [["String", require_base_config().TYPE]]
|
|
7623
7405
|
};
|
|
7624
7406
|
}));
|
|
7625
|
-
|
|
7626
7407
|
//#endregion
|
|
7627
|
-
//#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
|
|
7628
7409
|
var require_esnext_symbol = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7629
7410
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7630
7411
|
exports.esnext_symbol = void 0;
|
|
7631
|
-
const base_config_1 = require_base_config();
|
|
7632
7412
|
exports.esnext_symbol = {
|
|
7633
7413
|
libs: [],
|
|
7634
|
-
variables: [["Symbol",
|
|
7414
|
+
variables: [["Symbol", require_base_config().TYPE]]
|
|
7635
7415
|
};
|
|
7636
7416
|
}));
|
|
7637
|
-
|
|
7638
7417
|
//#endregion
|
|
7639
|
-
//#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
|
|
7640
7419
|
var require_esnext_weakref = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7641
7420
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7642
7421
|
exports.esnext_weakref = void 0;
|
|
7643
7422
|
const base_config_1 = require_base_config();
|
|
7644
|
-
const es2015_symbol_wellknown_1 = require_es2015_symbol_wellknown();
|
|
7645
7423
|
exports.esnext_weakref = {
|
|
7646
|
-
libs: [
|
|
7424
|
+
libs: [require_es2015_symbol_wellknown().es2015_symbol_wellknown],
|
|
7647
7425
|
variables: [
|
|
7648
7426
|
["WeakRef", base_config_1.TYPE_VALUE],
|
|
7649
7427
|
["WeakRefConstructor", base_config_1.TYPE],
|
|
@@ -7652,9 +7430,8 @@ var require_esnext_weakref = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
7652
7430
|
]
|
|
7653
7431
|
};
|
|
7654
7432
|
}));
|
|
7655
|
-
|
|
7656
7433
|
//#endregion
|
|
7657
|
-
//#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
|
|
7658
7435
|
var require_lib$1 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7659
7436
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7660
7437
|
exports.lib = void 0;
|
|
@@ -7672,9 +7449,8 @@ var require_lib$1 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
7672
7449
|
variables: []
|
|
7673
7450
|
};
|
|
7674
7451
|
}));
|
|
7675
|
-
|
|
7676
7452
|
//#endregion
|
|
7677
|
-
//#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
|
|
7678
7454
|
var require_webworker = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
7679
7455
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7680
7456
|
exports.webworker = void 0;
|
|
@@ -8322,9 +8098,8 @@ var require_webworker = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
8322
8098
|
]
|
|
8323
8099
|
};
|
|
8324
8100
|
}));
|
|
8325
|
-
|
|
8326
8101
|
//#endregion
|
|
8327
|
-
//#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
|
|
8328
8103
|
var require_webworker_asynciterable = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
8329
8104
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8330
8105
|
exports.webworker_asynciterable = void 0;
|
|
@@ -8339,9 +8114,8 @@ var require_webworker_asynciterable = /* @__PURE__ */ __commonJSMin(((exports) =
|
|
|
8339
8114
|
]
|
|
8340
8115
|
};
|
|
8341
8116
|
}));
|
|
8342
|
-
|
|
8343
8117
|
//#endregion
|
|
8344
|
-
//#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
|
|
8345
8119
|
var require_webworker_iterable = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
8346
8120
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8347
8121
|
exports.webworker_iterable = void 0;
|
|
@@ -8381,9 +8155,8 @@ var require_webworker_iterable = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
8381
8155
|
]
|
|
8382
8156
|
};
|
|
8383
8157
|
}));
|
|
8384
|
-
|
|
8385
8158
|
//#endregion
|
|
8386
|
-
//#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
|
|
8387
8160
|
var require_lib = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
8388
8161
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8389
8162
|
exports.lib = void 0;
|
|
@@ -8606,9 +8379,8 @@ var require_lib = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
8606
8379
|
["lib", lib_1.lib]
|
|
8607
8380
|
]);
|
|
8608
8381
|
}));
|
|
8609
|
-
|
|
8610
8382
|
//#endregion
|
|
8611
|
-
//#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
|
|
8612
8384
|
var require_Reference = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
8613
8385
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8614
8386
|
exports.Reference = exports.ReferenceTypeFlag = exports.ReferenceFlag = void 0;
|
|
@@ -8729,9 +8501,8 @@ var require_Reference = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
8729
8501
|
};
|
|
8730
8502
|
exports.Reference = Reference;
|
|
8731
8503
|
}));
|
|
8732
|
-
|
|
8733
8504
|
//#endregion
|
|
8734
|
-
//#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
|
|
8735
8506
|
var require_VariableBase = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
8736
8507
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8737
8508
|
exports.VariableBase = void 0;
|
|
@@ -8772,16 +8543,15 @@ var require_VariableBase = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
8772
8543
|
* Reference to the enclosing Scope.
|
|
8773
8544
|
*/
|
|
8774
8545
|
scope;
|
|
8775
|
-
constructor(name
|
|
8776
|
-
this.name = name
|
|
8546
|
+
constructor(name, scope) {
|
|
8547
|
+
this.name = name;
|
|
8777
8548
|
this.scope = scope;
|
|
8778
8549
|
}
|
|
8779
8550
|
};
|
|
8780
8551
|
exports.VariableBase = VariableBase;
|
|
8781
8552
|
}));
|
|
8782
|
-
|
|
8783
8553
|
//#endregion
|
|
8784
|
-
//#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
|
|
8785
8555
|
var require_ESLintScopeVariable = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
8786
8556
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8787
8557
|
exports.ESLintScopeVariable = void 0;
|
|
@@ -8818,9 +8588,8 @@ var require_ESLintScopeVariable = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
8818
8588
|
};
|
|
8819
8589
|
exports.ESLintScopeVariable = ESLintScopeVariable;
|
|
8820
8590
|
}));
|
|
8821
|
-
|
|
8822
8591
|
//#endregion
|
|
8823
|
-
//#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
|
|
8824
8593
|
var require_ImplicitLibVariable = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
8825
8594
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8826
8595
|
exports.ImplicitLibVariable = void 0;
|
|
@@ -8837,8 +8606,8 @@ var require_ImplicitLibVariable = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
8837
8606
|
* `true` if the variable is valid in a value context, false otherwise
|
|
8838
8607
|
*/
|
|
8839
8608
|
isValueVariable;
|
|
8840
|
-
constructor(scope, name
|
|
8841
|
-
super(name
|
|
8609
|
+
constructor(scope, name, { eslintImplicitGlobalSetting, isTypeVariable, isValueVariable, writeable }) {
|
|
8610
|
+
super(name, scope);
|
|
8842
8611
|
this.isTypeVariable = isTypeVariable ?? false;
|
|
8843
8612
|
this.isValueVariable = isValueVariable ?? false;
|
|
8844
8613
|
this.writeable = writeable ?? false;
|
|
@@ -8847,9 +8616,8 @@ var require_ImplicitLibVariable = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
8847
8616
|
};
|
|
8848
8617
|
exports.ImplicitLibVariable = ImplicitLibVariable;
|
|
8849
8618
|
}));
|
|
8850
|
-
|
|
8851
8619
|
//#endregion
|
|
8852
|
-
//#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
|
|
8853
8621
|
var require_Variable = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
8854
8622
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8855
8623
|
exports.Variable = void 0;
|
|
@@ -8877,9 +8645,8 @@ var require_Variable = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
8877
8645
|
};
|
|
8878
8646
|
exports.Variable = Variable;
|
|
8879
8647
|
}));
|
|
8880
|
-
|
|
8881
8648
|
//#endregion
|
|
8882
|
-
//#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
|
|
8883
8650
|
var require_variable = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
8884
8651
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8885
8652
|
exports.Variable = exports.ImplicitLibVariable = exports.ESLintScopeVariable = void 0;
|
|
@@ -8905,9 +8672,8 @@ var require_variable = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
8905
8672
|
}
|
|
8906
8673
|
});
|
|
8907
8674
|
}));
|
|
8908
|
-
|
|
8909
8675
|
//#endregion
|
|
8910
|
-
//#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
|
|
8911
8677
|
var require_ScopeType = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
8912
8678
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8913
8679
|
exports.ScopeType = void 0;
|
|
@@ -8933,9 +8699,8 @@ var require_ScopeType = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
8933
8699
|
ScopeType["with"] = "with";
|
|
8934
8700
|
})(ScopeType || (exports.ScopeType = ScopeType = {}));
|
|
8935
8701
|
}));
|
|
8936
|
-
|
|
8937
8702
|
//#endregion
|
|
8938
|
-
//#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
|
|
8939
8704
|
var require_ScopeBase = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
8940
8705
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8941
8706
|
exports.ScopeBase = void 0;
|
|
@@ -9078,8 +8843,8 @@ var require_ScopeBase = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
9078
8843
|
};
|
|
9079
8844
|
#staticCloseRef = (ref) => {
|
|
9080
8845
|
const resolve = () => {
|
|
9081
|
-
const name
|
|
9082
|
-
const variable = this.set.get(name
|
|
8846
|
+
const name = ref.identifier.name;
|
|
8847
|
+
const variable = this.set.get(name);
|
|
9083
8848
|
if (!variable) return false;
|
|
9084
8849
|
if (!this.isValidResolution(ref, variable)) return false;
|
|
9085
8850
|
const isValidTypeReference = ref.isTypeReference && variable.isTypeVariable;
|
|
@@ -9126,11 +8891,11 @@ var require_ScopeBase = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
9126
8891
|
* References in default parameters isn't resolved to variables which are in their function body.
|
|
9127
8892
|
*/
|
|
9128
8893
|
defineVariable(nameOrVariable, set, variables, node, def) {
|
|
9129
|
-
const name
|
|
9130
|
-
let variable = set.get(name
|
|
8894
|
+
const name = typeof nameOrVariable === "string" ? nameOrVariable : nameOrVariable.name;
|
|
8895
|
+
let variable = set.get(name);
|
|
9131
8896
|
if (!variable) {
|
|
9132
|
-
variable = typeof nameOrVariable === "string" ? new variable_1.Variable(name
|
|
9133
|
-
set.set(name
|
|
8897
|
+
variable = typeof nameOrVariable === "string" ? new variable_1.Variable(name, this) : nameOrVariable;
|
|
8898
|
+
set.set(name, variable);
|
|
9134
8899
|
variables.push(variable);
|
|
9135
8900
|
}
|
|
9136
8901
|
if (def) {
|
|
@@ -9180,9 +8945,8 @@ var require_ScopeBase = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
9180
8945
|
};
|
|
9181
8946
|
exports.ScopeBase = ScopeBase;
|
|
9182
8947
|
}));
|
|
9183
|
-
|
|
9184
8948
|
//#endregion
|
|
9185
|
-
//#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
|
|
9186
8950
|
var require_BlockScope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
9187
8951
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9188
8952
|
exports.BlockScope = void 0;
|
|
@@ -9195,9 +8959,8 @@ var require_BlockScope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
9195
8959
|
};
|
|
9196
8960
|
exports.BlockScope = BlockScope;
|
|
9197
8961
|
}));
|
|
9198
|
-
|
|
9199
8962
|
//#endregion
|
|
9200
|
-
//#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
|
|
9201
8964
|
var require_CatchScope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
9202
8965
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9203
8966
|
exports.CatchScope = void 0;
|
|
@@ -9210,9 +8973,8 @@ var require_CatchScope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
9210
8973
|
};
|
|
9211
8974
|
exports.CatchScope = CatchScope;
|
|
9212
8975
|
}));
|
|
9213
|
-
|
|
9214
8976
|
//#endregion
|
|
9215
|
-
//#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
|
|
9216
8978
|
var require_ClassFieldInitializerScope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
9217
8979
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9218
8980
|
exports.ClassFieldInitializerScope = void 0;
|
|
@@ -9225,9 +8987,8 @@ var require_ClassFieldInitializerScope = /* @__PURE__ */ __commonJSMin(((exports
|
|
|
9225
8987
|
};
|
|
9226
8988
|
exports.ClassFieldInitializerScope = ClassFieldInitializerScope;
|
|
9227
8989
|
}));
|
|
9228
|
-
|
|
9229
8990
|
//#endregion
|
|
9230
|
-
//#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
|
|
9231
8992
|
var require_ClassScope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
9232
8993
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9233
8994
|
exports.ClassScope = void 0;
|
|
@@ -9240,9 +9001,8 @@ var require_ClassScope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
9240
9001
|
};
|
|
9241
9002
|
exports.ClassScope = ClassScope;
|
|
9242
9003
|
}));
|
|
9243
|
-
|
|
9244
9004
|
//#endregion
|
|
9245
|
-
//#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
|
|
9246
9006
|
var require_ConditionalTypeScope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
9247
9007
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9248
9008
|
exports.ConditionalTypeScope = void 0;
|
|
@@ -9255,9 +9015,8 @@ var require_ConditionalTypeScope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
9255
9015
|
};
|
|
9256
9016
|
exports.ConditionalTypeScope = ConditionalTypeScope;
|
|
9257
9017
|
}));
|
|
9258
|
-
|
|
9259
9018
|
//#endregion
|
|
9260
|
-
//#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
|
|
9261
9020
|
var require_ForScope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
9262
9021
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9263
9022
|
exports.ForScope = void 0;
|
|
@@ -9270,9 +9029,8 @@ var require_ForScope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
9270
9029
|
};
|
|
9271
9030
|
exports.ForScope = ForScope;
|
|
9272
9031
|
}));
|
|
9273
|
-
|
|
9274
9032
|
//#endregion
|
|
9275
|
-
//#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
|
|
9276
9034
|
var require_FunctionExpressionNameScope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
9277
9035
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9278
9036
|
exports.FunctionExpressionNameScope = void 0;
|
|
@@ -9289,9 +9047,8 @@ var require_FunctionExpressionNameScope = /* @__PURE__ */ __commonJSMin(((export
|
|
|
9289
9047
|
};
|
|
9290
9048
|
exports.FunctionExpressionNameScope = FunctionExpressionNameScope;
|
|
9291
9049
|
}));
|
|
9292
|
-
|
|
9293
9050
|
//#endregion
|
|
9294
|
-
//#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
|
|
9295
9052
|
var require_FunctionScope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
9296
9053
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9297
9054
|
exports.FunctionScope = void 0;
|
|
@@ -9311,9 +9068,8 @@ var require_FunctionScope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
9311
9068
|
};
|
|
9312
9069
|
exports.FunctionScope = FunctionScope;
|
|
9313
9070
|
}));
|
|
9314
|
-
|
|
9315
9071
|
//#endregion
|
|
9316
|
-
//#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
|
|
9317
9073
|
var require_FunctionTypeScope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
9318
9074
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9319
9075
|
exports.FunctionTypeScope = void 0;
|
|
@@ -9326,9 +9082,8 @@ var require_FunctionTypeScope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
9326
9082
|
};
|
|
9327
9083
|
exports.FunctionTypeScope = FunctionTypeScope;
|
|
9328
9084
|
}));
|
|
9329
|
-
|
|
9330
9085
|
//#endregion
|
|
9331
|
-
//#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
|
|
9332
9087
|
var require_GlobalScope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
9333
9088
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9334
9089
|
exports.GlobalScope = void 0;
|
|
@@ -9349,9 +9104,9 @@ var require_GlobalScope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
9349
9104
|
};
|
|
9350
9105
|
}
|
|
9351
9106
|
addVariables(names) {
|
|
9352
|
-
for (const name
|
|
9353
|
-
this.defineVariable(name
|
|
9354
|
-
this.implicit.set.delete(name
|
|
9107
|
+
for (const name of names) {
|
|
9108
|
+
this.defineVariable(name, this.set, this.variables, null, null);
|
|
9109
|
+
this.implicit.set.delete(name);
|
|
9355
9110
|
}
|
|
9356
9111
|
const nameSet = new Set(names);
|
|
9357
9112
|
for (const reference of this.through) if (nameSet.has(reference.identifier.name)) {
|
|
@@ -9376,15 +9131,14 @@ var require_GlobalScope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
9376
9131
|
this.implicit.leftToBeResolved = [...this.through];
|
|
9377
9132
|
return null;
|
|
9378
9133
|
}
|
|
9379
|
-
defineImplicitVariable(name
|
|
9380
|
-
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);
|
|
9381
9136
|
}
|
|
9382
9137
|
};
|
|
9383
9138
|
exports.GlobalScope = GlobalScope;
|
|
9384
9139
|
}));
|
|
9385
|
-
|
|
9386
9140
|
//#endregion
|
|
9387
|
-
//#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
|
|
9388
9142
|
var require_MappedTypeScope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
9389
9143
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9390
9144
|
exports.MappedTypeScope = void 0;
|
|
@@ -9397,9 +9151,8 @@ var require_MappedTypeScope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
9397
9151
|
};
|
|
9398
9152
|
exports.MappedTypeScope = MappedTypeScope;
|
|
9399
9153
|
}));
|
|
9400
|
-
|
|
9401
9154
|
//#endregion
|
|
9402
|
-
//#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
|
|
9403
9156
|
var require_ModuleScope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
9404
9157
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9405
9158
|
exports.ModuleScope = void 0;
|
|
@@ -9412,15 +9165,13 @@ var require_ModuleScope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
9412
9165
|
};
|
|
9413
9166
|
exports.ModuleScope = ModuleScope;
|
|
9414
9167
|
}));
|
|
9415
|
-
|
|
9416
9168
|
//#endregion
|
|
9417
|
-
//#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
|
|
9418
9170
|
var require_Scope$1 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
9419
9171
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9420
9172
|
}));
|
|
9421
|
-
|
|
9422
9173
|
//#endregion
|
|
9423
|
-
//#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
|
|
9424
9175
|
var require_SwitchScope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
9425
9176
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9426
9177
|
exports.SwitchScope = void 0;
|
|
@@ -9433,9 +9184,8 @@ var require_SwitchScope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
9433
9184
|
};
|
|
9434
9185
|
exports.SwitchScope = SwitchScope;
|
|
9435
9186
|
}));
|
|
9436
|
-
|
|
9437
9187
|
//#endregion
|
|
9438
|
-
//#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
|
|
9439
9189
|
var require_TSEnumScope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
9440
9190
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9441
9191
|
exports.TSEnumScope = void 0;
|
|
@@ -9448,9 +9198,8 @@ var require_TSEnumScope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
9448
9198
|
};
|
|
9449
9199
|
exports.TSEnumScope = TSEnumScope;
|
|
9450
9200
|
}));
|
|
9451
|
-
|
|
9452
9201
|
//#endregion
|
|
9453
|
-
//#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
|
|
9454
9203
|
var require_TSModuleScope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
9455
9204
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9456
9205
|
exports.TSModuleScope = void 0;
|
|
@@ -9463,9 +9212,8 @@ var require_TSModuleScope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
9463
9212
|
};
|
|
9464
9213
|
exports.TSModuleScope = TSModuleScope;
|
|
9465
9214
|
}));
|
|
9466
|
-
|
|
9467
9215
|
//#endregion
|
|
9468
|
-
//#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
|
|
9469
9217
|
var require_TypeScope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
9470
9218
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9471
9219
|
exports.TypeScope = void 0;
|
|
@@ -9478,9 +9226,8 @@ var require_TypeScope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
9478
9226
|
};
|
|
9479
9227
|
exports.TypeScope = TypeScope;
|
|
9480
9228
|
}));
|
|
9481
|
-
|
|
9482
9229
|
//#endregion
|
|
9483
|
-
//#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
|
|
9484
9231
|
var require_WithScope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
9485
9232
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9486
9233
|
exports.WithScope = void 0;
|
|
@@ -9501,9 +9248,8 @@ var require_WithScope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
9501
9248
|
};
|
|
9502
9249
|
exports.WithScope = WithScope;
|
|
9503
9250
|
}));
|
|
9504
|
-
|
|
9505
9251
|
//#endregion
|
|
9506
|
-
//#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
|
|
9507
9253
|
var require_scope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
9508
9254
|
var __createBinding = exports && exports.__createBinding || (Object.create ? (function(o, m, k, k2) {
|
|
9509
9255
|
if (k2 === void 0) k2 = k;
|
|
@@ -9519,8 +9265,8 @@ var require_scope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
9519
9265
|
if (k2 === void 0) k2 = k;
|
|
9520
9266
|
o[k2] = m[k];
|
|
9521
9267
|
}));
|
|
9522
|
-
var __exportStar = exports && exports.__exportStar || function(m, exports$
|
|
9523
|
-
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);
|
|
9524
9270
|
};
|
|
9525
9271
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9526
9272
|
__exportStar(require_BlockScope(), exports);
|
|
@@ -9543,9 +9289,8 @@ var require_scope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
9543
9289
|
__exportStar(require_TypeScope(), exports);
|
|
9544
9290
|
__exportStar(require_WithScope(), exports);
|
|
9545
9291
|
}));
|
|
9546
|
-
|
|
9547
9292
|
//#endregion
|
|
9548
|
-
//#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
|
|
9549
9294
|
var require_VisitorBase = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
9550
9295
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9551
9296
|
exports.VisitorBase = void 0;
|
|
@@ -9596,9 +9341,8 @@ var require_VisitorBase = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
9596
9341
|
};
|
|
9597
9342
|
exports.VisitorBase = VisitorBase;
|
|
9598
9343
|
}));
|
|
9599
|
-
|
|
9600
9344
|
//#endregion
|
|
9601
|
-
//#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
|
|
9602
9346
|
var require_PatternVisitor = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
9603
9347
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9604
9348
|
exports.PatternVisitor = void 0;
|
|
@@ -9672,15 +9416,14 @@ var require_PatternVisitor = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
9672
9416
|
};
|
|
9673
9417
|
exports.PatternVisitor = PatternVisitor;
|
|
9674
9418
|
}));
|
|
9675
|
-
|
|
9676
9419
|
//#endregion
|
|
9677
|
-
//#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
|
|
9678
9421
|
var require_Visitor = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
9679
9422
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9680
9423
|
exports.VisitorBase = exports.Visitor = void 0;
|
|
9681
9424
|
const PatternVisitor_1 = require_PatternVisitor();
|
|
9682
9425
|
const VisitorBase_1 = require_VisitorBase();
|
|
9683
|
-
|
|
9426
|
+
exports.Visitor = class Visitor extends VisitorBase_1.VisitorBase {
|
|
9684
9427
|
#options;
|
|
9685
9428
|
constructor(optionsOrVisitor) {
|
|
9686
9429
|
super(optionsOrVisitor instanceof Visitor ? optionsOrVisitor.#options : optionsOrVisitor);
|
|
@@ -9692,7 +9435,6 @@ var require_Visitor = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
9692
9435
|
if (options.processRightHandNodes) visitor.rightHandNodes.forEach(this.visit, this);
|
|
9693
9436
|
}
|
|
9694
9437
|
};
|
|
9695
|
-
exports.Visitor = Visitor;
|
|
9696
9438
|
var VisitorBase_2 = require_VisitorBase();
|
|
9697
9439
|
Object.defineProperty(exports, "VisitorBase", {
|
|
9698
9440
|
enumerable: true,
|
|
@@ -9701,9 +9443,8 @@ var require_Visitor = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
9701
9443
|
}
|
|
9702
9444
|
});
|
|
9703
9445
|
}));
|
|
9704
|
-
|
|
9705
9446
|
//#endregion
|
|
9706
|
-
//#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
|
|
9707
9448
|
var require_TypeVisitor = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
9708
9449
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9709
9450
|
exports.TypeVisitor = void 0;
|
|
@@ -9711,7 +9452,7 @@ var require_TypeVisitor = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
9711
9452
|
const definition_1 = require_definition();
|
|
9712
9453
|
const scope_1 = require_scope();
|
|
9713
9454
|
const Visitor_1 = require_Visitor();
|
|
9714
|
-
|
|
9455
|
+
exports.TypeVisitor = class TypeVisitor extends Visitor_1.Visitor {
|
|
9715
9456
|
#referencer;
|
|
9716
9457
|
constructor(referencer) {
|
|
9717
9458
|
super(referencer);
|
|
@@ -9859,11 +9600,9 @@ var require_TypeVisitor = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
9859
9600
|
this.visit(node.typeArguments);
|
|
9860
9601
|
}
|
|
9861
9602
|
};
|
|
9862
|
-
exports.TypeVisitor = TypeVisitor;
|
|
9863
9603
|
}));
|
|
9864
|
-
|
|
9865
9604
|
//#endregion
|
|
9866
|
-
//#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
|
|
9867
9606
|
var require_ClassVisitor = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
9868
9607
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9869
9608
|
exports.ClassVisitor = void 0;
|
|
@@ -9871,7 +9610,7 @@ var require_ClassVisitor = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
9871
9610
|
const definition_1 = require_definition();
|
|
9872
9611
|
const TypeVisitor_1 = require_TypeVisitor();
|
|
9873
9612
|
const Visitor_1 = require_Visitor();
|
|
9874
|
-
|
|
9613
|
+
exports.ClassVisitor = class ClassVisitor extends Visitor_1.Visitor {
|
|
9875
9614
|
#referencer;
|
|
9876
9615
|
constructor(referencer) {
|
|
9877
9616
|
super(referencer);
|
|
@@ -9988,17 +9727,15 @@ var require_ClassVisitor = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
9988
9727
|
this.visitType(node);
|
|
9989
9728
|
}
|
|
9990
9729
|
};
|
|
9991
|
-
exports.ClassVisitor = ClassVisitor;
|
|
9992
9730
|
}));
|
|
9993
|
-
|
|
9994
9731
|
//#endregion
|
|
9995
|
-
//#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
|
|
9996
9733
|
var require_ExportVisitor = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
9997
9734
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9998
9735
|
exports.ExportVisitor = void 0;
|
|
9999
9736
|
const types_1 = require_dist$3();
|
|
10000
9737
|
const Visitor_1 = require_Visitor();
|
|
10001
|
-
|
|
9738
|
+
exports.ExportVisitor = class ExportVisitor extends Visitor_1.Visitor {
|
|
10002
9739
|
#exportNode;
|
|
10003
9740
|
#referencer;
|
|
10004
9741
|
constructor(node, referencer) {
|
|
@@ -10025,17 +9762,15 @@ var require_ExportVisitor = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
10025
9762
|
else this.#referencer.currentScope().referenceDualValueType(node);
|
|
10026
9763
|
}
|
|
10027
9764
|
};
|
|
10028
|
-
exports.ExportVisitor = ExportVisitor;
|
|
10029
9765
|
}));
|
|
10030
|
-
|
|
10031
9766
|
//#endregion
|
|
10032
|
-
//#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
|
|
10033
9768
|
var require_ImportVisitor = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
10034
9769
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10035
9770
|
exports.ImportVisitor = void 0;
|
|
10036
9771
|
const definition_1 = require_definition();
|
|
10037
9772
|
const Visitor_1 = require_Visitor();
|
|
10038
|
-
|
|
9773
|
+
exports.ImportVisitor = class ImportVisitor extends Visitor_1.Visitor {
|
|
10039
9774
|
#declaration;
|
|
10040
9775
|
#referencer;
|
|
10041
9776
|
constructor(declaration, referencer) {
|
|
@@ -10062,11 +9797,9 @@ var require_ImportVisitor = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
10062
9797
|
this.#referencer.currentScope().defineIdentifier(id, new definition_1.ImportBindingDefinition(id, specifier, this.#declaration));
|
|
10063
9798
|
}
|
|
10064
9799
|
};
|
|
10065
|
-
exports.ImportVisitor = ImportVisitor;
|
|
10066
9800
|
}));
|
|
10067
|
-
|
|
10068
9801
|
//#endregion
|
|
10069
|
-
//#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
|
|
10070
9803
|
var require_Referencer = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
10071
9804
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10072
9805
|
exports.Referencer = void 0;
|
|
@@ -10104,7 +9837,7 @@ var require_Referencer = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
10104
9837
|
}
|
|
10105
9838
|
for (const lib of flattenedLibs) {
|
|
10106
9839
|
for (const referencedLib of lib.libs) flattenedLibs.add(referencedLib);
|
|
10107
|
-
for (const [name
|
|
9840
|
+
for (const [name, variable] of lib.variables) globalScope.defineImplicitVariable(name, variable);
|
|
10108
9841
|
}
|
|
10109
9842
|
globalScope.defineImplicitVariable("const", {
|
|
10110
9843
|
eslintImplicitGlobalSetting: "readonly",
|
|
@@ -10127,10 +9860,10 @@ var require_Referencer = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
10127
9860
|
/**
|
|
10128
9861
|
* Searches for a variable named "name" in the upper scopes and adds a pseudo-reference from itself to itself
|
|
10129
9862
|
*/
|
|
10130
|
-
referenceInSomeUpperScope(name
|
|
9863
|
+
referenceInSomeUpperScope(name) {
|
|
10131
9864
|
let scope = this.scopeManager.currentScope;
|
|
10132
9865
|
while (scope) {
|
|
10133
|
-
const variable = scope.set.get(name
|
|
9866
|
+
const variable = scope.set.get(name);
|
|
10134
9867
|
if (!variable) {
|
|
10135
9868
|
scope = scope.upper;
|
|
10136
9869
|
continue;
|
|
@@ -10374,8 +10107,8 @@ var require_Referencer = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
10374
10107
|
this.scopeManager.nestTSEnumScope(node);
|
|
10375
10108
|
for (const member of node.body.members) {
|
|
10376
10109
|
if (member.id.type === types_1.AST_NODE_TYPES.Literal && typeof member.id.value === "string") {
|
|
10377
|
-
const name
|
|
10378
|
-
this.currentScope().defineLiteralIdentifier(name
|
|
10110
|
+
const name = member.id;
|
|
10111
|
+
this.currentScope().defineLiteralIdentifier(name, new definition_1.TSEnumMemberDefinition(name, member));
|
|
10379
10112
|
} else if (member.id.type === types_1.AST_NODE_TYPES.Identifier) this.currentScope().defineIdentifier(member.id, new definition_1.TSEnumMemberDefinition(member.id, member));
|
|
10380
10113
|
this.visit(member.initializer);
|
|
10381
10114
|
}
|
|
@@ -10452,9 +10185,8 @@ var require_Referencer = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
10452
10185
|
};
|
|
10453
10186
|
exports.Referencer = Referencer;
|
|
10454
10187
|
}));
|
|
10455
|
-
|
|
10456
10188
|
//#endregion
|
|
10457
|
-
//#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
|
|
10458
10190
|
var require_referencer = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
10459
10191
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10460
10192
|
exports.Referencer = void 0;
|
|
@@ -10466,9 +10198,8 @@ var require_referencer = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
10466
10198
|
}
|
|
10467
10199
|
});
|
|
10468
10200
|
}));
|
|
10469
|
-
|
|
10470
10201
|
//#endregion
|
|
10471
|
-
//#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
|
|
10472
10203
|
var require_ClassStaticBlockScope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
10473
10204
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10474
10205
|
exports.ClassStaticBlockScope = void 0;
|
|
@@ -10481,9 +10212,8 @@ var require_ClassStaticBlockScope = /* @__PURE__ */ __commonJSMin(((exports) =>
|
|
|
10481
10212
|
};
|
|
10482
10213
|
exports.ClassStaticBlockScope = ClassStaticBlockScope;
|
|
10483
10214
|
}));
|
|
10484
|
-
|
|
10485
10215
|
//#endregion
|
|
10486
|
-
//#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
|
|
10487
10217
|
var require_ScopeManager = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
10488
10218
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10489
10219
|
exports.ScopeManager = void 0;
|
|
@@ -10663,9 +10393,8 @@ var require_ScopeManager = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
10663
10393
|
};
|
|
10664
10394
|
exports.ScopeManager = ScopeManager;
|
|
10665
10395
|
}));
|
|
10666
|
-
|
|
10667
10396
|
//#endregion
|
|
10668
|
-
//#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
|
|
10669
10398
|
var require_analyze = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
10670
10399
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10671
10400
|
exports.analyze = analyze;
|
|
@@ -10702,9 +10431,8 @@ var require_analyze = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
10702
10431
|
return scopeManager;
|
|
10703
10432
|
}
|
|
10704
10433
|
}));
|
|
10705
|
-
|
|
10706
10434
|
//#endregion
|
|
10707
|
-
//#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
|
|
10708
10436
|
var require_dist$1 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
10709
10437
|
var __createBinding = exports && exports.__createBinding || (Object.create ? (function(o, m, k, k2) {
|
|
10710
10438
|
if (k2 === void 0) k2 = k;
|
|
@@ -10720,8 +10448,8 @@ var require_dist$1 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
10720
10448
|
if (k2 === void 0) k2 = k;
|
|
10721
10449
|
o[k2] = m[k];
|
|
10722
10450
|
}));
|
|
10723
|
-
var __exportStar = exports && exports.__exportStar || function(m, exports$
|
|
10724
|
-
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);
|
|
10725
10453
|
};
|
|
10726
10454
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10727
10455
|
exports.ScopeManager = exports.Visitor = exports.Reference = exports.PatternVisitor = exports.analyze = void 0;
|
|
@@ -10764,9 +10492,8 @@ var require_dist$1 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
10764
10492
|
});
|
|
10765
10493
|
__exportStar(require_variable(), exports);
|
|
10766
10494
|
}));
|
|
10767
|
-
|
|
10768
10495
|
//#endregion
|
|
10769
|
-
//#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
|
|
10770
10497
|
var require_Scope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
10771
10498
|
var __createBinding = exports && exports.__createBinding || (Object.create ? (function(o, m, k, k2) {
|
|
10772
10499
|
if (k2 === void 0) k2 = k;
|
|
@@ -10792,9 +10519,9 @@ var require_Scope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
10792
10519
|
});
|
|
10793
10520
|
var __importStar = exports && exports.__importStar || (function() {
|
|
10794
10521
|
var ownKeys = function(o) {
|
|
10795
|
-
ownKeys = Object.getOwnPropertyNames || function(o
|
|
10522
|
+
ownKeys = Object.getOwnPropertyNames || function(o) {
|
|
10796
10523
|
var ar = [];
|
|
10797
|
-
for (var k in o
|
|
10524
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
10798
10525
|
return ar;
|
|
10799
10526
|
};
|
|
10800
10527
|
return ownKeys(o);
|
|
@@ -10818,9 +10545,8 @@ var require_Scope = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
10818
10545
|
Scope.DefinitionType = scopeManager.DefinitionType;
|
|
10819
10546
|
})(Scope || (exports.Scope = Scope = {}));
|
|
10820
10547
|
}));
|
|
10821
|
-
|
|
10822
10548
|
//#endregion
|
|
10823
|
-
//#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
|
|
10824
10550
|
var require_SourceCode = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
10825
10551
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10826
10552
|
exports.SourceCode = void 0;
|
|
@@ -10828,9 +10554,8 @@ var require_SourceCode = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
10828
10554
|
var SourceCode = class extends eslint_1.SourceCode {};
|
|
10829
10555
|
exports.SourceCode = SourceCode;
|
|
10830
10556
|
}));
|
|
10831
|
-
|
|
10832
10557
|
//#endregion
|
|
10833
|
-
//#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
|
|
10834
10559
|
var require_ts_eslint = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
10835
10560
|
var __createBinding = exports && exports.__createBinding || (Object.create ? (function(o, m, k, k2) {
|
|
10836
10561
|
if (k2 === void 0) k2 = k;
|
|
@@ -10846,8 +10571,8 @@ var require_ts_eslint = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
10846
10571
|
if (k2 === void 0) k2 = k;
|
|
10847
10572
|
o[k2] = m[k];
|
|
10848
10573
|
}));
|
|
10849
|
-
var __exportStar = exports && exports.__exportStar || function(m, exports$
|
|
10850
|
-
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);
|
|
10851
10576
|
};
|
|
10852
10577
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10853
10578
|
__exportStar(require_AST(), exports);
|
|
@@ -10862,9 +10587,8 @@ var require_ts_eslint = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
10862
10587
|
__exportStar(require_Scope(), exports);
|
|
10863
10588
|
__exportStar(require_SourceCode(), exports);
|
|
10864
10589
|
}));
|
|
10865
|
-
|
|
10866
10590
|
//#endregion
|
|
10867
|
-
//#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
|
|
10868
10592
|
var require_isArray = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
10869
10593
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10870
10594
|
exports.isArray = isArray;
|
|
@@ -10872,15 +10596,13 @@ var require_isArray = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
10872
10596
|
return Array.isArray(arg);
|
|
10873
10597
|
}
|
|
10874
10598
|
}));
|
|
10875
|
-
|
|
10876
10599
|
//#endregion
|
|
10877
|
-
//#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
|
|
10878
10601
|
var require_NoInfer = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
10879
10602
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10880
10603
|
}));
|
|
10881
|
-
|
|
10882
10604
|
//#endregion
|
|
10883
|
-
//#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
|
|
10884
10606
|
var require_ts_utils = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
10885
10607
|
var __createBinding = exports && exports.__createBinding || (Object.create ? (function(o, m, k, k2) {
|
|
10886
10608
|
if (k2 === void 0) k2 = k;
|
|
@@ -10896,17 +10618,16 @@ var require_ts_utils = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
10896
10618
|
if (k2 === void 0) k2 = k;
|
|
10897
10619
|
o[k2] = m[k];
|
|
10898
10620
|
}));
|
|
10899
|
-
var __exportStar = exports && exports.__exportStar || function(m, exports$
|
|
10900
|
-
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);
|
|
10901
10623
|
};
|
|
10902
10624
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10903
10625
|
__exportStar(require_isArray(), exports);
|
|
10904
10626
|
__exportStar(require_NoInfer(), exports);
|
|
10905
10627
|
}));
|
|
10906
|
-
|
|
10907
10628
|
//#endregion
|
|
10908
|
-
//#region node_modules/.pnpm
|
|
10909
|
-
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) => {
|
|
10910
10631
|
var __createBinding = exports && exports.__createBinding || (Object.create ? (function(o, m, k, k2) {
|
|
10911
10632
|
if (k2 === void 0) k2 = k;
|
|
10912
10633
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
@@ -10931,9 +10652,9 @@ var require_dist = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
10931
10652
|
});
|
|
10932
10653
|
var __importStar = exports && exports.__importStar || (function() {
|
|
10933
10654
|
var ownKeys = function(o) {
|
|
10934
|
-
ownKeys = Object.getOwnPropertyNames || function(o
|
|
10655
|
+
ownKeys = Object.getOwnPropertyNames || function(o) {
|
|
10935
10656
|
var ar = [];
|
|
10936
|
-
for (var k in o
|
|
10657
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
10937
10658
|
return ar;
|
|
10938
10659
|
};
|
|
10939
10660
|
return ownKeys(o);
|
|
@@ -10959,19 +10680,14 @@ var require_dist = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
10959
10680
|
exports.TSESLint = __importStar(require_ts_eslint());
|
|
10960
10681
|
__exportStar(require_ts_estree(), exports);
|
|
10961
10682
|
exports.TSUtils = __importStar(require_ts_utils());
|
|
10962
|
-
}));
|
|
10963
|
-
|
|
10964
|
-
//#endregion
|
|
10965
|
-
//#region node_modules/.pnpm/eslint-plugin-erasable-syntax-only@0.4.0_@typescript-eslint+parser@8.56.1_eslint@10.0.2_fbd109dbd9c20ecdbcc241e0b04a738d/node_modules/eslint-plugin-erasable-syntax-only/lib/utils.js
|
|
10966
|
-
var import_dist = require_dist();
|
|
10967
|
-
const createRule = import_dist.ESLintUtils.RuleCreator((name$1) => `https://github.com/JoshuaKGoldberg/eslint-plugin-erasable-syntax-only/blob/main/docs/rules/${name$1}.md`);
|
|
10968
|
-
|
|
10683
|
+
})))();
|
|
10684
|
+
const createRule = import_dist.ESLintUtils.RuleCreator((name) => `https://github.com/JoshuaKGoldberg/eslint-plugin-erasable-syntax-only/blob/main/docs/rules/${name}.md`);
|
|
10969
10685
|
//#endregion
|
|
10970
|
-
//#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
|
|
10971
10687
|
const rule$3 = createRule({
|
|
10972
10688
|
create(context) {
|
|
10973
10689
|
return { TSEnumDeclaration(node) {
|
|
10974
|
-
const name
|
|
10690
|
+
const name = node.id.name;
|
|
10975
10691
|
const isExported = node.parent.type === import_dist.AST_NODE_TYPES.ExportNamedDeclaration;
|
|
10976
10692
|
let canSuggestion = true;
|
|
10977
10693
|
const body = [];
|
|
@@ -11005,7 +10721,7 @@ const rule$3 = createRule({
|
|
|
11005
10721
|
fixer.insertTextAfter(node.body, " as const"),
|
|
11006
10722
|
fixer.insertTextAfter(node.parent.parent ?? node.parent, `
|
|
11007
10723
|
|
|
11008
|
-
${isExported ? "export " : ""}type ${name
|
|
10724
|
+
${isExported ? "export " : ""}type ${name} = typeof ${name}[keyof typeof ${name}]`)
|
|
11009
10725
|
];
|
|
11010
10726
|
},
|
|
11011
10727
|
messageId: "enumFix"
|
|
@@ -11026,9 +10742,8 @@ ${isExported ? "export " : ""}type ${name$1} = typeof ${name$1}[keyof typeof ${n
|
|
|
11026
10742
|
},
|
|
11027
10743
|
name: "enums"
|
|
11028
10744
|
});
|
|
11029
|
-
|
|
11030
10745
|
//#endregion
|
|
11031
|
-
//#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
|
|
11032
10747
|
const rule$2 = createRule({
|
|
11033
10748
|
create(context) {
|
|
11034
10749
|
return { TSImportEqualsDeclaration(node) {
|
|
@@ -11067,7 +10782,6 @@ const rule$2 = createRule({
|
|
|
11067
10782
|
},
|
|
11068
10783
|
name: "import-aliases"
|
|
11069
10784
|
});
|
|
11070
|
-
|
|
11071
10785
|
//#endregion
|
|
11072
10786
|
//#region node_modules/.pnpm/cached-factory@0.1.0/node_modules/cached-factory/lib/index.js
|
|
11073
10787
|
var CachedFactory = class {
|
|
@@ -11090,9 +10804,8 @@ var CachedFactory = class {
|
|
|
11090
10804
|
return value;
|
|
11091
10805
|
}
|
|
11092
10806
|
};
|
|
11093
|
-
|
|
11094
10807
|
//#endregion
|
|
11095
|
-
//#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
|
|
11096
10809
|
function skipExportParent(node) {
|
|
11097
10810
|
return node.parent.type == import_dist.AST_NODE_TYPES.ExportNamedDeclaration ? node.parent : node;
|
|
11098
10811
|
}
|
|
@@ -11127,9 +10840,8 @@ const rule$1 = createRule({
|
|
|
11127
10840
|
},
|
|
11128
10841
|
name: "namespaces"
|
|
11129
10842
|
});
|
|
11130
|
-
|
|
11131
10843
|
//#endregion
|
|
11132
|
-
//#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
|
|
11133
10845
|
const rule = createRule({
|
|
11134
10846
|
create(context) {
|
|
11135
10847
|
return { TSParameterProperty(node) {
|
|
@@ -11148,18 +10860,16 @@ const rule = createRule({
|
|
|
11148
10860
|
},
|
|
11149
10861
|
name: "parameter-properties"
|
|
11150
10862
|
});
|
|
11151
|
-
|
|
11152
10863
|
//#endregion
|
|
11153
|
-
//#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
|
|
11154
10865
|
const rules = {
|
|
11155
10866
|
enums: rule$3,
|
|
11156
10867
|
"import-aliases": rule$2,
|
|
11157
10868
|
namespaces: rule$1,
|
|
11158
10869
|
"parameter-properties": rule
|
|
11159
10870
|
};
|
|
11160
|
-
|
|
11161
10871
|
//#endregion
|
|
11162
|
-
//#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
|
|
11163
10873
|
const { name, version } = Module.createRequire(import.meta.url)("../package.json");
|
|
11164
10874
|
const plugin = {
|
|
11165
10875
|
configs: { get recommended() {
|
|
@@ -11173,9 +10883,8 @@ const plugin = {
|
|
|
11173
10883
|
};
|
|
11174
10884
|
const recommended = {
|
|
11175
10885
|
plugins: { "erasable-syntax-only": plugin },
|
|
11176
|
-
rules: Object.fromEntries(Object.keys(rules).map((rule
|
|
10886
|
+
rules: Object.fromEntries(Object.keys(rules).map((rule) => [`erasable-syntax-only/${rule}`, "error"]))
|
|
11177
10887
|
};
|
|
11178
10888
|
var index_default = plugin;
|
|
11179
|
-
|
|
11180
10889
|
//#endregion
|
|
11181
|
-
export { index_default as default, plugin, rules };
|
|
10890
|
+
export { index_default as default, plugin, rules };
|