@w5s/eslint-config 2.4.5 → 3.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (91) hide show
  1. package/dist/index.cjs +4199 -0
  2. package/dist/index.cjs.map +1 -0
  3. package/dist/index.d.cts +8054 -0
  4. package/dist/index.d.ts +8054 -3
  5. package/dist/index.js +4171 -22
  6. package/dist/index.js.map +1 -0
  7. package/package.json +25 -16
  8. package/src/config/createRules.ts +5 -0
  9. package/src/config/es.ts +58 -0
  10. package/src/config/ignores.ts +84 -0
  11. package/src/config/imports.ts +32 -0
  12. package/src/config/jsdoc.ts +53 -0
  13. package/src/config/jsonc.ts +237 -0
  14. package/src/config/node.ts +42 -0
  15. package/src/config/stylistic.ts +50 -0
  16. package/src/config/test.ts +44 -0
  17. package/src/config/ts.ts +97 -0
  18. package/src/config/unicorn.ts +68 -0
  19. package/src/config/yml.ts +70 -0
  20. package/src/config.ts +11 -0
  21. package/src/defineConfig.ts +62 -0
  22. package/src/index.ts +3 -31
  23. package/src/type/Config.ts +5 -0
  24. package/src/type/PluginOptionsBase.ts +14 -0
  25. package/src/type/StylisticConfig.ts +39 -0
  26. package/src/type.ts +3 -0
  27. package/src/typegen/.keep +0 -0
  28. package/src/typegen/import.d.ts +501 -0
  29. package/src/typegen/jsdoc.d.ts +1155 -0
  30. package/src/typegen/jsonc.d.ts +500 -0
  31. package/src/typegen/node.d.ts +529 -0
  32. package/src/typegen/style.d.ts +1637 -0
  33. package/src/typegen/test.d.ts +430 -0
  34. package/src/typegen/ts.d.ts +1872 -0
  35. package/src/typegen/unicorn.d.ts +913 -0
  36. package/src/typegen/yml.d.ts +363 -0
  37. package/dist/es.d.ts +0 -3
  38. package/dist/es.js +0 -10
  39. package/dist/jest.d.ts +0 -3
  40. package/dist/jest.js +0 -20
  41. package/dist/json.d.ts +0 -3
  42. package/dist/json.js +0 -14
  43. package/dist/rules/es/base.d.ts +0 -4
  44. package/dist/rules/es/base.js +0 -71
  45. package/dist/rules/es/import.d.ts +0 -3
  46. package/dist/rules/es/import.js +0 -74
  47. package/dist/rules/es/jsdoc.d.ts +0 -3
  48. package/dist/rules/es/jsdoc.js +0 -21
  49. package/dist/rules/es/node.d.ts +0 -3
  50. package/dist/rules/es/node.js +0 -20
  51. package/dist/rules/es/promise.d.ts +0 -3
  52. package/dist/rules/es/promise.js +0 -11
  53. package/dist/rules/es/unicorn.d.ts +0 -3
  54. package/dist/rules/es/unicorn.js +0 -72
  55. package/dist/rules/es.d.ts +0 -3
  56. package/dist/rules/es.js +0 -14
  57. package/dist/rules/ignore.d.ts +0 -3
  58. package/dist/rules/ignore.js +0 -54
  59. package/dist/rules/jest.d.ts +0 -3
  60. package/dist/rules/jest.js +0 -64
  61. package/dist/rules/jsonc.d.ts +0 -3
  62. package/dist/rules/jsonc.js +0 -183
  63. package/dist/rules/prettier.d.ts +0 -3
  64. package/dist/rules/prettier.js +0 -13
  65. package/dist/rules/typescript.d.ts +0 -3
  66. package/dist/rules/typescript.js +0 -249
  67. package/dist/rules/yml.d.ts +0 -3
  68. package/dist/rules/yml.js +0 -21
  69. package/dist/tsconfig.build.tsbuildinfo +0 -1
  70. package/dist/typescript.d.ts +0 -3
  71. package/dist/typescript.js +0 -21
  72. package/dist/yml.d.ts +0 -3
  73. package/dist/yml.js +0 -19
  74. package/src/es.ts +0 -12
  75. package/src/jest.ts +0 -18
  76. package/src/json.ts +0 -12
  77. package/src/rules/es/base.ts +0 -83
  78. package/src/rules/es/import.ts +0 -81
  79. package/src/rules/es/jsdoc.ts +0 -23
  80. package/src/rules/es/node.ts +0 -21
  81. package/src/rules/es/promise.ts +0 -12
  82. package/src/rules/es/unicorn.ts +0 -74
  83. package/src/rules/es.ts +0 -21
  84. package/src/rules/ignore.ts +0 -54
  85. package/src/rules/jest.ts +0 -68
  86. package/src/rules/jsonc.ts +0 -187
  87. package/src/rules/prettier.ts +0 -11
  88. package/src/rules/typescript.ts +0 -255
  89. package/src/rules/yml.ts +0 -22
  90. package/src/typescript.ts +0 -24
  91. package/src/yml.ts +0 -18
package/dist/index.js CHANGED
@@ -1,24 +1,4173 @@
1
- "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
1
+ import { Project, interopDefault, ESLintConfig } from '@w5s/dev';
2
+ import fs from 'fs';
3
+ import nodePath from 'path';
4
+ import process from 'process';
5
+ import findUp from 'find-up';
6
+ import parseGitignore from 'parse-gitignore';
7
+ import prettierConfig from '@w5s/prettier-config';
8
+ import importPlugin from 'eslint-plugin-import';
9
+
10
+ var __create = Object.create;
11
+ var __defProp = Object.defineProperty;
12
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
13
+ var __getOwnPropNames = Object.getOwnPropertyNames;
14
+ var __getProtoOf = Object.getPrototypeOf;
15
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
16
+ var __commonJS = (cb, mod) => function __require() {
17
+ return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
4
18
  };
5
- const dev_1 = require("@w5s/dev");
6
- const ignore_js_1 = __importDefault(require("./rules/ignore.js"));
7
- const es_js_1 = __importDefault(require("./es.js"));
8
- const typescript_js_1 = __importDefault(require("./typescript.js"));
9
- const jest_js_1 = __importDefault(require("./jest.js"));
10
- const json_js_1 = __importDefault(require("./json.js"));
11
- const yml_js_1 = __importDefault(require("./yml.js"));
12
- function tryResolve(name) {
13
- try {
14
- require.resolve(name);
15
- return true;
16
- }
17
- catch {
18
- return false;
19
- }
20
- }
21
- const config = dev_1.ESLintConfig.concat(ignore_js_1.default, es_js_1.default, tryResolve('typescript') ? typescript_js_1.default : {}, jest_js_1.default, json_js_1.default, yml_js_1.default, {
22
- root: true,
19
+ var __copyProps = (to, from, except, desc) => {
20
+ if (from && typeof from === "object" || typeof from === "function") {
21
+ for (let key of __getOwnPropNames(from))
22
+ if (!__hasOwnProp.call(to, key) && key !== except)
23
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
24
+ }
25
+ return to;
26
+ };
27
+ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
28
+ // If the importer is in node compatibility mode or this is not an ESM
29
+ // file that has been converted to a CommonJS file using a Babel-
30
+ // compatible transform (i.e. "__esModule" has not been set), then set
31
+ // "default" to the CommonJS "module.exports" for node compatibility.
32
+ __defProp(target, "default", { value: mod, enumerable: true }) ,
33
+ mod
34
+ ));
35
+
36
+ // ../../node_modules/globals/globals.json
37
+ var require_globals = __commonJS({
38
+ "../../node_modules/globals/globals.json"(exports, module) {
39
+ module.exports = {
40
+ amd: {
41
+ define: false,
42
+ require: false
43
+ },
44
+ applescript: {
45
+ $: false,
46
+ Application: false,
47
+ Automation: false,
48
+ console: false,
49
+ delay: false,
50
+ Library: false,
51
+ ObjC: false,
52
+ ObjectSpecifier: false,
53
+ Path: false,
54
+ Progress: false,
55
+ Ref: false
56
+ },
57
+ atomtest: {
58
+ advanceClock: false,
59
+ atom: false,
60
+ fakeClearInterval: false,
61
+ fakeClearTimeout: false,
62
+ fakeSetInterval: false,
63
+ fakeSetTimeout: false,
64
+ resetTimeouts: false,
65
+ waitsForPromise: false
66
+ },
67
+ browser: {
68
+ AbortController: false,
69
+ AbortSignal: false,
70
+ AbsoluteOrientationSensor: false,
71
+ AbstractRange: false,
72
+ Accelerometer: false,
73
+ addEventListener: false,
74
+ ai: false,
75
+ AI: false,
76
+ AITextSession: false,
77
+ alert: false,
78
+ AnalyserNode: false,
79
+ Animation: false,
80
+ AnimationEffect: false,
81
+ AnimationEvent: false,
82
+ AnimationPlaybackEvent: false,
83
+ AnimationTimeline: false,
84
+ atob: false,
85
+ Attr: false,
86
+ Audio: false,
87
+ AudioBuffer: false,
88
+ AudioBufferSourceNode: false,
89
+ AudioContext: false,
90
+ AudioData: false,
91
+ AudioDecoder: false,
92
+ AudioDestinationNode: false,
93
+ AudioEncoder: false,
94
+ AudioListener: false,
95
+ AudioNode: false,
96
+ AudioParam: false,
97
+ AudioParamMap: false,
98
+ AudioProcessingEvent: false,
99
+ AudioScheduledSourceNode: false,
100
+ AudioSinkInfo: false,
101
+ AudioWorklet: false,
102
+ AudioWorkletGlobalScope: false,
103
+ AudioWorkletNode: false,
104
+ AudioWorkletProcessor: false,
105
+ AuthenticatorAssertionResponse: false,
106
+ AuthenticatorAttestationResponse: false,
107
+ AuthenticatorResponse: false,
108
+ BackgroundFetchManager: false,
109
+ BackgroundFetchRecord: false,
110
+ BackgroundFetchRegistration: false,
111
+ BarcodeDetector: false,
112
+ BarProp: false,
113
+ BaseAudioContext: false,
114
+ BatteryManager: false,
115
+ BeforeUnloadEvent: false,
116
+ BiquadFilterNode: false,
117
+ Blob: false,
118
+ BlobEvent: false,
119
+ Bluetooth: false,
120
+ BluetoothCharacteristicProperties: false,
121
+ BluetoothDevice: false,
122
+ BluetoothRemoteGATTCharacteristic: false,
123
+ BluetoothRemoteGATTDescriptor: false,
124
+ BluetoothRemoteGATTServer: false,
125
+ BluetoothRemoteGATTService: false,
126
+ BluetoothUUID: false,
127
+ blur: false,
128
+ BroadcastChannel: false,
129
+ BrowserCaptureMediaStreamTrack: false,
130
+ btoa: false,
131
+ ByteLengthQueuingStrategy: false,
132
+ Cache: false,
133
+ caches: false,
134
+ CacheStorage: false,
135
+ cancelAnimationFrame: false,
136
+ cancelIdleCallback: false,
137
+ CanvasCaptureMediaStream: false,
138
+ CanvasCaptureMediaStreamTrack: false,
139
+ CanvasGradient: false,
140
+ CanvasPattern: false,
141
+ CanvasRenderingContext2D: false,
142
+ CaptureController: false,
143
+ CaretPosition: false,
144
+ CDATASection: false,
145
+ ChannelMergerNode: false,
146
+ ChannelSplitterNode: false,
147
+ ChapterInformation: false,
148
+ CharacterBoundsUpdateEvent: false,
149
+ CharacterData: false,
150
+ clearInterval: false,
151
+ clearTimeout: false,
152
+ clientInformation: false,
153
+ Clipboard: false,
154
+ ClipboardEvent: false,
155
+ ClipboardItem: false,
156
+ close: false,
157
+ closed: false,
158
+ CloseEvent: false,
159
+ CloseWatcher: false,
160
+ Comment: false,
161
+ CompositionEvent: false,
162
+ CompressionStream: false,
163
+ confirm: false,
164
+ console: false,
165
+ ConstantSourceNode: false,
166
+ ContentVisibilityAutoStateChangeEvent: false,
167
+ ConvolverNode: false,
168
+ CookieChangeEvent: false,
169
+ CookieDeprecationLabel: false,
170
+ cookieStore: false,
171
+ CookieStore: false,
172
+ CookieStoreManager: false,
173
+ CountQueuingStrategy: false,
174
+ createImageBitmap: false,
175
+ Credential: false,
176
+ credentialless: false,
177
+ CredentialsContainer: false,
178
+ CropTarget: false,
179
+ crossOriginIsolated: false,
180
+ crypto: false,
181
+ Crypto: false,
182
+ CryptoKey: false,
183
+ CSS: false,
184
+ CSSAnimation: false,
185
+ CSSConditionRule: false,
186
+ CSSContainerRule: false,
187
+ CSSCounterStyleRule: false,
188
+ CSSFontFaceRule: false,
189
+ CSSFontFeatureValuesRule: false,
190
+ CSSFontPaletteValuesRule: false,
191
+ CSSGroupingRule: false,
192
+ CSSImageValue: false,
193
+ CSSImportRule: false,
194
+ CSSKeyframeRule: false,
195
+ CSSKeyframesRule: false,
196
+ CSSKeywordValue: false,
197
+ CSSLayerBlockRule: false,
198
+ CSSLayerStatementRule: false,
199
+ CSSMarginRule: false,
200
+ CSSMathClamp: false,
201
+ CSSMathInvert: false,
202
+ CSSMathMax: false,
203
+ CSSMathMin: false,
204
+ CSSMathNegate: false,
205
+ CSSMathProduct: false,
206
+ CSSMathSum: false,
207
+ CSSMathValue: false,
208
+ CSSMatrixComponent: false,
209
+ CSSMediaRule: false,
210
+ CSSNamespaceRule: false,
211
+ CSSNestedDeclarations: false,
212
+ CSSNumericArray: false,
213
+ CSSNumericValue: false,
214
+ CSSPageDescriptors: false,
215
+ CSSPageRule: false,
216
+ CSSPerspective: false,
217
+ CSSPositionTryDescriptors: false,
218
+ CSSPositionTryRule: false,
219
+ CSSPositionValue: false,
220
+ CSSPropertyRule: false,
221
+ CSSRotate: false,
222
+ CSSRule: false,
223
+ CSSRuleList: false,
224
+ CSSScale: false,
225
+ CSSScopeRule: false,
226
+ CSSSkew: false,
227
+ CSSSkewX: false,
228
+ CSSSkewY: false,
229
+ CSSStartingStyleRule: false,
230
+ CSSStyleDeclaration: false,
231
+ CSSStyleRule: false,
232
+ CSSStyleSheet: false,
233
+ CSSStyleValue: false,
234
+ CSSSupportsRule: false,
235
+ CSSTransformComponent: false,
236
+ CSSTransformValue: false,
237
+ CSSTransition: false,
238
+ CSSTranslate: false,
239
+ CSSUnitValue: false,
240
+ CSSUnparsedValue: false,
241
+ CSSVariableReferenceValue: false,
242
+ CSSViewTransitionRule: false,
243
+ currentFrame: false,
244
+ currentTime: false,
245
+ CustomElementRegistry: false,
246
+ customElements: false,
247
+ CustomEvent: false,
248
+ CustomStateSet: false,
249
+ DataTransfer: false,
250
+ DataTransferItem: false,
251
+ DataTransferItemList: false,
252
+ DecompressionStream: false,
253
+ DelayNode: false,
254
+ DelegatedInkTrailPresenter: false,
255
+ DeviceMotionEvent: false,
256
+ DeviceMotionEventAcceleration: false,
257
+ DeviceMotionEventRotationRate: false,
258
+ DeviceOrientationEvent: false,
259
+ devicePixelRatio: false,
260
+ dispatchEvent: false,
261
+ document: false,
262
+ Document: false,
263
+ DocumentFragment: false,
264
+ documentPictureInPicture: false,
265
+ DocumentPictureInPicture: false,
266
+ DocumentPictureInPictureEvent: false,
267
+ DocumentTimeline: false,
268
+ DocumentType: false,
269
+ DOMError: false,
270
+ DOMException: false,
271
+ DOMImplementation: false,
272
+ DOMMatrix: false,
273
+ DOMMatrixReadOnly: false,
274
+ DOMParser: false,
275
+ DOMPoint: false,
276
+ DOMPointReadOnly: false,
277
+ DOMQuad: false,
278
+ DOMRect: false,
279
+ DOMRectList: false,
280
+ DOMRectReadOnly: false,
281
+ DOMStringList: false,
282
+ DOMStringMap: false,
283
+ DOMTokenList: false,
284
+ DragEvent: false,
285
+ DynamicsCompressorNode: false,
286
+ EditContext: false,
287
+ Element: false,
288
+ ElementInternals: false,
289
+ EncodedAudioChunk: false,
290
+ EncodedVideoChunk: false,
291
+ ErrorEvent: false,
292
+ event: false,
293
+ Event: false,
294
+ EventCounts: false,
295
+ EventSource: false,
296
+ EventTarget: false,
297
+ external: false,
298
+ External: false,
299
+ EyeDropper: false,
300
+ FeaturePolicy: false,
301
+ FederatedCredential: false,
302
+ fence: false,
303
+ Fence: false,
304
+ FencedFrameConfig: false,
305
+ fetch: false,
306
+ fetchLater: false,
307
+ FetchLaterResult: false,
308
+ File: false,
309
+ FileList: false,
310
+ FileReader: false,
311
+ FileSystem: false,
312
+ FileSystemDirectoryEntry: false,
313
+ FileSystemDirectoryHandle: false,
314
+ FileSystemDirectoryReader: false,
315
+ FileSystemEntry: false,
316
+ FileSystemFileEntry: false,
317
+ FileSystemFileHandle: false,
318
+ FileSystemHandle: false,
319
+ FileSystemWritableFileStream: false,
320
+ find: false,
321
+ Float16Array: false,
322
+ focus: false,
323
+ FocusEvent: false,
324
+ FontData: false,
325
+ FontFace: false,
326
+ FontFaceSet: false,
327
+ FontFaceSetLoadEvent: false,
328
+ FormData: false,
329
+ FormDataEvent: false,
330
+ FragmentDirective: false,
331
+ frameElement: false,
332
+ frames: false,
333
+ GainNode: false,
334
+ Gamepad: false,
335
+ GamepadAxisMoveEvent: false,
336
+ GamepadButton: false,
337
+ GamepadButtonEvent: false,
338
+ GamepadEvent: false,
339
+ GamepadHapticActuator: false,
340
+ GamepadPose: false,
341
+ Geolocation: false,
342
+ GeolocationCoordinates: false,
343
+ GeolocationPosition: false,
344
+ GeolocationPositionError: false,
345
+ getComputedStyle: false,
346
+ getScreenDetails: false,
347
+ getSelection: false,
348
+ GPU: false,
349
+ GPUAdapter: false,
350
+ GPUAdapterInfo: false,
351
+ GPUBindGroup: false,
352
+ GPUBindGroupLayout: false,
353
+ GPUBuffer: false,
354
+ GPUBufferUsage: false,
355
+ GPUCanvasContext: false,
356
+ GPUColorWrite: false,
357
+ GPUCommandBuffer: false,
358
+ GPUCommandEncoder: false,
359
+ GPUCompilationInfo: false,
360
+ GPUCompilationMessage: false,
361
+ GPUComputePassEncoder: false,
362
+ GPUComputePipeline: false,
363
+ GPUDevice: false,
364
+ GPUDeviceLostInfo: false,
365
+ GPUError: false,
366
+ GPUExternalTexture: false,
367
+ GPUInternalError: false,
368
+ GPUMapMode: false,
369
+ GPUOutOfMemoryError: false,
370
+ GPUPipelineError: false,
371
+ GPUPipelineLayout: false,
372
+ GPUQuerySet: false,
373
+ GPUQueue: false,
374
+ GPURenderBundle: false,
375
+ GPURenderBundleEncoder: false,
376
+ GPURenderPassEncoder: false,
377
+ GPURenderPipeline: false,
378
+ GPUSampler: false,
379
+ GPUShaderModule: false,
380
+ GPUShaderStage: false,
381
+ GPUSupportedFeatures: false,
382
+ GPUSupportedLimits: false,
383
+ GPUTexture: false,
384
+ GPUTextureUsage: false,
385
+ GPUTextureView: false,
386
+ GPUUncapturedErrorEvent: false,
387
+ GPUValidationError: false,
388
+ GravitySensor: false,
389
+ Gyroscope: false,
390
+ HashChangeEvent: false,
391
+ Headers: false,
392
+ HID: false,
393
+ HIDConnectionEvent: false,
394
+ HIDDevice: false,
395
+ HIDInputReportEvent: false,
396
+ Highlight: false,
397
+ HighlightRegistry: false,
398
+ history: false,
399
+ History: false,
400
+ HTMLAllCollection: false,
401
+ HTMLAnchorElement: false,
402
+ HTMLAreaElement: false,
403
+ HTMLAudioElement: false,
404
+ HTMLBaseElement: false,
405
+ HTMLBodyElement: false,
406
+ HTMLBRElement: false,
407
+ HTMLButtonElement: false,
408
+ HTMLCanvasElement: false,
409
+ HTMLCollection: false,
410
+ HTMLDataElement: false,
411
+ HTMLDataListElement: false,
412
+ HTMLDetailsElement: false,
413
+ HTMLDialogElement: false,
414
+ HTMLDirectoryElement: false,
415
+ HTMLDivElement: false,
416
+ HTMLDListElement: false,
417
+ HTMLDocument: false,
418
+ HTMLElement: false,
419
+ HTMLEmbedElement: false,
420
+ HTMLFencedFrameElement: false,
421
+ HTMLFieldSetElement: false,
422
+ HTMLFontElement: false,
423
+ HTMLFormControlsCollection: false,
424
+ HTMLFormElement: false,
425
+ HTMLFrameElement: false,
426
+ HTMLFrameSetElement: false,
427
+ HTMLHeadElement: false,
428
+ HTMLHeadingElement: false,
429
+ HTMLHRElement: false,
430
+ HTMLHtmlElement: false,
431
+ HTMLIFrameElement: false,
432
+ HTMLImageElement: false,
433
+ HTMLInputElement: false,
434
+ HTMLLabelElement: false,
435
+ HTMLLegendElement: false,
436
+ HTMLLIElement: false,
437
+ HTMLLinkElement: false,
438
+ HTMLMapElement: false,
439
+ HTMLMarqueeElement: false,
440
+ HTMLMediaElement: false,
441
+ HTMLMenuElement: false,
442
+ HTMLMetaElement: false,
443
+ HTMLMeterElement: false,
444
+ HTMLModElement: false,
445
+ HTMLObjectElement: false,
446
+ HTMLOListElement: false,
447
+ HTMLOptGroupElement: false,
448
+ HTMLOptionElement: false,
449
+ HTMLOptionsCollection: false,
450
+ HTMLOutputElement: false,
451
+ HTMLParagraphElement: false,
452
+ HTMLParamElement: false,
453
+ HTMLPictureElement: false,
454
+ HTMLPreElement: false,
455
+ HTMLProgressElement: false,
456
+ HTMLQuoteElement: false,
457
+ HTMLScriptElement: false,
458
+ HTMLSelectElement: false,
459
+ HTMLSlotElement: false,
460
+ HTMLSourceElement: false,
461
+ HTMLSpanElement: false,
462
+ HTMLStyleElement: false,
463
+ HTMLTableCaptionElement: false,
464
+ HTMLTableCellElement: false,
465
+ HTMLTableColElement: false,
466
+ HTMLTableElement: false,
467
+ HTMLTableRowElement: false,
468
+ HTMLTableSectionElement: false,
469
+ HTMLTemplateElement: false,
470
+ HTMLTextAreaElement: false,
471
+ HTMLTimeElement: false,
472
+ HTMLTitleElement: false,
473
+ HTMLTrackElement: false,
474
+ HTMLUListElement: false,
475
+ HTMLUnknownElement: false,
476
+ HTMLVideoElement: false,
477
+ IDBCursor: false,
478
+ IDBCursorWithValue: false,
479
+ IDBDatabase: false,
480
+ IDBFactory: false,
481
+ IDBIndex: false,
482
+ IDBKeyRange: false,
483
+ IDBObjectStore: false,
484
+ IDBOpenDBRequest: false,
485
+ IDBRequest: false,
486
+ IDBTransaction: false,
487
+ IDBVersionChangeEvent: false,
488
+ IdentityCredential: false,
489
+ IdentityCredentialError: false,
490
+ IdentityProvider: false,
491
+ IdleDeadline: false,
492
+ IdleDetector: false,
493
+ IIRFilterNode: false,
494
+ Image: false,
495
+ ImageBitmap: false,
496
+ ImageBitmapRenderingContext: false,
497
+ ImageCapture: false,
498
+ ImageData: false,
499
+ ImageDecoder: false,
500
+ ImageTrack: false,
501
+ ImageTrackList: false,
502
+ indexedDB: false,
503
+ Ink: false,
504
+ innerHeight: false,
505
+ innerWidth: false,
506
+ InputDeviceCapabilities: false,
507
+ InputDeviceInfo: false,
508
+ InputEvent: false,
509
+ IntersectionObserver: false,
510
+ IntersectionObserverEntry: false,
511
+ isSecureContext: false,
512
+ Keyboard: false,
513
+ KeyboardEvent: false,
514
+ KeyboardLayoutMap: false,
515
+ KeyframeEffect: false,
516
+ LargestContentfulPaint: false,
517
+ LaunchParams: false,
518
+ launchQueue: false,
519
+ LaunchQueue: false,
520
+ LayoutShift: false,
521
+ LayoutShiftAttribution: false,
522
+ length: false,
523
+ LinearAccelerationSensor: false,
524
+ localStorage: false,
525
+ location: true,
526
+ Location: false,
527
+ locationbar: false,
528
+ Lock: false,
529
+ LockManager: false,
530
+ matchMedia: false,
531
+ MathMLElement: false,
532
+ MediaCapabilities: false,
533
+ MediaCapabilitiesInfo: false,
534
+ MediaDeviceInfo: false,
535
+ MediaDevices: false,
536
+ MediaElementAudioSourceNode: false,
537
+ MediaEncryptedEvent: false,
538
+ MediaError: false,
539
+ MediaKeyError: false,
540
+ MediaKeyMessageEvent: false,
541
+ MediaKeys: false,
542
+ MediaKeySession: false,
543
+ MediaKeyStatusMap: false,
544
+ MediaKeySystemAccess: false,
545
+ MediaList: false,
546
+ MediaMetadata: false,
547
+ MediaQueryList: false,
548
+ MediaQueryListEvent: false,
549
+ MediaRecorder: false,
550
+ MediaRecorderErrorEvent: false,
551
+ MediaSession: false,
552
+ MediaSource: false,
553
+ MediaSourceHandle: false,
554
+ MediaStream: false,
555
+ MediaStreamAudioDestinationNode: false,
556
+ MediaStreamAudioSourceNode: false,
557
+ MediaStreamEvent: false,
558
+ MediaStreamTrack: false,
559
+ MediaStreamTrackAudioSourceNode: false,
560
+ MediaStreamTrackAudioStats: false,
561
+ MediaStreamTrackEvent: false,
562
+ MediaStreamTrackGenerator: false,
563
+ MediaStreamTrackProcessor: false,
564
+ MediaStreamTrackVideoStats: false,
565
+ menubar: false,
566
+ MessageChannel: false,
567
+ MessageEvent: false,
568
+ MessagePort: false,
569
+ MIDIAccess: false,
570
+ MIDIConnectionEvent: false,
571
+ MIDIInput: false,
572
+ MIDIInputMap: false,
573
+ MIDIMessageEvent: false,
574
+ MIDIOutput: false,
575
+ MIDIOutputMap: false,
576
+ MIDIPort: false,
577
+ MimeType: false,
578
+ MimeTypeArray: false,
579
+ model: false,
580
+ ModelGenericSession: false,
581
+ ModelManager: false,
582
+ MouseEvent: false,
583
+ moveBy: false,
584
+ moveTo: false,
585
+ MutationEvent: false,
586
+ MutationObserver: false,
587
+ MutationRecord: false,
588
+ name: false,
589
+ NamedNodeMap: false,
590
+ NavigateEvent: false,
591
+ navigation: false,
592
+ Navigation: false,
593
+ NavigationActivation: false,
594
+ NavigationCurrentEntryChangeEvent: false,
595
+ NavigationDestination: false,
596
+ NavigationHistoryEntry: false,
597
+ NavigationPreloadManager: false,
598
+ NavigationTransition: false,
599
+ navigator: false,
600
+ Navigator: false,
601
+ NavigatorLogin: false,
602
+ NavigatorManagedData: false,
603
+ NavigatorUAData: false,
604
+ NetworkInformation: false,
605
+ Node: false,
606
+ NodeFilter: false,
607
+ NodeIterator: false,
608
+ NodeList: false,
609
+ Notification: false,
610
+ NotifyPaintEvent: false,
611
+ NotRestoredReasonDetails: false,
612
+ NotRestoredReasons: false,
613
+ OfflineAudioCompletionEvent: false,
614
+ OfflineAudioContext: false,
615
+ offscreenBuffering: false,
616
+ OffscreenCanvas: false,
617
+ OffscreenCanvasRenderingContext2D: false,
618
+ onabort: true,
619
+ onafterprint: true,
620
+ onanimationcancel: true,
621
+ onanimationend: true,
622
+ onanimationiteration: true,
623
+ onanimationstart: true,
624
+ onappinstalled: true,
625
+ onauxclick: true,
626
+ onbeforeinput: true,
627
+ onbeforeinstallprompt: true,
628
+ onbeforematch: true,
629
+ onbeforeprint: true,
630
+ onbeforetoggle: true,
631
+ onbeforeunload: true,
632
+ onbeforexrselect: true,
633
+ onblur: true,
634
+ oncancel: true,
635
+ oncanplay: true,
636
+ oncanplaythrough: true,
637
+ onchange: true,
638
+ onclick: true,
639
+ onclose: true,
640
+ oncontentvisibilityautostatechange: true,
641
+ oncontextlost: true,
642
+ oncontextmenu: true,
643
+ oncontextrestored: true,
644
+ oncopy: true,
645
+ oncuechange: true,
646
+ oncut: true,
647
+ ondblclick: true,
648
+ ondevicemotion: true,
649
+ ondeviceorientation: true,
650
+ ondeviceorientationabsolute: true,
651
+ ondrag: true,
652
+ ondragend: true,
653
+ ondragenter: true,
654
+ ondragleave: true,
655
+ ondragover: true,
656
+ ondragstart: true,
657
+ ondrop: true,
658
+ ondurationchange: true,
659
+ onemptied: true,
660
+ onended: true,
661
+ onerror: true,
662
+ onfocus: true,
663
+ onformdata: true,
664
+ ongamepadconnected: true,
665
+ ongamepaddisconnected: true,
666
+ ongotpointercapture: true,
667
+ onhashchange: true,
668
+ oninput: true,
669
+ oninvalid: true,
670
+ onkeydown: true,
671
+ onkeypress: true,
672
+ onkeyup: true,
673
+ onlanguagechange: true,
674
+ onload: true,
675
+ onloadeddata: true,
676
+ onloadedmetadata: true,
677
+ onloadstart: true,
678
+ onlostpointercapture: true,
679
+ onmessage: true,
680
+ onmessageerror: true,
681
+ onmousedown: true,
682
+ onmouseenter: true,
683
+ onmouseleave: true,
684
+ onmousemove: true,
685
+ onmouseout: true,
686
+ onmouseover: true,
687
+ onmouseup: true,
688
+ onmousewheel: true,
689
+ onoffline: true,
690
+ ononline: true,
691
+ onpagehide: true,
692
+ onpagereveal: true,
693
+ onpageshow: true,
694
+ onpageswap: true,
695
+ onpaste: true,
696
+ onpause: true,
697
+ onplay: true,
698
+ onplaying: true,
699
+ onpointercancel: true,
700
+ onpointerdown: true,
701
+ onpointerenter: true,
702
+ onpointerleave: true,
703
+ onpointermove: true,
704
+ onpointerout: true,
705
+ onpointerover: true,
706
+ onpointerrawupdate: true,
707
+ onpointerup: true,
708
+ onpopstate: true,
709
+ onprogress: true,
710
+ onratechange: true,
711
+ onrejectionhandled: true,
712
+ onreset: true,
713
+ onresize: true,
714
+ onscroll: true,
715
+ onscrollend: true,
716
+ onscrollsnapchange: true,
717
+ onscrollsnapchanging: true,
718
+ onsearch: true,
719
+ onsecuritypolicyviolation: true,
720
+ onseeked: true,
721
+ onseeking: true,
722
+ onselect: true,
723
+ onselectionchange: true,
724
+ onselectstart: true,
725
+ onslotchange: true,
726
+ onstalled: true,
727
+ onstorage: true,
728
+ onsubmit: true,
729
+ onsuspend: true,
730
+ ontimeupdate: true,
731
+ ontoggle: true,
732
+ ontransitioncancel: true,
733
+ ontransitionend: true,
734
+ ontransitionrun: true,
735
+ ontransitionstart: true,
736
+ onunhandledrejection: true,
737
+ onunload: true,
738
+ onvolumechange: true,
739
+ onwaiting: true,
740
+ onwheel: true,
741
+ open: false,
742
+ opener: false,
743
+ Option: false,
744
+ OrientationSensor: false,
745
+ origin: false,
746
+ originAgentCluster: false,
747
+ OscillatorNode: false,
748
+ OTPCredential: false,
749
+ outerHeight: false,
750
+ outerWidth: false,
751
+ OverconstrainedError: false,
752
+ PageRevealEvent: false,
753
+ PageSwapEvent: false,
754
+ PageTransitionEvent: false,
755
+ pageXOffset: false,
756
+ pageYOffset: false,
757
+ PannerNode: false,
758
+ parent: false,
759
+ PasswordCredential: false,
760
+ Path2D: false,
761
+ PaymentAddress: false,
762
+ PaymentManager: false,
763
+ PaymentMethodChangeEvent: false,
764
+ PaymentRequest: false,
765
+ PaymentRequestUpdateEvent: false,
766
+ PaymentResponse: false,
767
+ performance: false,
768
+ Performance: false,
769
+ PerformanceElementTiming: false,
770
+ PerformanceEntry: false,
771
+ PerformanceEventTiming: false,
772
+ PerformanceLongAnimationFrameTiming: false,
773
+ PerformanceLongTaskTiming: false,
774
+ PerformanceMark: false,
775
+ PerformanceMeasure: false,
776
+ PerformanceNavigation: false,
777
+ PerformanceNavigationTiming: false,
778
+ PerformanceObserver: false,
779
+ PerformanceObserverEntryList: false,
780
+ PerformancePaintTiming: false,
781
+ PerformanceResourceTiming: false,
782
+ PerformanceScriptTiming: false,
783
+ PerformanceServerTiming: false,
784
+ PerformanceTiming: false,
785
+ PeriodicSyncManager: false,
786
+ PeriodicWave: false,
787
+ Permissions: false,
788
+ PermissionStatus: false,
789
+ PERSISTENT: false,
790
+ personalbar: false,
791
+ PictureInPictureEvent: false,
792
+ PictureInPictureWindow: false,
793
+ Plugin: false,
794
+ PluginArray: false,
795
+ PointerEvent: false,
796
+ PopStateEvent: false,
797
+ postMessage: false,
798
+ Presentation: false,
799
+ PresentationAvailability: false,
800
+ PresentationConnection: false,
801
+ PresentationConnectionAvailableEvent: false,
802
+ PresentationConnectionCloseEvent: false,
803
+ PresentationConnectionList: false,
804
+ PresentationReceiver: false,
805
+ PresentationRequest: false,
806
+ PressureObserver: false,
807
+ PressureRecord: false,
808
+ print: false,
809
+ ProcessingInstruction: false,
810
+ Profiler: false,
811
+ ProgressEvent: false,
812
+ PromiseRejectionEvent: false,
813
+ prompt: false,
814
+ ProtectedAudience: false,
815
+ PublicKeyCredential: false,
816
+ PushManager: false,
817
+ PushSubscription: false,
818
+ PushSubscriptionOptions: false,
819
+ queryLocalFonts: false,
820
+ queueMicrotask: false,
821
+ RadioNodeList: false,
822
+ Range: false,
823
+ ReadableByteStreamController: false,
824
+ ReadableStream: false,
825
+ ReadableStreamBYOBReader: false,
826
+ ReadableStreamBYOBRequest: false,
827
+ ReadableStreamDefaultController: false,
828
+ ReadableStreamDefaultReader: false,
829
+ registerProcessor: false,
830
+ RelativeOrientationSensor: false,
831
+ RemotePlayback: false,
832
+ removeEventListener: false,
833
+ reportError: false,
834
+ ReportingObserver: false,
835
+ Request: false,
836
+ requestAnimationFrame: false,
837
+ requestIdleCallback: false,
838
+ resizeBy: false,
839
+ ResizeObserver: false,
840
+ ResizeObserverEntry: false,
841
+ ResizeObserverSize: false,
842
+ resizeTo: false,
843
+ Response: false,
844
+ RTCCertificate: false,
845
+ RTCDataChannel: false,
846
+ RTCDataChannelEvent: false,
847
+ RTCDtlsTransport: false,
848
+ RTCDTMFSender: false,
849
+ RTCDTMFToneChangeEvent: false,
850
+ RTCEncodedAudioFrame: false,
851
+ RTCEncodedVideoFrame: false,
852
+ RTCError: false,
853
+ RTCErrorEvent: false,
854
+ RTCIceCandidate: false,
855
+ RTCIceTransport: false,
856
+ RTCPeerConnection: false,
857
+ RTCPeerConnectionIceErrorEvent: false,
858
+ RTCPeerConnectionIceEvent: false,
859
+ RTCRtpReceiver: false,
860
+ RTCRtpScriptTransform: false,
861
+ RTCRtpSender: false,
862
+ RTCRtpTransceiver: false,
863
+ RTCSctpTransport: false,
864
+ RTCSessionDescription: false,
865
+ RTCStatsReport: false,
866
+ RTCTrackEvent: false,
867
+ sampleRate: false,
868
+ scheduler: false,
869
+ Scheduler: false,
870
+ Scheduling: false,
871
+ screen: false,
872
+ Screen: false,
873
+ ScreenDetailed: false,
874
+ ScreenDetails: false,
875
+ screenLeft: false,
876
+ ScreenOrientation: false,
877
+ screenTop: false,
878
+ screenX: false,
879
+ screenY: false,
880
+ ScriptProcessorNode: false,
881
+ scroll: false,
882
+ scrollbars: false,
883
+ scrollBy: false,
884
+ ScrollTimeline: false,
885
+ scrollTo: false,
886
+ scrollX: false,
887
+ scrollY: false,
888
+ SecurityPolicyViolationEvent: false,
889
+ Selection: false,
890
+ self: false,
891
+ Sensor: false,
892
+ SensorErrorEvent: false,
893
+ Serial: false,
894
+ SerialPort: false,
895
+ ServiceWorker: false,
896
+ ServiceWorkerContainer: false,
897
+ ServiceWorkerRegistration: false,
898
+ sessionStorage: false,
899
+ setInterval: false,
900
+ setTimeout: false,
901
+ ShadowRoot: false,
902
+ sharedStorage: false,
903
+ SharedStorage: false,
904
+ SharedStorageWorklet: false,
905
+ SharedWorker: false,
906
+ showDirectoryPicker: false,
907
+ showOpenFilePicker: false,
908
+ showSaveFilePicker: false,
909
+ SnapEvent: false,
910
+ SourceBuffer: false,
911
+ SourceBufferList: false,
912
+ speechSynthesis: false,
913
+ SpeechSynthesis: false,
914
+ SpeechSynthesisErrorEvent: false,
915
+ SpeechSynthesisEvent: false,
916
+ SpeechSynthesisUtterance: false,
917
+ SpeechSynthesisVoice: false,
918
+ StaticRange: false,
919
+ status: false,
920
+ statusbar: false,
921
+ StereoPannerNode: false,
922
+ stop: false,
923
+ Storage: false,
924
+ StorageBucket: false,
925
+ StorageBucketManager: false,
926
+ StorageEvent: false,
927
+ StorageManager: false,
928
+ structuredClone: false,
929
+ styleMedia: false,
930
+ StylePropertyMap: false,
931
+ StylePropertyMapReadOnly: false,
932
+ StyleSheet: false,
933
+ StyleSheetList: false,
934
+ SubmitEvent: false,
935
+ SubtleCrypto: false,
936
+ SVGAElement: false,
937
+ SVGAngle: false,
938
+ SVGAnimatedAngle: false,
939
+ SVGAnimatedBoolean: false,
940
+ SVGAnimatedEnumeration: false,
941
+ SVGAnimatedInteger: false,
942
+ SVGAnimatedLength: false,
943
+ SVGAnimatedLengthList: false,
944
+ SVGAnimatedNumber: false,
945
+ SVGAnimatedNumberList: false,
946
+ SVGAnimatedPreserveAspectRatio: false,
947
+ SVGAnimatedRect: false,
948
+ SVGAnimatedString: false,
949
+ SVGAnimatedTransformList: false,
950
+ SVGAnimateElement: false,
951
+ SVGAnimateMotionElement: false,
952
+ SVGAnimateTransformElement: false,
953
+ SVGAnimationElement: false,
954
+ SVGCircleElement: false,
955
+ SVGClipPathElement: false,
956
+ SVGComponentTransferFunctionElement: false,
957
+ SVGDefsElement: false,
958
+ SVGDescElement: false,
959
+ SVGElement: false,
960
+ SVGEllipseElement: false,
961
+ SVGFEBlendElement: false,
962
+ SVGFEColorMatrixElement: false,
963
+ SVGFEComponentTransferElement: false,
964
+ SVGFECompositeElement: false,
965
+ SVGFEConvolveMatrixElement: false,
966
+ SVGFEDiffuseLightingElement: false,
967
+ SVGFEDisplacementMapElement: false,
968
+ SVGFEDistantLightElement: false,
969
+ SVGFEDropShadowElement: false,
970
+ SVGFEFloodElement: false,
971
+ SVGFEFuncAElement: false,
972
+ SVGFEFuncBElement: false,
973
+ SVGFEFuncGElement: false,
974
+ SVGFEFuncRElement: false,
975
+ SVGFEGaussianBlurElement: false,
976
+ SVGFEImageElement: false,
977
+ SVGFEMergeElement: false,
978
+ SVGFEMergeNodeElement: false,
979
+ SVGFEMorphologyElement: false,
980
+ SVGFEOffsetElement: false,
981
+ SVGFEPointLightElement: false,
982
+ SVGFESpecularLightingElement: false,
983
+ SVGFESpotLightElement: false,
984
+ SVGFETileElement: false,
985
+ SVGFETurbulenceElement: false,
986
+ SVGFilterElement: false,
987
+ SVGForeignObjectElement: false,
988
+ SVGGElement: false,
989
+ SVGGeometryElement: false,
990
+ SVGGradientElement: false,
991
+ SVGGraphicsElement: false,
992
+ SVGImageElement: false,
993
+ SVGLength: false,
994
+ SVGLengthList: false,
995
+ SVGLinearGradientElement: false,
996
+ SVGLineElement: false,
997
+ SVGMarkerElement: false,
998
+ SVGMaskElement: false,
999
+ SVGMatrix: false,
1000
+ SVGMetadataElement: false,
1001
+ SVGMPathElement: false,
1002
+ SVGNumber: false,
1003
+ SVGNumberList: false,
1004
+ SVGPathElement: false,
1005
+ SVGPatternElement: false,
1006
+ SVGPoint: false,
1007
+ SVGPointList: false,
1008
+ SVGPolygonElement: false,
1009
+ SVGPolylineElement: false,
1010
+ SVGPreserveAspectRatio: false,
1011
+ SVGRadialGradientElement: false,
1012
+ SVGRect: false,
1013
+ SVGRectElement: false,
1014
+ SVGScriptElement: false,
1015
+ SVGSetElement: false,
1016
+ SVGStopElement: false,
1017
+ SVGStringList: false,
1018
+ SVGStyleElement: false,
1019
+ SVGSVGElement: false,
1020
+ SVGSwitchElement: false,
1021
+ SVGSymbolElement: false,
1022
+ SVGTextContentElement: false,
1023
+ SVGTextElement: false,
1024
+ SVGTextPathElement: false,
1025
+ SVGTextPositioningElement: false,
1026
+ SVGTitleElement: false,
1027
+ SVGTransform: false,
1028
+ SVGTransformList: false,
1029
+ SVGTSpanElement: false,
1030
+ SVGUnitTypes: false,
1031
+ SVGUseElement: false,
1032
+ SVGViewElement: false,
1033
+ SyncManager: false,
1034
+ TaskAttributionTiming: false,
1035
+ TaskController: false,
1036
+ TaskPriorityChangeEvent: false,
1037
+ TaskSignal: false,
1038
+ TEMPORARY: false,
1039
+ Text: false,
1040
+ TextDecoder: false,
1041
+ TextDecoderStream: false,
1042
+ TextEncoder: false,
1043
+ TextEncoderStream: false,
1044
+ TextEvent: false,
1045
+ TextFormat: false,
1046
+ TextFormatUpdateEvent: false,
1047
+ TextMetrics: false,
1048
+ TextTrack: false,
1049
+ TextTrackCue: false,
1050
+ TextTrackCueList: false,
1051
+ TextTrackList: false,
1052
+ TextUpdateEvent: false,
1053
+ TimeEvent: false,
1054
+ TimeRanges: false,
1055
+ ToggleEvent: false,
1056
+ toolbar: false,
1057
+ top: false,
1058
+ Touch: false,
1059
+ TouchEvent: false,
1060
+ TouchList: false,
1061
+ TrackEvent: false,
1062
+ TransformStream: false,
1063
+ TransformStreamDefaultController: false,
1064
+ TransitionEvent: false,
1065
+ TreeWalker: false,
1066
+ TrustedHTML: false,
1067
+ TrustedScript: false,
1068
+ TrustedScriptURL: false,
1069
+ TrustedTypePolicy: false,
1070
+ TrustedTypePolicyFactory: false,
1071
+ trustedTypes: false,
1072
+ UIEvent: false,
1073
+ URL: false,
1074
+ URLPattern: false,
1075
+ URLSearchParams: false,
1076
+ USB: false,
1077
+ USBAlternateInterface: false,
1078
+ USBConfiguration: false,
1079
+ USBConnectionEvent: false,
1080
+ USBDevice: false,
1081
+ USBEndpoint: false,
1082
+ USBInterface: false,
1083
+ USBInTransferResult: false,
1084
+ USBIsochronousInTransferPacket: false,
1085
+ USBIsochronousInTransferResult: false,
1086
+ USBIsochronousOutTransferPacket: false,
1087
+ USBIsochronousOutTransferResult: false,
1088
+ USBOutTransferResult: false,
1089
+ UserActivation: false,
1090
+ ValidityState: false,
1091
+ VideoColorSpace: false,
1092
+ VideoDecoder: false,
1093
+ VideoEncoder: false,
1094
+ VideoFrame: false,
1095
+ VideoPlaybackQuality: false,
1096
+ ViewTimeline: false,
1097
+ ViewTransition: false,
1098
+ ViewTransitionTypeSet: false,
1099
+ VirtualKeyboard: false,
1100
+ VirtualKeyboardGeometryChangeEvent: false,
1101
+ VisibilityStateEntry: false,
1102
+ visualViewport: false,
1103
+ VisualViewport: false,
1104
+ VTTCue: false,
1105
+ VTTRegion: false,
1106
+ WakeLock: false,
1107
+ WakeLockSentinel: false,
1108
+ WaveShaperNode: false,
1109
+ WebAssembly: false,
1110
+ WebGL2RenderingContext: false,
1111
+ WebGLActiveInfo: false,
1112
+ WebGLBuffer: false,
1113
+ WebGLContextEvent: false,
1114
+ WebGLFramebuffer: false,
1115
+ WebGLObject: false,
1116
+ WebGLProgram: false,
1117
+ WebGLQuery: false,
1118
+ WebGLRenderbuffer: false,
1119
+ WebGLRenderingContext: false,
1120
+ WebGLSampler: false,
1121
+ WebGLShader: false,
1122
+ WebGLShaderPrecisionFormat: false,
1123
+ WebGLSync: false,
1124
+ WebGLTexture: false,
1125
+ WebGLTransformFeedback: false,
1126
+ WebGLUniformLocation: false,
1127
+ WebGLVertexArrayObject: false,
1128
+ WebSocket: false,
1129
+ WebSocketError: false,
1130
+ WebSocketStream: false,
1131
+ WebTransport: false,
1132
+ WebTransportBidirectionalStream: false,
1133
+ WebTransportDatagramDuplexStream: false,
1134
+ WebTransportError: false,
1135
+ WebTransportReceiveStream: false,
1136
+ WebTransportSendStream: false,
1137
+ WGSLLanguageFeatures: false,
1138
+ WheelEvent: false,
1139
+ window: false,
1140
+ Window: false,
1141
+ WindowControlsOverlay: false,
1142
+ WindowControlsOverlayGeometryChangeEvent: false,
1143
+ Worker: false,
1144
+ Worklet: false,
1145
+ WorkletGlobalScope: false,
1146
+ WritableStream: false,
1147
+ WritableStreamDefaultController: false,
1148
+ WritableStreamDefaultWriter: false,
1149
+ XMLDocument: false,
1150
+ XMLHttpRequest: false,
1151
+ XMLHttpRequestEventTarget: false,
1152
+ XMLHttpRequestUpload: false,
1153
+ XMLSerializer: false,
1154
+ XPathEvaluator: false,
1155
+ XPathExpression: false,
1156
+ XPathResult: false,
1157
+ XRAnchor: false,
1158
+ XRAnchorSet: false,
1159
+ XRBoundedReferenceSpace: false,
1160
+ XRCamera: false,
1161
+ XRCPUDepthInformation: false,
1162
+ XRDepthInformation: false,
1163
+ XRDOMOverlayState: false,
1164
+ XRFrame: false,
1165
+ XRHand: false,
1166
+ XRHitTestResult: false,
1167
+ XRHitTestSource: false,
1168
+ XRInputSource: false,
1169
+ XRInputSourceArray: false,
1170
+ XRInputSourceEvent: false,
1171
+ XRInputSourcesChangeEvent: false,
1172
+ XRJointPose: false,
1173
+ XRJointSpace: false,
1174
+ XRLayer: false,
1175
+ XRLightEstimate: false,
1176
+ XRLightProbe: false,
1177
+ XRPose: false,
1178
+ XRRay: false,
1179
+ XRReferenceSpace: false,
1180
+ XRReferenceSpaceEvent: false,
1181
+ XRRenderState: false,
1182
+ XRRigidTransform: false,
1183
+ XRSession: false,
1184
+ XRSessionEvent: false,
1185
+ XRSpace: false,
1186
+ XRSystem: false,
1187
+ XRTransientInputHitTestResult: false,
1188
+ XRTransientInputHitTestSource: false,
1189
+ XRView: false,
1190
+ XRViewerPose: false,
1191
+ XRViewport: false,
1192
+ XRWebGLBinding: false,
1193
+ XRWebGLDepthInformation: false,
1194
+ XRWebGLLayer: false,
1195
+ XSLTProcessor: false
1196
+ },
1197
+ builtin: {
1198
+ AggregateError: false,
1199
+ Array: false,
1200
+ ArrayBuffer: false,
1201
+ Atomics: false,
1202
+ BigInt: false,
1203
+ BigInt64Array: false,
1204
+ BigUint64Array: false,
1205
+ Boolean: false,
1206
+ DataView: false,
1207
+ Date: false,
1208
+ decodeURI: false,
1209
+ decodeURIComponent: false,
1210
+ encodeURI: false,
1211
+ encodeURIComponent: false,
1212
+ Error: false,
1213
+ escape: false,
1214
+ eval: false,
1215
+ EvalError: false,
1216
+ FinalizationRegistry: false,
1217
+ Float32Array: false,
1218
+ Float64Array: false,
1219
+ Function: false,
1220
+ globalThis: false,
1221
+ Infinity: false,
1222
+ Int16Array: false,
1223
+ Int32Array: false,
1224
+ Int8Array: false,
1225
+ Intl: false,
1226
+ isFinite: false,
1227
+ isNaN: false,
1228
+ Iterator: false,
1229
+ JSON: false,
1230
+ Map: false,
1231
+ Math: false,
1232
+ NaN: false,
1233
+ Number: false,
1234
+ Object: false,
1235
+ parseFloat: false,
1236
+ parseInt: false,
1237
+ Promise: false,
1238
+ Proxy: false,
1239
+ RangeError: false,
1240
+ ReferenceError: false,
1241
+ Reflect: false,
1242
+ RegExp: false,
1243
+ Set: false,
1244
+ SharedArrayBuffer: false,
1245
+ String: false,
1246
+ Symbol: false,
1247
+ SyntaxError: false,
1248
+ TypeError: false,
1249
+ Uint16Array: false,
1250
+ Uint32Array: false,
1251
+ Uint8Array: false,
1252
+ Uint8ClampedArray: false,
1253
+ undefined: false,
1254
+ unescape: false,
1255
+ URIError: false,
1256
+ WeakMap: false,
1257
+ WeakRef: false,
1258
+ WeakSet: false
1259
+ },
1260
+ chai: {
1261
+ assert: true,
1262
+ expect: true,
1263
+ should: true
1264
+ },
1265
+ commonjs: {
1266
+ exports: true,
1267
+ global: false,
1268
+ module: false,
1269
+ require: false
1270
+ },
1271
+ couch: {
1272
+ emit: false,
1273
+ exports: false,
1274
+ getRow: false,
1275
+ log: false,
1276
+ module: false,
1277
+ provides: false,
1278
+ require: false,
1279
+ respond: false,
1280
+ send: false,
1281
+ start: false,
1282
+ sum: false
1283
+ },
1284
+ devtools: {
1285
+ $: false,
1286
+ $_: false,
1287
+ $$: false,
1288
+ $0: false,
1289
+ $1: false,
1290
+ $2: false,
1291
+ $3: false,
1292
+ $4: false,
1293
+ $x: false,
1294
+ chrome: false,
1295
+ clear: false,
1296
+ copy: false,
1297
+ debug: false,
1298
+ dir: false,
1299
+ dirxml: false,
1300
+ getEventListeners: false,
1301
+ inspect: false,
1302
+ keys: false,
1303
+ monitor: false,
1304
+ monitorEvents: false,
1305
+ profile: false,
1306
+ profileEnd: false,
1307
+ queryObjects: false,
1308
+ table: false,
1309
+ undebug: false,
1310
+ unmonitor: false,
1311
+ unmonitorEvents: false,
1312
+ values: false
1313
+ },
1314
+ embertest: {
1315
+ andThen: false,
1316
+ click: false,
1317
+ currentPath: false,
1318
+ currentRouteName: false,
1319
+ currentURL: false,
1320
+ fillIn: false,
1321
+ find: false,
1322
+ findAll: false,
1323
+ findWithAssert: false,
1324
+ keyEvent: false,
1325
+ pauseTest: false,
1326
+ resumeTest: false,
1327
+ triggerEvent: false,
1328
+ visit: false,
1329
+ wait: false
1330
+ },
1331
+ es2015: {
1332
+ Array: false,
1333
+ ArrayBuffer: false,
1334
+ Boolean: false,
1335
+ DataView: false,
1336
+ Date: false,
1337
+ decodeURI: false,
1338
+ decodeURIComponent: false,
1339
+ encodeURI: false,
1340
+ encodeURIComponent: false,
1341
+ Error: false,
1342
+ escape: false,
1343
+ eval: false,
1344
+ EvalError: false,
1345
+ Float32Array: false,
1346
+ Float64Array: false,
1347
+ Function: false,
1348
+ Infinity: false,
1349
+ Int16Array: false,
1350
+ Int32Array: false,
1351
+ Int8Array: false,
1352
+ Intl: false,
1353
+ isFinite: false,
1354
+ isNaN: false,
1355
+ JSON: false,
1356
+ Map: false,
1357
+ Math: false,
1358
+ NaN: false,
1359
+ Number: false,
1360
+ Object: false,
1361
+ parseFloat: false,
1362
+ parseInt: false,
1363
+ Promise: false,
1364
+ Proxy: false,
1365
+ RangeError: false,
1366
+ ReferenceError: false,
1367
+ Reflect: false,
1368
+ RegExp: false,
1369
+ Set: false,
1370
+ String: false,
1371
+ Symbol: false,
1372
+ SyntaxError: false,
1373
+ TypeError: false,
1374
+ Uint16Array: false,
1375
+ Uint32Array: false,
1376
+ Uint8Array: false,
1377
+ Uint8ClampedArray: false,
1378
+ undefined: false,
1379
+ unescape: false,
1380
+ URIError: false,
1381
+ WeakMap: false,
1382
+ WeakSet: false
1383
+ },
1384
+ es2016: {
1385
+ Array: false,
1386
+ ArrayBuffer: false,
1387
+ Boolean: false,
1388
+ DataView: false,
1389
+ Date: false,
1390
+ decodeURI: false,
1391
+ decodeURIComponent: false,
1392
+ encodeURI: false,
1393
+ encodeURIComponent: false,
1394
+ Error: false,
1395
+ escape: false,
1396
+ eval: false,
1397
+ EvalError: false,
1398
+ Float32Array: false,
1399
+ Float64Array: false,
1400
+ Function: false,
1401
+ Infinity: false,
1402
+ Int16Array: false,
1403
+ Int32Array: false,
1404
+ Int8Array: false,
1405
+ Intl: false,
1406
+ isFinite: false,
1407
+ isNaN: false,
1408
+ JSON: false,
1409
+ Map: false,
1410
+ Math: false,
1411
+ NaN: false,
1412
+ Number: false,
1413
+ Object: false,
1414
+ parseFloat: false,
1415
+ parseInt: false,
1416
+ Promise: false,
1417
+ Proxy: false,
1418
+ RangeError: false,
1419
+ ReferenceError: false,
1420
+ Reflect: false,
1421
+ RegExp: false,
1422
+ Set: false,
1423
+ String: false,
1424
+ Symbol: false,
1425
+ SyntaxError: false,
1426
+ TypeError: false,
1427
+ Uint16Array: false,
1428
+ Uint32Array: false,
1429
+ Uint8Array: false,
1430
+ Uint8ClampedArray: false,
1431
+ undefined: false,
1432
+ unescape: false,
1433
+ URIError: false,
1434
+ WeakMap: false,
1435
+ WeakSet: false
1436
+ },
1437
+ es2017: {
1438
+ Array: false,
1439
+ ArrayBuffer: false,
1440
+ Atomics: false,
1441
+ Boolean: false,
1442
+ DataView: false,
1443
+ Date: false,
1444
+ decodeURI: false,
1445
+ decodeURIComponent: false,
1446
+ encodeURI: false,
1447
+ encodeURIComponent: false,
1448
+ Error: false,
1449
+ escape: false,
1450
+ eval: false,
1451
+ EvalError: false,
1452
+ Float32Array: false,
1453
+ Float64Array: false,
1454
+ Function: false,
1455
+ Infinity: false,
1456
+ Int16Array: false,
1457
+ Int32Array: false,
1458
+ Int8Array: false,
1459
+ Intl: false,
1460
+ isFinite: false,
1461
+ isNaN: false,
1462
+ JSON: false,
1463
+ Map: false,
1464
+ Math: false,
1465
+ NaN: false,
1466
+ Number: false,
1467
+ Object: false,
1468
+ parseFloat: false,
1469
+ parseInt: false,
1470
+ Promise: false,
1471
+ Proxy: false,
1472
+ RangeError: false,
1473
+ ReferenceError: false,
1474
+ Reflect: false,
1475
+ RegExp: false,
1476
+ Set: false,
1477
+ SharedArrayBuffer: false,
1478
+ String: false,
1479
+ Symbol: false,
1480
+ SyntaxError: false,
1481
+ TypeError: false,
1482
+ Uint16Array: false,
1483
+ Uint32Array: false,
1484
+ Uint8Array: false,
1485
+ Uint8ClampedArray: false,
1486
+ undefined: false,
1487
+ unescape: false,
1488
+ URIError: false,
1489
+ WeakMap: false,
1490
+ WeakSet: false
1491
+ },
1492
+ es2018: {
1493
+ Array: false,
1494
+ ArrayBuffer: false,
1495
+ Atomics: false,
1496
+ Boolean: false,
1497
+ DataView: false,
1498
+ Date: false,
1499
+ decodeURI: false,
1500
+ decodeURIComponent: false,
1501
+ encodeURI: false,
1502
+ encodeURIComponent: false,
1503
+ Error: false,
1504
+ escape: false,
1505
+ eval: false,
1506
+ EvalError: false,
1507
+ Float32Array: false,
1508
+ Float64Array: false,
1509
+ Function: false,
1510
+ Infinity: false,
1511
+ Int16Array: false,
1512
+ Int32Array: false,
1513
+ Int8Array: false,
1514
+ Intl: false,
1515
+ isFinite: false,
1516
+ isNaN: false,
1517
+ JSON: false,
1518
+ Map: false,
1519
+ Math: false,
1520
+ NaN: false,
1521
+ Number: false,
1522
+ Object: false,
1523
+ parseFloat: false,
1524
+ parseInt: false,
1525
+ Promise: false,
1526
+ Proxy: false,
1527
+ RangeError: false,
1528
+ ReferenceError: false,
1529
+ Reflect: false,
1530
+ RegExp: false,
1531
+ Set: false,
1532
+ SharedArrayBuffer: false,
1533
+ String: false,
1534
+ Symbol: false,
1535
+ SyntaxError: false,
1536
+ TypeError: false,
1537
+ Uint16Array: false,
1538
+ Uint32Array: false,
1539
+ Uint8Array: false,
1540
+ Uint8ClampedArray: false,
1541
+ undefined: false,
1542
+ unescape: false,
1543
+ URIError: false,
1544
+ WeakMap: false,
1545
+ WeakSet: false
1546
+ },
1547
+ es2019: {
1548
+ Array: false,
1549
+ ArrayBuffer: false,
1550
+ Atomics: false,
1551
+ Boolean: false,
1552
+ DataView: false,
1553
+ Date: false,
1554
+ decodeURI: false,
1555
+ decodeURIComponent: false,
1556
+ encodeURI: false,
1557
+ encodeURIComponent: false,
1558
+ Error: false,
1559
+ escape: false,
1560
+ eval: false,
1561
+ EvalError: false,
1562
+ Float32Array: false,
1563
+ Float64Array: false,
1564
+ Function: false,
1565
+ Infinity: false,
1566
+ Int16Array: false,
1567
+ Int32Array: false,
1568
+ Int8Array: false,
1569
+ Intl: false,
1570
+ isFinite: false,
1571
+ isNaN: false,
1572
+ JSON: false,
1573
+ Map: false,
1574
+ Math: false,
1575
+ NaN: false,
1576
+ Number: false,
1577
+ Object: false,
1578
+ parseFloat: false,
1579
+ parseInt: false,
1580
+ Promise: false,
1581
+ Proxy: false,
1582
+ RangeError: false,
1583
+ ReferenceError: false,
1584
+ Reflect: false,
1585
+ RegExp: false,
1586
+ Set: false,
1587
+ SharedArrayBuffer: false,
1588
+ String: false,
1589
+ Symbol: false,
1590
+ SyntaxError: false,
1591
+ TypeError: false,
1592
+ Uint16Array: false,
1593
+ Uint32Array: false,
1594
+ Uint8Array: false,
1595
+ Uint8ClampedArray: false,
1596
+ undefined: false,
1597
+ unescape: false,
1598
+ URIError: false,
1599
+ WeakMap: false,
1600
+ WeakSet: false
1601
+ },
1602
+ es2020: {
1603
+ Array: false,
1604
+ ArrayBuffer: false,
1605
+ Atomics: false,
1606
+ BigInt: false,
1607
+ BigInt64Array: false,
1608
+ BigUint64Array: false,
1609
+ Boolean: false,
1610
+ DataView: false,
1611
+ Date: false,
1612
+ decodeURI: false,
1613
+ decodeURIComponent: false,
1614
+ encodeURI: false,
1615
+ encodeURIComponent: false,
1616
+ Error: false,
1617
+ escape: false,
1618
+ eval: false,
1619
+ EvalError: false,
1620
+ Float32Array: false,
1621
+ Float64Array: false,
1622
+ Function: false,
1623
+ globalThis: false,
1624
+ Infinity: false,
1625
+ Int16Array: false,
1626
+ Int32Array: false,
1627
+ Int8Array: false,
1628
+ Intl: false,
1629
+ isFinite: false,
1630
+ isNaN: false,
1631
+ JSON: false,
1632
+ Map: false,
1633
+ Math: false,
1634
+ NaN: false,
1635
+ Number: false,
1636
+ Object: false,
1637
+ parseFloat: false,
1638
+ parseInt: false,
1639
+ Promise: false,
1640
+ Proxy: false,
1641
+ RangeError: false,
1642
+ ReferenceError: false,
1643
+ Reflect: false,
1644
+ RegExp: false,
1645
+ Set: false,
1646
+ SharedArrayBuffer: false,
1647
+ String: false,
1648
+ Symbol: false,
1649
+ SyntaxError: false,
1650
+ TypeError: false,
1651
+ Uint16Array: false,
1652
+ Uint32Array: false,
1653
+ Uint8Array: false,
1654
+ Uint8ClampedArray: false,
1655
+ undefined: false,
1656
+ unescape: false,
1657
+ URIError: false,
1658
+ WeakMap: false,
1659
+ WeakSet: false
1660
+ },
1661
+ es2021: {
1662
+ AggregateError: false,
1663
+ Array: false,
1664
+ ArrayBuffer: false,
1665
+ Atomics: false,
1666
+ BigInt: false,
1667
+ BigInt64Array: false,
1668
+ BigUint64Array: false,
1669
+ Boolean: false,
1670
+ DataView: false,
1671
+ Date: false,
1672
+ decodeURI: false,
1673
+ decodeURIComponent: false,
1674
+ encodeURI: false,
1675
+ encodeURIComponent: false,
1676
+ Error: false,
1677
+ escape: false,
1678
+ eval: false,
1679
+ EvalError: false,
1680
+ FinalizationRegistry: false,
1681
+ Float32Array: false,
1682
+ Float64Array: false,
1683
+ Function: false,
1684
+ globalThis: false,
1685
+ Infinity: false,
1686
+ Int16Array: false,
1687
+ Int32Array: false,
1688
+ Int8Array: false,
1689
+ Intl: false,
1690
+ isFinite: false,
1691
+ isNaN: false,
1692
+ JSON: false,
1693
+ Map: false,
1694
+ Math: false,
1695
+ NaN: false,
1696
+ Number: false,
1697
+ Object: false,
1698
+ parseFloat: false,
1699
+ parseInt: false,
1700
+ Promise: false,
1701
+ Proxy: false,
1702
+ RangeError: false,
1703
+ ReferenceError: false,
1704
+ Reflect: false,
1705
+ RegExp: false,
1706
+ Set: false,
1707
+ SharedArrayBuffer: false,
1708
+ String: false,
1709
+ Symbol: false,
1710
+ SyntaxError: false,
1711
+ TypeError: false,
1712
+ Uint16Array: false,
1713
+ Uint32Array: false,
1714
+ Uint8Array: false,
1715
+ Uint8ClampedArray: false,
1716
+ undefined: false,
1717
+ unescape: false,
1718
+ URIError: false,
1719
+ WeakMap: false,
1720
+ WeakRef: false,
1721
+ WeakSet: false
1722
+ },
1723
+ es2022: {
1724
+ AggregateError: false,
1725
+ Array: false,
1726
+ ArrayBuffer: false,
1727
+ Atomics: false,
1728
+ BigInt: false,
1729
+ BigInt64Array: false,
1730
+ BigUint64Array: false,
1731
+ Boolean: false,
1732
+ DataView: false,
1733
+ Date: false,
1734
+ decodeURI: false,
1735
+ decodeURIComponent: false,
1736
+ encodeURI: false,
1737
+ encodeURIComponent: false,
1738
+ Error: false,
1739
+ escape: false,
1740
+ eval: false,
1741
+ EvalError: false,
1742
+ FinalizationRegistry: false,
1743
+ Float32Array: false,
1744
+ Float64Array: false,
1745
+ Function: false,
1746
+ globalThis: false,
1747
+ Infinity: false,
1748
+ Int16Array: false,
1749
+ Int32Array: false,
1750
+ Int8Array: false,
1751
+ Intl: false,
1752
+ isFinite: false,
1753
+ isNaN: false,
1754
+ JSON: false,
1755
+ Map: false,
1756
+ Math: false,
1757
+ NaN: false,
1758
+ Number: false,
1759
+ Object: false,
1760
+ parseFloat: false,
1761
+ parseInt: false,
1762
+ Promise: false,
1763
+ Proxy: false,
1764
+ RangeError: false,
1765
+ ReferenceError: false,
1766
+ Reflect: false,
1767
+ RegExp: false,
1768
+ Set: false,
1769
+ SharedArrayBuffer: false,
1770
+ String: false,
1771
+ Symbol: false,
1772
+ SyntaxError: false,
1773
+ TypeError: false,
1774
+ Uint16Array: false,
1775
+ Uint32Array: false,
1776
+ Uint8Array: false,
1777
+ Uint8ClampedArray: false,
1778
+ undefined: false,
1779
+ unescape: false,
1780
+ URIError: false,
1781
+ WeakMap: false,
1782
+ WeakRef: false,
1783
+ WeakSet: false
1784
+ },
1785
+ es2023: {
1786
+ AggregateError: false,
1787
+ Array: false,
1788
+ ArrayBuffer: false,
1789
+ Atomics: false,
1790
+ BigInt: false,
1791
+ BigInt64Array: false,
1792
+ BigUint64Array: false,
1793
+ Boolean: false,
1794
+ DataView: false,
1795
+ Date: false,
1796
+ decodeURI: false,
1797
+ decodeURIComponent: false,
1798
+ encodeURI: false,
1799
+ encodeURIComponent: false,
1800
+ Error: false,
1801
+ escape: false,
1802
+ eval: false,
1803
+ EvalError: false,
1804
+ FinalizationRegistry: false,
1805
+ Float32Array: false,
1806
+ Float64Array: false,
1807
+ Function: false,
1808
+ globalThis: false,
1809
+ Infinity: false,
1810
+ Int16Array: false,
1811
+ Int32Array: false,
1812
+ Int8Array: false,
1813
+ Intl: false,
1814
+ isFinite: false,
1815
+ isNaN: false,
1816
+ JSON: false,
1817
+ Map: false,
1818
+ Math: false,
1819
+ NaN: false,
1820
+ Number: false,
1821
+ Object: false,
1822
+ parseFloat: false,
1823
+ parseInt: false,
1824
+ Promise: false,
1825
+ Proxy: false,
1826
+ RangeError: false,
1827
+ ReferenceError: false,
1828
+ Reflect: false,
1829
+ RegExp: false,
1830
+ Set: false,
1831
+ SharedArrayBuffer: false,
1832
+ String: false,
1833
+ Symbol: false,
1834
+ SyntaxError: false,
1835
+ TypeError: false,
1836
+ Uint16Array: false,
1837
+ Uint32Array: false,
1838
+ Uint8Array: false,
1839
+ Uint8ClampedArray: false,
1840
+ undefined: false,
1841
+ unescape: false,
1842
+ URIError: false,
1843
+ WeakMap: false,
1844
+ WeakRef: false,
1845
+ WeakSet: false
1846
+ },
1847
+ es2024: {
1848
+ AggregateError: false,
1849
+ Array: false,
1850
+ ArrayBuffer: false,
1851
+ Atomics: false,
1852
+ BigInt: false,
1853
+ BigInt64Array: false,
1854
+ BigUint64Array: false,
1855
+ Boolean: false,
1856
+ DataView: false,
1857
+ Date: false,
1858
+ decodeURI: false,
1859
+ decodeURIComponent: false,
1860
+ encodeURI: false,
1861
+ encodeURIComponent: false,
1862
+ Error: false,
1863
+ escape: false,
1864
+ eval: false,
1865
+ EvalError: false,
1866
+ FinalizationRegistry: false,
1867
+ Float32Array: false,
1868
+ Float64Array: false,
1869
+ Function: false,
1870
+ globalThis: false,
1871
+ Infinity: false,
1872
+ Int16Array: false,
1873
+ Int32Array: false,
1874
+ Int8Array: false,
1875
+ Intl: false,
1876
+ isFinite: false,
1877
+ isNaN: false,
1878
+ JSON: false,
1879
+ Map: false,
1880
+ Math: false,
1881
+ NaN: false,
1882
+ Number: false,
1883
+ Object: false,
1884
+ parseFloat: false,
1885
+ parseInt: false,
1886
+ Promise: false,
1887
+ Proxy: false,
1888
+ RangeError: false,
1889
+ ReferenceError: false,
1890
+ Reflect: false,
1891
+ RegExp: false,
1892
+ Set: false,
1893
+ SharedArrayBuffer: false,
1894
+ String: false,
1895
+ Symbol: false,
1896
+ SyntaxError: false,
1897
+ TypeError: false,
1898
+ Uint16Array: false,
1899
+ Uint32Array: false,
1900
+ Uint8Array: false,
1901
+ Uint8ClampedArray: false,
1902
+ undefined: false,
1903
+ unescape: false,
1904
+ URIError: false,
1905
+ WeakMap: false,
1906
+ WeakRef: false,
1907
+ WeakSet: false
1908
+ },
1909
+ es2025: {
1910
+ AggregateError: false,
1911
+ Array: false,
1912
+ ArrayBuffer: false,
1913
+ Atomics: false,
1914
+ BigInt: false,
1915
+ BigInt64Array: false,
1916
+ BigUint64Array: false,
1917
+ Boolean: false,
1918
+ DataView: false,
1919
+ Date: false,
1920
+ decodeURI: false,
1921
+ decodeURIComponent: false,
1922
+ encodeURI: false,
1923
+ encodeURIComponent: false,
1924
+ Error: false,
1925
+ escape: false,
1926
+ eval: false,
1927
+ EvalError: false,
1928
+ FinalizationRegistry: false,
1929
+ Float32Array: false,
1930
+ Float64Array: false,
1931
+ Function: false,
1932
+ globalThis: false,
1933
+ Infinity: false,
1934
+ Int16Array: false,
1935
+ Int32Array: false,
1936
+ Int8Array: false,
1937
+ Intl: false,
1938
+ isFinite: false,
1939
+ isNaN: false,
1940
+ Iterator: false,
1941
+ JSON: false,
1942
+ Map: false,
1943
+ Math: false,
1944
+ NaN: false,
1945
+ Number: false,
1946
+ Object: false,
1947
+ parseFloat: false,
1948
+ parseInt: false,
1949
+ Promise: false,
1950
+ Proxy: false,
1951
+ RangeError: false,
1952
+ ReferenceError: false,
1953
+ Reflect: false,
1954
+ RegExp: false,
1955
+ Set: false,
1956
+ SharedArrayBuffer: false,
1957
+ String: false,
1958
+ Symbol: false,
1959
+ SyntaxError: false,
1960
+ TypeError: false,
1961
+ Uint16Array: false,
1962
+ Uint32Array: false,
1963
+ Uint8Array: false,
1964
+ Uint8ClampedArray: false,
1965
+ undefined: false,
1966
+ unescape: false,
1967
+ URIError: false,
1968
+ WeakMap: false,
1969
+ WeakRef: false,
1970
+ WeakSet: false
1971
+ },
1972
+ es3: {
1973
+ Array: false,
1974
+ Boolean: false,
1975
+ Date: false,
1976
+ decodeURI: false,
1977
+ decodeURIComponent: false,
1978
+ encodeURI: false,
1979
+ encodeURIComponent: false,
1980
+ Error: false,
1981
+ escape: false,
1982
+ eval: false,
1983
+ EvalError: false,
1984
+ Function: false,
1985
+ Infinity: false,
1986
+ isFinite: false,
1987
+ isNaN: false,
1988
+ Math: false,
1989
+ NaN: false,
1990
+ Number: false,
1991
+ Object: false,
1992
+ parseFloat: false,
1993
+ parseInt: false,
1994
+ RangeError: false,
1995
+ ReferenceError: false,
1996
+ RegExp: false,
1997
+ String: false,
1998
+ SyntaxError: false,
1999
+ TypeError: false,
2000
+ undefined: false,
2001
+ unescape: false,
2002
+ URIError: false
2003
+ },
2004
+ es5: {
2005
+ Array: false,
2006
+ Boolean: false,
2007
+ Date: false,
2008
+ decodeURI: false,
2009
+ decodeURIComponent: false,
2010
+ encodeURI: false,
2011
+ encodeURIComponent: false,
2012
+ Error: false,
2013
+ escape: false,
2014
+ eval: false,
2015
+ EvalError: false,
2016
+ Function: false,
2017
+ Infinity: false,
2018
+ isFinite: false,
2019
+ isNaN: false,
2020
+ JSON: false,
2021
+ Math: false,
2022
+ NaN: false,
2023
+ Number: false,
2024
+ Object: false,
2025
+ parseFloat: false,
2026
+ parseInt: false,
2027
+ RangeError: false,
2028
+ ReferenceError: false,
2029
+ RegExp: false,
2030
+ String: false,
2031
+ SyntaxError: false,
2032
+ TypeError: false,
2033
+ undefined: false,
2034
+ unescape: false,
2035
+ URIError: false
2036
+ },
2037
+ greasemonkey: {
2038
+ cloneInto: false,
2039
+ createObjectIn: false,
2040
+ exportFunction: false,
2041
+ GM: false,
2042
+ GM_addElement: false,
2043
+ GM_addStyle: false,
2044
+ GM_addValueChangeListener: false,
2045
+ GM_deleteValue: false,
2046
+ GM_download: false,
2047
+ GM_getResourceText: false,
2048
+ GM_getResourceURL: false,
2049
+ GM_getTab: false,
2050
+ GM_getTabs: false,
2051
+ GM_getValue: false,
2052
+ GM_info: false,
2053
+ GM_listValues: false,
2054
+ GM_log: false,
2055
+ GM_notification: false,
2056
+ GM_openInTab: false,
2057
+ GM_registerMenuCommand: false,
2058
+ GM_removeValueChangeListener: false,
2059
+ GM_saveTab: false,
2060
+ GM_setClipboard: false,
2061
+ GM_setValue: false,
2062
+ GM_unregisterMenuCommand: false,
2063
+ GM_xmlhttpRequest: false,
2064
+ unsafeWindow: false
2065
+ },
2066
+ jasmine: {
2067
+ afterAll: false,
2068
+ afterEach: false,
2069
+ beforeAll: false,
2070
+ beforeEach: false,
2071
+ describe: false,
2072
+ expect: false,
2073
+ expectAsync: false,
2074
+ fail: false,
2075
+ fdescribe: false,
2076
+ fit: false,
2077
+ it: false,
2078
+ jasmine: false,
2079
+ pending: false,
2080
+ runs: false,
2081
+ spyOn: false,
2082
+ spyOnAllFunctions: false,
2083
+ spyOnProperty: false,
2084
+ waits: false,
2085
+ waitsFor: false,
2086
+ xdescribe: false,
2087
+ xit: false
2088
+ },
2089
+ jest: {
2090
+ afterAll: false,
2091
+ afterEach: false,
2092
+ beforeAll: false,
2093
+ beforeEach: false,
2094
+ describe: false,
2095
+ expect: false,
2096
+ fit: false,
2097
+ it: false,
2098
+ jest: false,
2099
+ test: false,
2100
+ xdescribe: false,
2101
+ xit: false,
2102
+ xtest: false
2103
+ },
2104
+ jquery: {
2105
+ $: false,
2106
+ jQuery: false
2107
+ },
2108
+ meteor: {
2109
+ $: false,
2110
+ Accounts: false,
2111
+ AccountsClient: false,
2112
+ AccountsCommon: false,
2113
+ AccountsServer: false,
2114
+ App: false,
2115
+ Assets: false,
2116
+ Blaze: false,
2117
+ check: false,
2118
+ Cordova: false,
2119
+ DDP: false,
2120
+ DDPRateLimiter: false,
2121
+ DDPServer: false,
2122
+ Deps: false,
2123
+ EJSON: false,
2124
+ Email: false,
2125
+ HTTP: false,
2126
+ Log: false,
2127
+ Match: false,
2128
+ Meteor: false,
2129
+ Mongo: false,
2130
+ MongoInternals: false,
2131
+ Npm: false,
2132
+ Package: false,
2133
+ Plugin: false,
2134
+ process: false,
2135
+ Random: false,
2136
+ ReactiveDict: false,
2137
+ ReactiveVar: false,
2138
+ Router: false,
2139
+ ServiceConfiguration: false,
2140
+ Session: false,
2141
+ share: false,
2142
+ Spacebars: false,
2143
+ Template: false,
2144
+ Tinytest: false,
2145
+ Tracker: false,
2146
+ UI: false,
2147
+ Utils: false,
2148
+ WebApp: false,
2149
+ WebAppInternals: false
2150
+ },
2151
+ mocha: {
2152
+ after: false,
2153
+ afterEach: false,
2154
+ before: false,
2155
+ beforeEach: false,
2156
+ context: false,
2157
+ describe: false,
2158
+ it: false,
2159
+ mocha: false,
2160
+ run: false,
2161
+ setup: false,
2162
+ specify: false,
2163
+ suite: false,
2164
+ suiteSetup: false,
2165
+ suiteTeardown: false,
2166
+ teardown: false,
2167
+ test: false,
2168
+ xcontext: false,
2169
+ xdescribe: false,
2170
+ xit: false,
2171
+ xspecify: false
2172
+ },
2173
+ mongo: {
2174
+ _isWindows: false,
2175
+ _rand: false,
2176
+ BulkWriteResult: false,
2177
+ cat: false,
2178
+ cd: false,
2179
+ connect: false,
2180
+ db: false,
2181
+ getHostName: false,
2182
+ getMemInfo: false,
2183
+ hostname: false,
2184
+ ISODate: false,
2185
+ listFiles: false,
2186
+ load: false,
2187
+ ls: false,
2188
+ md5sumFile: false,
2189
+ mkdir: false,
2190
+ Mongo: false,
2191
+ NumberInt: false,
2192
+ NumberLong: false,
2193
+ ObjectId: false,
2194
+ PlanCache: false,
2195
+ print: false,
2196
+ printjson: false,
2197
+ pwd: false,
2198
+ quit: false,
2199
+ removeFile: false,
2200
+ rs: false,
2201
+ sh: false,
2202
+ UUID: false,
2203
+ version: false,
2204
+ WriteResult: false
2205
+ },
2206
+ nashorn: {
2207
+ __DIR__: false,
2208
+ __FILE__: false,
2209
+ __LINE__: false,
2210
+ com: false,
2211
+ edu: false,
2212
+ exit: false,
2213
+ java: false,
2214
+ Java: false,
2215
+ javafx: false,
2216
+ JavaImporter: false,
2217
+ javax: false,
2218
+ JSAdapter: false,
2219
+ load: false,
2220
+ loadWithNewGlobal: false,
2221
+ org: false,
2222
+ Packages: false,
2223
+ print: false,
2224
+ quit: false
2225
+ },
2226
+ node: {
2227
+ __dirname: false,
2228
+ __filename: false,
2229
+ AbortController: false,
2230
+ AbortSignal: false,
2231
+ atob: false,
2232
+ Blob: false,
2233
+ BroadcastChannel: false,
2234
+ btoa: false,
2235
+ Buffer: false,
2236
+ ByteLengthQueuingStrategy: false,
2237
+ clearImmediate: false,
2238
+ clearInterval: false,
2239
+ clearTimeout: false,
2240
+ CloseEvent: false,
2241
+ CompressionStream: false,
2242
+ console: false,
2243
+ CountQueuingStrategy: false,
2244
+ crypto: false,
2245
+ Crypto: false,
2246
+ CryptoKey: false,
2247
+ CustomEvent: false,
2248
+ DecompressionStream: false,
2249
+ DOMException: false,
2250
+ Event: false,
2251
+ EventTarget: false,
2252
+ exports: true,
2253
+ fetch: false,
2254
+ File: false,
2255
+ FormData: false,
2256
+ global: false,
2257
+ Headers: false,
2258
+ MessageChannel: false,
2259
+ MessageEvent: false,
2260
+ MessagePort: false,
2261
+ module: false,
2262
+ navigator: false,
2263
+ Navigator: false,
2264
+ performance: false,
2265
+ Performance: false,
2266
+ PerformanceEntry: false,
2267
+ PerformanceMark: false,
2268
+ PerformanceMeasure: false,
2269
+ PerformanceObserver: false,
2270
+ PerformanceObserverEntryList: false,
2271
+ PerformanceResourceTiming: false,
2272
+ process: false,
2273
+ queueMicrotask: false,
2274
+ ReadableByteStreamController: false,
2275
+ ReadableStream: false,
2276
+ ReadableStreamBYOBReader: false,
2277
+ ReadableStreamBYOBRequest: false,
2278
+ ReadableStreamDefaultController: false,
2279
+ ReadableStreamDefaultReader: false,
2280
+ Request: false,
2281
+ require: false,
2282
+ Response: false,
2283
+ setImmediate: false,
2284
+ setInterval: false,
2285
+ setTimeout: false,
2286
+ structuredClone: false,
2287
+ SubtleCrypto: false,
2288
+ TextDecoder: false,
2289
+ TextDecoderStream: false,
2290
+ TextEncoder: false,
2291
+ TextEncoderStream: false,
2292
+ TransformStream: false,
2293
+ TransformStreamDefaultController: false,
2294
+ URL: false,
2295
+ URLSearchParams: false,
2296
+ WebAssembly: false,
2297
+ WebSocket: false,
2298
+ WritableStream: false,
2299
+ WritableStreamDefaultController: false,
2300
+ WritableStreamDefaultWriter: false
2301
+ },
2302
+ nodeBuiltin: {
2303
+ AbortController: false,
2304
+ AbortSignal: false,
2305
+ atob: false,
2306
+ Blob: false,
2307
+ BroadcastChannel: false,
2308
+ btoa: false,
2309
+ Buffer: false,
2310
+ ByteLengthQueuingStrategy: false,
2311
+ clearImmediate: false,
2312
+ clearInterval: false,
2313
+ clearTimeout: false,
2314
+ CloseEvent: false,
2315
+ CompressionStream: false,
2316
+ console: false,
2317
+ CountQueuingStrategy: false,
2318
+ crypto: false,
2319
+ Crypto: false,
2320
+ CryptoKey: false,
2321
+ CustomEvent: false,
2322
+ DecompressionStream: false,
2323
+ DOMException: false,
2324
+ Event: false,
2325
+ EventTarget: false,
2326
+ fetch: false,
2327
+ File: false,
2328
+ FormData: false,
2329
+ global: false,
2330
+ Headers: false,
2331
+ MessageChannel: false,
2332
+ MessageEvent: false,
2333
+ MessagePort: false,
2334
+ navigator: false,
2335
+ Navigator: false,
2336
+ performance: false,
2337
+ Performance: false,
2338
+ PerformanceEntry: false,
2339
+ PerformanceMark: false,
2340
+ PerformanceMeasure: false,
2341
+ PerformanceObserver: false,
2342
+ PerformanceObserverEntryList: false,
2343
+ PerformanceResourceTiming: false,
2344
+ process: false,
2345
+ queueMicrotask: false,
2346
+ ReadableByteStreamController: false,
2347
+ ReadableStream: false,
2348
+ ReadableStreamBYOBReader: false,
2349
+ ReadableStreamBYOBRequest: false,
2350
+ ReadableStreamDefaultController: false,
2351
+ ReadableStreamDefaultReader: false,
2352
+ Request: false,
2353
+ Response: false,
2354
+ setImmediate: false,
2355
+ setInterval: false,
2356
+ setTimeout: false,
2357
+ structuredClone: false,
2358
+ SubtleCrypto: false,
2359
+ TextDecoder: false,
2360
+ TextDecoderStream: false,
2361
+ TextEncoder: false,
2362
+ TextEncoderStream: false,
2363
+ TransformStream: false,
2364
+ TransformStreamDefaultController: false,
2365
+ URL: false,
2366
+ URLSearchParams: false,
2367
+ WebAssembly: false,
2368
+ WebSocket: false,
2369
+ WritableStream: false,
2370
+ WritableStreamDefaultController: false,
2371
+ WritableStreamDefaultWriter: false
2372
+ },
2373
+ phantomjs: {
2374
+ console: true,
2375
+ exports: true,
2376
+ phantom: true,
2377
+ require: true,
2378
+ WebPage: true
2379
+ },
2380
+ prototypejs: {
2381
+ $: false,
2382
+ $$: false,
2383
+ $A: false,
2384
+ $break: false,
2385
+ $continue: false,
2386
+ $F: false,
2387
+ $H: false,
2388
+ $R: false,
2389
+ $w: false,
2390
+ Abstract: false,
2391
+ Ajax: false,
2392
+ Autocompleter: false,
2393
+ Builder: false,
2394
+ Class: false,
2395
+ Control: false,
2396
+ Draggable: false,
2397
+ Draggables: false,
2398
+ Droppables: false,
2399
+ Effect: false,
2400
+ Element: false,
2401
+ Enumerable: false,
2402
+ Event: false,
2403
+ Field: false,
2404
+ Form: false,
2405
+ Hash: false,
2406
+ Insertion: false,
2407
+ ObjectRange: false,
2408
+ PeriodicalExecuter: false,
2409
+ Position: false,
2410
+ Prototype: false,
2411
+ Scriptaculous: false,
2412
+ Selector: false,
2413
+ Sortable: false,
2414
+ SortableObserver: false,
2415
+ Sound: false,
2416
+ Template: false,
2417
+ Toggle: false,
2418
+ Try: false
2419
+ },
2420
+ protractor: {
2421
+ $: false,
2422
+ $$: false,
2423
+ browser: false,
2424
+ by: false,
2425
+ By: false,
2426
+ DartObject: false,
2427
+ element: false,
2428
+ protractor: false
2429
+ },
2430
+ qunit: {
2431
+ asyncTest: false,
2432
+ deepEqual: false,
2433
+ equal: false,
2434
+ expect: false,
2435
+ module: false,
2436
+ notDeepEqual: false,
2437
+ notEqual: false,
2438
+ notOk: false,
2439
+ notPropEqual: false,
2440
+ notStrictEqual: false,
2441
+ ok: false,
2442
+ propEqual: false,
2443
+ QUnit: false,
2444
+ raises: false,
2445
+ start: false,
2446
+ stop: false,
2447
+ strictEqual: false,
2448
+ test: false,
2449
+ throws: false
2450
+ },
2451
+ rhino: {
2452
+ defineClass: false,
2453
+ deserialize: false,
2454
+ gc: false,
2455
+ help: false,
2456
+ importClass: false,
2457
+ importPackage: false,
2458
+ java: false,
2459
+ load: false,
2460
+ loadClass: false,
2461
+ Packages: false,
2462
+ print: false,
2463
+ quit: false,
2464
+ readFile: false,
2465
+ readUrl: false,
2466
+ runCommand: false,
2467
+ seal: false,
2468
+ serialize: false,
2469
+ spawn: false,
2470
+ sync: false,
2471
+ toint32: false,
2472
+ version: false
2473
+ },
2474
+ serviceworker: {
2475
+ addEventListener: false,
2476
+ applicationCache: false,
2477
+ atob: false,
2478
+ Blob: false,
2479
+ BroadcastChannel: false,
2480
+ btoa: false,
2481
+ ByteLengthQueuingStrategy: false,
2482
+ Cache: false,
2483
+ caches: false,
2484
+ CacheStorage: false,
2485
+ clearInterval: false,
2486
+ clearTimeout: false,
2487
+ Client: false,
2488
+ clients: false,
2489
+ Clients: false,
2490
+ close: true,
2491
+ CompressionStream: false,
2492
+ console: false,
2493
+ CountQueuingStrategy: false,
2494
+ crypto: false,
2495
+ Crypto: false,
2496
+ CryptoKey: false,
2497
+ CustomEvent: false,
2498
+ DecompressionStream: false,
2499
+ ErrorEvent: false,
2500
+ Event: false,
2501
+ ExtendableEvent: false,
2502
+ ExtendableMessageEvent: false,
2503
+ fetch: false,
2504
+ FetchEvent: false,
2505
+ File: false,
2506
+ FileReaderSync: false,
2507
+ FormData: false,
2508
+ Headers: false,
2509
+ IDBCursor: false,
2510
+ IDBCursorWithValue: false,
2511
+ IDBDatabase: false,
2512
+ IDBFactory: false,
2513
+ IDBIndex: false,
2514
+ IDBKeyRange: false,
2515
+ IDBObjectStore: false,
2516
+ IDBOpenDBRequest: false,
2517
+ IDBRequest: false,
2518
+ IDBTransaction: false,
2519
+ IDBVersionChangeEvent: false,
2520
+ ImageData: false,
2521
+ importScripts: false,
2522
+ indexedDB: false,
2523
+ location: false,
2524
+ MessageChannel: false,
2525
+ MessageEvent: false,
2526
+ MessagePort: false,
2527
+ name: false,
2528
+ navigator: false,
2529
+ Notification: false,
2530
+ onclose: true,
2531
+ onconnect: true,
2532
+ onerror: true,
2533
+ onfetch: true,
2534
+ oninstall: true,
2535
+ onlanguagechange: true,
2536
+ onmessage: true,
2537
+ onmessageerror: true,
2538
+ onnotificationclick: true,
2539
+ onnotificationclose: true,
2540
+ onoffline: true,
2541
+ ononline: true,
2542
+ onpush: true,
2543
+ onpushsubscriptionchange: true,
2544
+ onrejectionhandled: true,
2545
+ onsync: true,
2546
+ onunhandledrejection: true,
2547
+ performance: false,
2548
+ Performance: false,
2549
+ PerformanceEntry: false,
2550
+ PerformanceMark: false,
2551
+ PerformanceMeasure: false,
2552
+ PerformanceNavigation: false,
2553
+ PerformanceObserver: false,
2554
+ PerformanceObserverEntryList: false,
2555
+ PerformanceResourceTiming: false,
2556
+ PerformanceTiming: false,
2557
+ postMessage: true,
2558
+ queueMicrotask: false,
2559
+ ReadableByteStreamController: false,
2560
+ ReadableStream: false,
2561
+ ReadableStreamBYOBReader: false,
2562
+ ReadableStreamBYOBRequest: false,
2563
+ ReadableStreamDefaultController: false,
2564
+ ReadableStreamDefaultReader: false,
2565
+ registration: false,
2566
+ removeEventListener: false,
2567
+ Request: false,
2568
+ Response: false,
2569
+ self: false,
2570
+ ServiceWorker: false,
2571
+ ServiceWorkerContainer: false,
2572
+ ServiceWorkerGlobalScope: false,
2573
+ ServiceWorkerMessageEvent: false,
2574
+ ServiceWorkerRegistration: false,
2575
+ setInterval: false,
2576
+ setTimeout: false,
2577
+ skipWaiting: false,
2578
+ SubtleCrypto: false,
2579
+ TextDecoder: false,
2580
+ TextDecoderStream: false,
2581
+ TextEncoder: false,
2582
+ TextEncoderStream: false,
2583
+ TransformStream: false,
2584
+ TransformStreamDefaultController: false,
2585
+ URL: false,
2586
+ URLSearchParams: false,
2587
+ WebAssembly: false,
2588
+ WebSocket: false,
2589
+ WindowClient: false,
2590
+ Worker: false,
2591
+ WorkerGlobalScope: false,
2592
+ WritableStream: false,
2593
+ WritableStreamDefaultController: false,
2594
+ WritableStreamDefaultWriter: false,
2595
+ XMLHttpRequest: false
2596
+ },
2597
+ "shared-node-browser": {
2598
+ AbortController: false,
2599
+ AbortSignal: false,
2600
+ atob: false,
2601
+ Blob: false,
2602
+ BroadcastChannel: false,
2603
+ btoa: false,
2604
+ ByteLengthQueuingStrategy: false,
2605
+ clearInterval: false,
2606
+ clearTimeout: false,
2607
+ CloseEvent: false,
2608
+ CompressionStream: false,
2609
+ console: false,
2610
+ CountQueuingStrategy: false,
2611
+ crypto: false,
2612
+ Crypto: false,
2613
+ CryptoKey: false,
2614
+ CustomEvent: false,
2615
+ DecompressionStream: false,
2616
+ DOMException: false,
2617
+ Event: false,
2618
+ EventTarget: false,
2619
+ fetch: false,
2620
+ File: false,
2621
+ FormData: false,
2622
+ Headers: false,
2623
+ MessageChannel: false,
2624
+ MessageEvent: false,
2625
+ MessagePort: false,
2626
+ navigator: false,
2627
+ Navigator: false,
2628
+ performance: false,
2629
+ Performance: false,
2630
+ PerformanceEntry: false,
2631
+ PerformanceMark: false,
2632
+ PerformanceMeasure: false,
2633
+ PerformanceObserver: false,
2634
+ PerformanceObserverEntryList: false,
2635
+ PerformanceResourceTiming: false,
2636
+ queueMicrotask: false,
2637
+ ReadableByteStreamController: false,
2638
+ ReadableStream: false,
2639
+ ReadableStreamBYOBReader: false,
2640
+ ReadableStreamBYOBRequest: false,
2641
+ ReadableStreamDefaultController: false,
2642
+ ReadableStreamDefaultReader: false,
2643
+ Request: false,
2644
+ Response: false,
2645
+ setInterval: false,
2646
+ setTimeout: false,
2647
+ structuredClone: false,
2648
+ SubtleCrypto: false,
2649
+ TextDecoder: false,
2650
+ TextDecoderStream: false,
2651
+ TextEncoder: false,
2652
+ TextEncoderStream: false,
2653
+ TransformStream: false,
2654
+ TransformStreamDefaultController: false,
2655
+ URL: false,
2656
+ URLSearchParams: false,
2657
+ WebAssembly: false,
2658
+ WebSocket: false,
2659
+ WritableStream: false,
2660
+ WritableStreamDefaultController: false,
2661
+ WritableStreamDefaultWriter: false
2662
+ },
2663
+ shelljs: {
2664
+ cat: false,
2665
+ cd: false,
2666
+ chmod: false,
2667
+ config: false,
2668
+ cp: false,
2669
+ dirs: false,
2670
+ echo: false,
2671
+ env: false,
2672
+ error: false,
2673
+ exec: false,
2674
+ exit: false,
2675
+ find: false,
2676
+ grep: false,
2677
+ head: false,
2678
+ ln: false,
2679
+ ls: false,
2680
+ mkdir: false,
2681
+ mv: false,
2682
+ popd: false,
2683
+ pushd: false,
2684
+ pwd: false,
2685
+ rm: false,
2686
+ sed: false,
2687
+ set: false,
2688
+ ShellString: false,
2689
+ sort: false,
2690
+ tail: false,
2691
+ tempdir: false,
2692
+ test: false,
2693
+ touch: false,
2694
+ uniq: false,
2695
+ which: false
2696
+ },
2697
+ vitest: {
2698
+ afterAll: false,
2699
+ afterEach: false,
2700
+ assert: false,
2701
+ assertType: false,
2702
+ beforeAll: false,
2703
+ beforeEach: false,
2704
+ chai: false,
2705
+ describe: false,
2706
+ expect: false,
2707
+ expectTypeOf: false,
2708
+ it: false,
2709
+ onTestFailed: false,
2710
+ onTestFinished: false,
2711
+ suite: false,
2712
+ test: false,
2713
+ vi: false,
2714
+ vitest: false
2715
+ },
2716
+ webextensions: {
2717
+ browser: false,
2718
+ chrome: false,
2719
+ opr: false
2720
+ },
2721
+ worker: {
2722
+ AbortController: false,
2723
+ AbortSignal: false,
2724
+ addEventListener: false,
2725
+ ai: false,
2726
+ atob: false,
2727
+ AudioData: false,
2728
+ AudioDecoder: false,
2729
+ AudioEncoder: false,
2730
+ BackgroundFetchManager: false,
2731
+ BackgroundFetchRecord: false,
2732
+ BackgroundFetchRegistration: false,
2733
+ BarcodeDetector: false,
2734
+ Blob: false,
2735
+ BroadcastChannel: false,
2736
+ btoa: false,
2737
+ ByteLengthQueuingStrategy: false,
2738
+ Cache: false,
2739
+ caches: false,
2740
+ CacheStorage: false,
2741
+ cancelAnimationFrame: false,
2742
+ CanvasGradient: false,
2743
+ CanvasPattern: false,
2744
+ clearInterval: false,
2745
+ clearTimeout: false,
2746
+ close: false,
2747
+ CloseEvent: false,
2748
+ CompressionStream: false,
2749
+ console: false,
2750
+ CountQueuingStrategy: false,
2751
+ createImageBitmap: false,
2752
+ CropTarget: false,
2753
+ crossOriginIsolated: false,
2754
+ crypto: false,
2755
+ Crypto: false,
2756
+ CryptoKey: false,
2757
+ CSSSkewX: false,
2758
+ CSSSkewY: false,
2759
+ CustomEvent: false,
2760
+ DecompressionStream: false,
2761
+ DedicatedWorkerGlobalScope: false,
2762
+ dispatchEvent: false,
2763
+ DOMException: false,
2764
+ DOMMatrix: false,
2765
+ DOMMatrixReadOnly: false,
2766
+ DOMPoint: false,
2767
+ DOMPointReadOnly: false,
2768
+ DOMQuad: false,
2769
+ DOMRect: false,
2770
+ DOMRectReadOnly: false,
2771
+ DOMStringList: false,
2772
+ EncodedAudioChunk: false,
2773
+ EncodedVideoChunk: false,
2774
+ ErrorEvent: false,
2775
+ Event: false,
2776
+ EventSource: false,
2777
+ EventTarget: false,
2778
+ fetch: false,
2779
+ File: false,
2780
+ FileList: false,
2781
+ FileReader: false,
2782
+ FileReaderSync: false,
2783
+ FileSystemDirectoryHandle: false,
2784
+ FileSystemFileHandle: false,
2785
+ FileSystemHandle: false,
2786
+ FileSystemSyncAccessHandle: false,
2787
+ FileSystemWritableFileStream: false,
2788
+ FontFace: false,
2789
+ fonts: false,
2790
+ FormData: false,
2791
+ GPU: false,
2792
+ GPUAdapter: false,
2793
+ GPUAdapterInfo: false,
2794
+ GPUBindGroup: false,
2795
+ GPUBindGroupLayout: false,
2796
+ GPUBuffer: false,
2797
+ GPUBufferUsage: false,
2798
+ GPUCanvasContext: false,
2799
+ GPUColorWrite: false,
2800
+ GPUCommandBuffer: false,
2801
+ GPUCommandEncoder: false,
2802
+ GPUCompilationInfo: false,
2803
+ GPUCompilationMessage: false,
2804
+ GPUComputePassEncoder: false,
2805
+ GPUComputePipeline: false,
2806
+ GPUDevice: false,
2807
+ GPUDeviceLostInfo: false,
2808
+ GPUError: false,
2809
+ GPUExternalTexture: false,
2810
+ GPUInternalError: false,
2811
+ GPUMapMode: false,
2812
+ GPUOutOfMemoryError: false,
2813
+ GPUPipelineError: false,
2814
+ GPUPipelineLayout: false,
2815
+ GPUQuerySet: false,
2816
+ GPUQueue: false,
2817
+ GPURenderBundle: false,
2818
+ GPURenderBundleEncoder: false,
2819
+ GPURenderPassEncoder: false,
2820
+ GPURenderPipeline: false,
2821
+ GPUSampler: false,
2822
+ GPUShaderModule: false,
2823
+ GPUShaderStage: false,
2824
+ GPUSupportedFeatures: false,
2825
+ GPUSupportedLimits: false,
2826
+ GPUTexture: false,
2827
+ GPUTextureUsage: false,
2828
+ GPUTextureView: false,
2829
+ GPUUncapturedErrorEvent: false,
2830
+ GPUValidationError: false,
2831
+ Headers: false,
2832
+ HID: false,
2833
+ HIDConnectionEvent: false,
2834
+ HIDDevice: false,
2835
+ HIDInputReportEvent: false,
2836
+ IDBCursor: false,
2837
+ IDBCursorWithValue: false,
2838
+ IDBDatabase: false,
2839
+ IDBFactory: false,
2840
+ IDBIndex: false,
2841
+ IDBKeyRange: false,
2842
+ IDBObjectStore: false,
2843
+ IDBOpenDBRequest: false,
2844
+ IDBRequest: false,
2845
+ IDBTransaction: false,
2846
+ IDBVersionChangeEvent: false,
2847
+ IdleDetector: false,
2848
+ ImageBitmap: false,
2849
+ ImageBitmapRenderingContext: false,
2850
+ ImageData: false,
2851
+ ImageDecoder: false,
2852
+ ImageTrack: false,
2853
+ ImageTrackList: false,
2854
+ importScripts: false,
2855
+ indexedDB: false,
2856
+ isSecureContext: false,
2857
+ location: false,
2858
+ Lock: false,
2859
+ LockManager: false,
2860
+ MediaCapabilities: false,
2861
+ MediaSource: false,
2862
+ MediaSourceHandle: false,
2863
+ MessageChannel: false,
2864
+ MessageEvent: false,
2865
+ MessagePort: false,
2866
+ name: false,
2867
+ NavigationPreloadManager: false,
2868
+ navigator: false,
2869
+ NavigatorUAData: false,
2870
+ NetworkInformation: false,
2871
+ Notification: false,
2872
+ OffscreenCanvas: false,
2873
+ OffscreenCanvasRenderingContext2D: false,
2874
+ onerror: true,
2875
+ onlanguagechange: true,
2876
+ onmessage: true,
2877
+ onmessageerror: true,
2878
+ onrejectionhandled: true,
2879
+ onunhandledrejection: true,
2880
+ origin: false,
2881
+ Path2D: false,
2882
+ performance: false,
2883
+ Performance: false,
2884
+ PerformanceEntry: false,
2885
+ PerformanceMark: false,
2886
+ PerformanceMeasure: false,
2887
+ PerformanceObserver: false,
2888
+ PerformanceObserverEntryList: false,
2889
+ PerformanceResourceTiming: false,
2890
+ PerformanceServerTiming: false,
2891
+ PeriodicSyncManager: false,
2892
+ Permissions: false,
2893
+ PermissionStatus: false,
2894
+ PERSISTENT: false,
2895
+ postMessage: false,
2896
+ PressureObserver: false,
2897
+ PressureRecord: false,
2898
+ ProgressEvent: false,
2899
+ PromiseRejectionEvent: false,
2900
+ PushManager: false,
2901
+ PushSubscription: false,
2902
+ PushSubscriptionOptions: false,
2903
+ queueMicrotask: false,
2904
+ ReadableByteStreamController: false,
2905
+ ReadableStream: false,
2906
+ ReadableStreamBYOBReader: false,
2907
+ ReadableStreamBYOBRequest: false,
2908
+ ReadableStreamDefaultController: false,
2909
+ ReadableStreamDefaultReader: false,
2910
+ removeEventListener: false,
2911
+ reportError: false,
2912
+ ReportingObserver: false,
2913
+ Request: false,
2914
+ requestAnimationFrame: false,
2915
+ Response: false,
2916
+ RTCDataChannel: false,
2917
+ RTCEncodedAudioFrame: false,
2918
+ RTCEncodedVideoFrame: false,
2919
+ scheduler: false,
2920
+ Scheduler: false,
2921
+ SecurityPolicyViolationEvent: false,
2922
+ self: false,
2923
+ Serial: false,
2924
+ SerialPort: false,
2925
+ ServiceWorkerRegistration: false,
2926
+ setInterval: false,
2927
+ setTimeout: false,
2928
+ SourceBuffer: false,
2929
+ SourceBufferList: false,
2930
+ StorageBucket: false,
2931
+ StorageBucketManager: false,
2932
+ StorageManager: false,
2933
+ structuredClone: false,
2934
+ SubtleCrypto: false,
2935
+ SyncManager: false,
2936
+ TaskController: false,
2937
+ TaskPriorityChangeEvent: false,
2938
+ TaskSignal: false,
2939
+ TEMPORARY: false,
2940
+ TextDecoder: false,
2941
+ TextDecoderStream: false,
2942
+ TextEncoder: false,
2943
+ TextEncoderStream: false,
2944
+ TextMetrics: false,
2945
+ TransformStream: false,
2946
+ TransformStreamDefaultController: false,
2947
+ TrustedHTML: false,
2948
+ TrustedScript: false,
2949
+ TrustedScriptURL: false,
2950
+ TrustedTypePolicy: false,
2951
+ TrustedTypePolicyFactory: false,
2952
+ trustedTypes: false,
2953
+ URL: false,
2954
+ URLPattern: false,
2955
+ URLSearchParams: false,
2956
+ USB: false,
2957
+ USBAlternateInterface: false,
2958
+ USBConfiguration: false,
2959
+ USBConnectionEvent: false,
2960
+ USBDevice: false,
2961
+ USBEndpoint: false,
2962
+ USBInterface: false,
2963
+ USBInTransferResult: false,
2964
+ USBIsochronousInTransferPacket: false,
2965
+ USBIsochronousInTransferResult: false,
2966
+ USBIsochronousOutTransferPacket: false,
2967
+ USBIsochronousOutTransferResult: false,
2968
+ USBOutTransferResult: false,
2969
+ UserActivation: false,
2970
+ VideoColorSpace: false,
2971
+ VideoDecoder: false,
2972
+ VideoEncoder: false,
2973
+ VideoFrame: false,
2974
+ WebAssembly: false,
2975
+ WebGL2RenderingContext: false,
2976
+ WebGLActiveInfo: false,
2977
+ WebGLBuffer: false,
2978
+ WebGLContextEvent: false,
2979
+ WebGLFramebuffer: false,
2980
+ WebGLObject: false,
2981
+ WebGLProgram: false,
2982
+ WebGLQuery: false,
2983
+ WebGLRenderbuffer: false,
2984
+ WebGLRenderingContext: false,
2985
+ WebGLSampler: false,
2986
+ WebGLShader: false,
2987
+ WebGLShaderPrecisionFormat: false,
2988
+ WebGLSync: false,
2989
+ WebGLTexture: false,
2990
+ WebGLTransformFeedback: false,
2991
+ WebGLUniformLocation: false,
2992
+ WebGLVertexArrayObject: false,
2993
+ webkitRequestFileSystem: false,
2994
+ webkitRequestFileSystemSync: false,
2995
+ webkitResolveLocalFileSystemSyncURL: false,
2996
+ webkitResolveLocalFileSystemURL: false,
2997
+ WebSocket: false,
2998
+ WebSocketError: false,
2999
+ WebSocketStream: false,
3000
+ WebTransport: false,
3001
+ WebTransportBidirectionalStream: false,
3002
+ WebTransportDatagramDuplexStream: false,
3003
+ WebTransportError: false,
3004
+ WGSLLanguageFeatures: false,
3005
+ Worker: false,
3006
+ WorkerGlobalScope: false,
3007
+ WorkerLocation: false,
3008
+ WorkerNavigator: false,
3009
+ WritableStream: false,
3010
+ WritableStreamDefaultController: false,
3011
+ WritableStreamDefaultWriter: false,
3012
+ XMLHttpRequest: false,
3013
+ XMLHttpRequestEventTarget: false,
3014
+ XMLHttpRequestUpload: false
3015
+ },
3016
+ wsh: {
3017
+ ActiveXObject: false,
3018
+ CollectGarbage: false,
3019
+ Debug: false,
3020
+ Enumerator: false,
3021
+ GetObject: false,
3022
+ RuntimeObject: false,
3023
+ ScriptEngine: false,
3024
+ ScriptEngineBuildVersion: false,
3025
+ ScriptEngineMajorVersion: false,
3026
+ ScriptEngineMinorVersion: false,
3027
+ VBArray: false,
3028
+ WScript: false,
3029
+ WSH: false
3030
+ },
3031
+ yui: {
3032
+ YAHOO: false,
3033
+ YAHOO_config: false,
3034
+ YUI: false,
3035
+ YUI_config: false
3036
+ }
3037
+ };
3038
+ }
3039
+ });
3040
+
3041
+ // ../../node_modules/globals/index.js
3042
+ var require_globals2 = __commonJS({
3043
+ "../../node_modules/globals/index.js"(exports, module) {
3044
+ module.exports = require_globals();
3045
+ }
3046
+ });
3047
+
3048
+ // node_modules/@eslint/js/package.json
3049
+ var require_package = __commonJS({
3050
+ "node_modules/@eslint/js/package.json"(exports, module) {
3051
+ module.exports = {
3052
+ name: "@eslint/js",
3053
+ version: "9.38.0",
3054
+ description: "ESLint JavaScript language implementation",
3055
+ funding: "https://eslint.org/donate",
3056
+ main: "./src/index.js",
3057
+ types: "./types/index.d.ts",
3058
+ scripts: {
3059
+ "test:types": "tsc -p tests/types/tsconfig.json"
3060
+ },
3061
+ files: [
3062
+ "LICENSE",
3063
+ "README.md",
3064
+ "src",
3065
+ "types"
3066
+ ],
3067
+ publishConfig: {
3068
+ access: "public"
3069
+ },
3070
+ repository: {
3071
+ type: "git",
3072
+ url: "https://github.com/eslint/eslint.git",
3073
+ directory: "packages/js"
3074
+ },
3075
+ homepage: "https://eslint.org",
3076
+ bugs: "https://github.com/eslint/eslint/issues/",
3077
+ keywords: [
3078
+ "javascript",
3079
+ "eslint-plugin",
3080
+ "eslint"
3081
+ ],
3082
+ license: "MIT",
3083
+ engines: {
3084
+ node: "^18.18.0 || ^20.9.0 || >=21.1.0"
3085
+ }
3086
+ };
3087
+ }
3088
+ });
3089
+
3090
+ // node_modules/@eslint/js/src/configs/eslint-all.js
3091
+ var require_eslint_all = __commonJS({
3092
+ "node_modules/@eslint/js/src/configs/eslint-all.js"(exports, module) {
3093
+ module.exports = Object.freeze({
3094
+ rules: Object.freeze({
3095
+ "accessor-pairs": "error",
3096
+ "array-callback-return": "error",
3097
+ "arrow-body-style": "error",
3098
+ "block-scoped-var": "error",
3099
+ "camelcase": "error",
3100
+ "capitalized-comments": "error",
3101
+ "class-methods-use-this": "error",
3102
+ "complexity": "error",
3103
+ "consistent-return": "error",
3104
+ "consistent-this": "error",
3105
+ "constructor-super": "error",
3106
+ "curly": "error",
3107
+ "default-case": "error",
3108
+ "default-case-last": "error",
3109
+ "default-param-last": "error",
3110
+ "dot-notation": "error",
3111
+ "eqeqeq": "error",
3112
+ "for-direction": "error",
3113
+ "func-name-matching": "error",
3114
+ "func-names": "error",
3115
+ "func-style": "error",
3116
+ "getter-return": "error",
3117
+ "grouped-accessor-pairs": "error",
3118
+ "guard-for-in": "error",
3119
+ "id-denylist": "error",
3120
+ "id-length": "error",
3121
+ "id-match": "error",
3122
+ "init-declarations": "error",
3123
+ "logical-assignment-operators": "error",
3124
+ "max-classes-per-file": "error",
3125
+ "max-depth": "error",
3126
+ "max-lines": "error",
3127
+ "max-lines-per-function": "error",
3128
+ "max-nested-callbacks": "error",
3129
+ "max-params": "error",
3130
+ "max-statements": "error",
3131
+ "new-cap": "error",
3132
+ "no-alert": "error",
3133
+ "no-array-constructor": "error",
3134
+ "no-async-promise-executor": "error",
3135
+ "no-await-in-loop": "error",
3136
+ "no-bitwise": "error",
3137
+ "no-caller": "error",
3138
+ "no-case-declarations": "error",
3139
+ "no-class-assign": "error",
3140
+ "no-compare-neg-zero": "error",
3141
+ "no-cond-assign": "error",
3142
+ "no-console": "error",
3143
+ "no-const-assign": "error",
3144
+ "no-constant-binary-expression": "error",
3145
+ "no-constant-condition": "error",
3146
+ "no-constructor-return": "error",
3147
+ "no-continue": "error",
3148
+ "no-control-regex": "error",
3149
+ "no-debugger": "error",
3150
+ "no-delete-var": "error",
3151
+ "no-div-regex": "error",
3152
+ "no-dupe-args": "error",
3153
+ "no-dupe-class-members": "error",
3154
+ "no-dupe-else-if": "error",
3155
+ "no-dupe-keys": "error",
3156
+ "no-duplicate-case": "error",
3157
+ "no-duplicate-imports": "error",
3158
+ "no-else-return": "error",
3159
+ "no-empty": "error",
3160
+ "no-empty-character-class": "error",
3161
+ "no-empty-function": "error",
3162
+ "no-empty-pattern": "error",
3163
+ "no-empty-static-block": "error",
3164
+ "no-eq-null": "error",
3165
+ "no-eval": "error",
3166
+ "no-ex-assign": "error",
3167
+ "no-extend-native": "error",
3168
+ "no-extra-bind": "error",
3169
+ "no-extra-boolean-cast": "error",
3170
+ "no-extra-label": "error",
3171
+ "no-fallthrough": "error",
3172
+ "no-func-assign": "error",
3173
+ "no-global-assign": "error",
3174
+ "no-implicit-coercion": "error",
3175
+ "no-implicit-globals": "error",
3176
+ "no-implied-eval": "error",
3177
+ "no-import-assign": "error",
3178
+ "no-inline-comments": "error",
3179
+ "no-inner-declarations": "error",
3180
+ "no-invalid-regexp": "error",
3181
+ "no-invalid-this": "error",
3182
+ "no-irregular-whitespace": "error",
3183
+ "no-iterator": "error",
3184
+ "no-label-var": "error",
3185
+ "no-labels": "error",
3186
+ "no-lone-blocks": "error",
3187
+ "no-lonely-if": "error",
3188
+ "no-loop-func": "error",
3189
+ "no-loss-of-precision": "error",
3190
+ "no-magic-numbers": "error",
3191
+ "no-misleading-character-class": "error",
3192
+ "no-multi-assign": "error",
3193
+ "no-multi-str": "error",
3194
+ "no-negated-condition": "error",
3195
+ "no-nested-ternary": "error",
3196
+ "no-new": "error",
3197
+ "no-new-func": "error",
3198
+ "no-new-native-nonconstructor": "error",
3199
+ "no-new-wrappers": "error",
3200
+ "no-nonoctal-decimal-escape": "error",
3201
+ "no-obj-calls": "error",
3202
+ "no-object-constructor": "error",
3203
+ "no-octal": "error",
3204
+ "no-octal-escape": "error",
3205
+ "no-param-reassign": "error",
3206
+ "no-plusplus": "error",
3207
+ "no-promise-executor-return": "error",
3208
+ "no-proto": "error",
3209
+ "no-prototype-builtins": "error",
3210
+ "no-redeclare": "error",
3211
+ "no-regex-spaces": "error",
3212
+ "no-restricted-exports": "error",
3213
+ "no-restricted-globals": "error",
3214
+ "no-restricted-imports": "error",
3215
+ "no-restricted-properties": "error",
3216
+ "no-restricted-syntax": "error",
3217
+ "no-return-assign": "error",
3218
+ "no-script-url": "error",
3219
+ "no-self-assign": "error",
3220
+ "no-self-compare": "error",
3221
+ "no-sequences": "error",
3222
+ "no-setter-return": "error",
3223
+ "no-shadow": "error",
3224
+ "no-shadow-restricted-names": "error",
3225
+ "no-sparse-arrays": "error",
3226
+ "no-template-curly-in-string": "error",
3227
+ "no-ternary": "error",
3228
+ "no-this-before-super": "error",
3229
+ "no-throw-literal": "error",
3230
+ "no-unassigned-vars": "error",
3231
+ "no-undef": "error",
3232
+ "no-undef-init": "error",
3233
+ "no-undefined": "error",
3234
+ "no-underscore-dangle": "error",
3235
+ "no-unexpected-multiline": "error",
3236
+ "no-unmodified-loop-condition": "error",
3237
+ "no-unneeded-ternary": "error",
3238
+ "no-unreachable": "error",
3239
+ "no-unreachable-loop": "error",
3240
+ "no-unsafe-finally": "error",
3241
+ "no-unsafe-negation": "error",
3242
+ "no-unsafe-optional-chaining": "error",
3243
+ "no-unused-expressions": "error",
3244
+ "no-unused-labels": "error",
3245
+ "no-unused-private-class-members": "error",
3246
+ "no-unused-vars": "error",
3247
+ "no-use-before-define": "error",
3248
+ "no-useless-assignment": "error",
3249
+ "no-useless-backreference": "error",
3250
+ "no-useless-call": "error",
3251
+ "no-useless-catch": "error",
3252
+ "no-useless-computed-key": "error",
3253
+ "no-useless-concat": "error",
3254
+ "no-useless-constructor": "error",
3255
+ "no-useless-escape": "error",
3256
+ "no-useless-rename": "error",
3257
+ "no-useless-return": "error",
3258
+ "no-var": "error",
3259
+ "no-void": "error",
3260
+ "no-warning-comments": "error",
3261
+ "no-with": "error",
3262
+ "object-shorthand": "error",
3263
+ "one-var": "error",
3264
+ "operator-assignment": "error",
3265
+ "prefer-arrow-callback": "error",
3266
+ "prefer-const": "error",
3267
+ "prefer-destructuring": "error",
3268
+ "prefer-exponentiation-operator": "error",
3269
+ "prefer-named-capture-group": "error",
3270
+ "prefer-numeric-literals": "error",
3271
+ "prefer-object-has-own": "error",
3272
+ "prefer-object-spread": "error",
3273
+ "prefer-promise-reject-errors": "error",
3274
+ "prefer-regex-literals": "error",
3275
+ "prefer-rest-params": "error",
3276
+ "prefer-spread": "error",
3277
+ "prefer-template": "error",
3278
+ "preserve-caught-error": "error",
3279
+ "radix": "error",
3280
+ "require-atomic-updates": "error",
3281
+ "require-await": "error",
3282
+ "require-unicode-regexp": "error",
3283
+ "require-yield": "error",
3284
+ "sort-imports": "error",
3285
+ "sort-keys": "error",
3286
+ "sort-vars": "error",
3287
+ "strict": "error",
3288
+ "symbol-description": "error",
3289
+ "unicode-bom": "error",
3290
+ "use-isnan": "error",
3291
+ "valid-typeof": "error",
3292
+ "vars-on-top": "error",
3293
+ "yoda": "error"
3294
+ })
3295
+ });
3296
+ }
3297
+ });
3298
+
3299
+ // node_modules/@eslint/js/src/configs/eslint-recommended.js
3300
+ var require_eslint_recommended = __commonJS({
3301
+ "node_modules/@eslint/js/src/configs/eslint-recommended.js"(exports, module) {
3302
+ module.exports = Object.freeze({
3303
+ rules: Object.freeze({
3304
+ "constructor-super": "error",
3305
+ "for-direction": "error",
3306
+ "getter-return": "error",
3307
+ "no-async-promise-executor": "error",
3308
+ "no-case-declarations": "error",
3309
+ "no-class-assign": "error",
3310
+ "no-compare-neg-zero": "error",
3311
+ "no-cond-assign": "error",
3312
+ "no-const-assign": "error",
3313
+ "no-constant-binary-expression": "error",
3314
+ "no-constant-condition": "error",
3315
+ "no-control-regex": "error",
3316
+ "no-debugger": "error",
3317
+ "no-delete-var": "error",
3318
+ "no-dupe-args": "error",
3319
+ "no-dupe-class-members": "error",
3320
+ "no-dupe-else-if": "error",
3321
+ "no-dupe-keys": "error",
3322
+ "no-duplicate-case": "error",
3323
+ "no-empty": "error",
3324
+ "no-empty-character-class": "error",
3325
+ "no-empty-pattern": "error",
3326
+ "no-empty-static-block": "error",
3327
+ "no-ex-assign": "error",
3328
+ "no-extra-boolean-cast": "error",
3329
+ "no-fallthrough": "error",
3330
+ "no-func-assign": "error",
3331
+ "no-global-assign": "error",
3332
+ "no-import-assign": "error",
3333
+ "no-invalid-regexp": "error",
3334
+ "no-irregular-whitespace": "error",
3335
+ "no-loss-of-precision": "error",
3336
+ "no-misleading-character-class": "error",
3337
+ "no-new-native-nonconstructor": "error",
3338
+ "no-nonoctal-decimal-escape": "error",
3339
+ "no-obj-calls": "error",
3340
+ "no-octal": "error",
3341
+ "no-prototype-builtins": "error",
3342
+ "no-redeclare": "error",
3343
+ "no-regex-spaces": "error",
3344
+ "no-self-assign": "error",
3345
+ "no-setter-return": "error",
3346
+ "no-shadow-restricted-names": "error",
3347
+ "no-sparse-arrays": "error",
3348
+ "no-this-before-super": "error",
3349
+ "no-undef": "error",
3350
+ "no-unexpected-multiline": "error",
3351
+ "no-unreachable": "error",
3352
+ "no-unsafe-finally": "error",
3353
+ "no-unsafe-negation": "error",
3354
+ "no-unsafe-optional-chaining": "error",
3355
+ "no-unused-labels": "error",
3356
+ "no-unused-private-class-members": "error",
3357
+ "no-unused-vars": "error",
3358
+ "no-useless-backreference": "error",
3359
+ "no-useless-catch": "error",
3360
+ "no-useless-escape": "error",
3361
+ "no-with": "error",
3362
+ "require-yield": "error",
3363
+ "use-isnan": "error",
3364
+ "valid-typeof": "error"
3365
+ })
3366
+ });
3367
+ }
23
3368
  });
24
- module.exports = config;
3369
+
3370
+ // node_modules/@eslint/js/src/index.js
3371
+ var require_src = __commonJS({
3372
+ "node_modules/@eslint/js/src/index.js"(exports, module) {
3373
+ var { name, version } = require_package();
3374
+ module.exports = {
3375
+ meta: {
3376
+ name,
3377
+ version
3378
+ },
3379
+ configs: {
3380
+ all: require_eslint_all(),
3381
+ recommended: require_eslint_recommended()
3382
+ }
3383
+ };
3384
+ }
3385
+ });
3386
+
3387
+ // src/config/es.ts
3388
+ var import_globals = __toESM(require_globals2());
3389
+ var import_js = __toESM(require_src());
3390
+
3391
+ // src/config/createRules.ts
3392
+ function createRules(prefix) {
3393
+ return {
3394
+ [`${prefix}no-unused-vars`]: ["error", { argsIgnorePattern: "^_" }]
3395
+ };
3396
+ }
3397
+
3398
+ // src/config/es.ts
3399
+ async function es(options) {
3400
+ const { rules = {} } = options;
3401
+ return [
3402
+ {
3403
+ name: "w5s/es/setup",
3404
+ languageOptions: {
3405
+ ecmaVersion: Project.ecmaVersion(),
3406
+ globals: {
3407
+ ...import_globals.default.browser,
3408
+ ...import_globals.default[`es${Project.ecmaVersion()}`],
3409
+ ...import_globals.default.node,
3410
+ __DEV__: "readonly",
3411
+ __PROD__: "readonly",
3412
+ __TEST__: "readonly",
3413
+ document: "readonly",
3414
+ navigator: "readonly",
3415
+ window: "readonly"
3416
+ },
3417
+ parserOptions: {
3418
+ ecmaFeatures: {
3419
+ jsx: true
3420
+ },
3421
+ ecmaVersion: Project.ecmaVersion(),
3422
+ sourceType: "module"
3423
+ },
3424
+ sourceType: "module"
3425
+ },
3426
+ linterOptions: {
3427
+ reportUnusedDisableDirectives: true
3428
+ }
3429
+ },
3430
+ {
3431
+ name: "w5s/es/rules",
3432
+ plugins: {},
3433
+ rules: {
3434
+ ...import_js.default.configs.recommended.rules,
3435
+ ...createRules(""),
3436
+ ...rules
3437
+ }
3438
+ }
3439
+ ];
3440
+ }
3441
+ var getGitignore = async (cwd, prefix = "") => {
3442
+ const gitIgnoreFile = await findUp(nodePath.join(prefix, ".gitignore"), { cwd });
3443
+ if (gitIgnoreFile != null) {
3444
+ const { patterns } = parseGitignore.parse(await fs.promises.readFile(gitIgnoreFile));
3445
+ const returnValue = patterns.map((pattern) => nodePath.join(prefix, pattern));
3446
+ return returnValue;
3447
+ }
3448
+ return [];
3449
+ };
3450
+ async function ignores(options = {}) {
3451
+ const cwd = process.cwd();
3452
+ const [ignoreRoot, ignoreAndroid, ignoreIOS] = await Promise.all([
3453
+ getGitignore(cwd),
3454
+ getGitignore(cwd, "android"),
3455
+ getGitignore(cwd, "ios")
3456
+ ]);
3457
+ return [
3458
+ {
3459
+ ignores: [
3460
+ "**/node_modules",
3461
+ "**/dist",
3462
+ "**/package-lock.json",
3463
+ "**/yarn.lock",
3464
+ "**/pnpm-lock.yaml",
3465
+ "**/bun.lockb",
3466
+ "**/.docusaurus",
3467
+ "**/output",
3468
+ "**/coverage",
3469
+ "**/temp",
3470
+ "**/.temp",
3471
+ "**/tmp",
3472
+ "**/.tmp",
3473
+ "**/.history",
3474
+ "**/.vitepress/cache",
3475
+ "**/.nuxt",
3476
+ "**/.next",
3477
+ "**/.svelte-kit",
3478
+ "**/.vercel",
3479
+ "**/.changeset",
3480
+ "**/.idea",
3481
+ "**/.cache",
3482
+ "**/.output",
3483
+ "**/.vite-inspect",
3484
+ "**/.yarn",
3485
+ "**/vendor",
3486
+ "**/vendors",
3487
+ "**/*.min.*",
3488
+ "**/*.timestamp-*.mjs",
3489
+ // esbuild/vite temporary files
3490
+ ".modules/",
3491
+ ".go/",
3492
+ ".pnpm-store/",
3493
+ // '!.*',
3494
+ // '.venv/',
3495
+ // 'deprecated/',
3496
+ // 'test-output/',
3497
+ // 'venv/',
3498
+ // '_generated_/',
3499
+ ...ignoreRoot,
3500
+ ...ignoreAndroid,
3501
+ ...ignoreIOS,
3502
+ ...options.ignores ?? []
3503
+ ],
3504
+ name: "w5s/ignore"
3505
+ }
3506
+ ];
3507
+ }
3508
+ var defaultConfig = {
3509
+ enabled: true,
3510
+ indent: prettierConfig.tabWidth ?? 2,
3511
+ quotes: prettierConfig.singleQuote ? "single" : "double",
3512
+ jsx: true,
3513
+ semi: prettierConfig.semi ?? true
3514
+ };
3515
+ var StylisticConfig = {
3516
+ /**
3517
+ * Default config
3518
+ */
3519
+ default: defaultConfig,
3520
+ /**
3521
+ * Return a new StylisticConfig from input
3522
+ *
3523
+ * @param input
3524
+ */
3525
+ from(input) {
3526
+ return typeof input === "boolean" ? { ...defaultConfig, enabled: input } : { ...defaultConfig, ...input };
3527
+ }
3528
+ };
3529
+
3530
+ // src/config/jsdoc.ts
3531
+ async function jsdoc(options = {}) {
3532
+ const [jsdocPlugin] = await Promise.all([
3533
+ interopDefault(import('eslint-plugin-jsdoc'))
3534
+ ]);
3535
+ const { rules = {}, stylistic: stylistic2 = true } = options;
3536
+ const { enabled: stylisticEnabled } = StylisticConfig.from(stylistic2);
3537
+ return [
3538
+ {
3539
+ name: "w5s/jsdoc/setup",
3540
+ plugins: {
3541
+ jsdoc: jsdocPlugin
3542
+ }
3543
+ },
3544
+ {
3545
+ name: "w5s/jsdoc/rules",
3546
+ rules: {
3547
+ ...jsdocPlugin.configs["flat/recommended"].rules,
3548
+ "jsdoc/no-undefined-types": "off",
3549
+ // https://github.com/gajus/eslint-plugin-jsdoc/issues/839
3550
+ "jsdoc/require-hyphen-before-param-description": ["warn", "always"],
3551
+ "jsdoc/require-jsdoc": "off",
3552
+ "jsdoc/require-param-description": "off",
3553
+ "jsdoc/require-returns": "off",
3554
+ "jsdoc/tag-lines": ["warn", "any", { startLines: 1 }],
3555
+ "jsdoc/valid-types": "off",
3556
+ // FIXME: reports lots of false positive
3557
+ // 'strict': ['error', 'safe'],
3558
+ ...stylisticEnabled ? {
3559
+ // ...(jsdocPlugin.configs['flat/stylistic'].rules),
3560
+ "jsdoc/check-alignment": "warn",
3561
+ "jsdoc/multiline-blocks": "warn"
3562
+ } : {},
3563
+ ...rules
3564
+ },
3565
+ settings: {
3566
+ jsdoc: {
3567
+ mode: "typescript"
3568
+ }
3569
+ }
3570
+ }
3571
+ ];
3572
+ }
3573
+ var defaultFiles = [`**/${Project.extensionsToGlob([".json", ".json5", ".jsonc"])}`];
3574
+ async function jsonc(options = {}) {
3575
+ const [jsoncPlugin, jsoncParser] = await Promise.all([
3576
+ interopDefault(import('eslint-plugin-jsonc')),
3577
+ interopDefault(import('jsonc-eslint-parser'))
3578
+ ]);
3579
+ const { files = defaultFiles, rules = {}, stylistic: stylistic2 = true } = options;
3580
+ const { enabled: stylisticEnabled, indent } = StylisticConfig.from(stylistic2);
3581
+ return [
3582
+ {
3583
+ name: "w5s/jsonc/setup",
3584
+ plugins: {
3585
+ jsonc: jsoncPlugin
3586
+ }
3587
+ },
3588
+ {
3589
+ files,
3590
+ languageOptions: {
3591
+ parser: jsoncParser
3592
+ },
3593
+ name: "w5s/jsonc/rules",
3594
+ rules: {
3595
+ ...jsoncPlugin.configs["flat/recommended-with-json"][0]?.rules,
3596
+ ...stylisticEnabled ? {
3597
+ "jsonc/array-bracket-spacing": ["error", "never"],
3598
+ "jsonc/comma-dangle": ["error", "never"],
3599
+ "jsonc/comma-style": ["error", "last"],
3600
+ "jsonc/indent": ["error", indent],
3601
+ "jsonc/key-spacing": ["error", { afterColon: true, beforeColon: false }],
3602
+ "jsonc/object-curly-newline": ["error", { consistent: true, multiline: true }],
3603
+ "jsonc/object-curly-spacing": ["error", "always"],
3604
+ "jsonc/object-property-newline": ["error", { allowMultiplePropertiesPerLine: true }],
3605
+ "jsonc/quote-props": "error",
3606
+ "jsonc/quotes": "error"
3607
+ } : {},
3608
+ ...rules
3609
+ }
3610
+ },
3611
+ stylisticEnabled ? sortPackageJson() : {},
3612
+ stylisticEnabled ? sortTsconfigJson() : {}
3613
+ ];
3614
+ }
3615
+ function sortTsconfigJson() {
3616
+ return {
3617
+ files: ["tsconfig*.json"],
3618
+ rules: {
3619
+ "jsonc/sort-keys": [
3620
+ "error",
3621
+ {
3622
+ order: ["$schema", "display", "extends", "compilerOptions", "include", "exclude", "files", "references"],
3623
+ pathPattern: "^$"
3624
+ },
3625
+ {
3626
+ order: { type: "asc" },
3627
+ pathPattern: ".*"
3628
+ }
3629
+ ]
3630
+ }
3631
+ };
3632
+ }
3633
+ function sortPackageJson() {
3634
+ return {
3635
+ files: ["package.json"],
3636
+ rules: {
3637
+ "jsonc/sort-keys": [
3638
+ "error",
3639
+ {
3640
+ order: [
3641
+ "$schema",
3642
+ "name",
3643
+ "displayName",
3644
+ "version",
3645
+ "private",
3646
+ "description",
3647
+ "categories",
3648
+ "keywords",
3649
+ "homepage",
3650
+ "bugs",
3651
+ "repository",
3652
+ "funding",
3653
+ "license",
3654
+ "qna",
3655
+ "author",
3656
+ "maintainers",
3657
+ // Key order (per item): name, email, url
3658
+ "contributors",
3659
+ // Key order (per item): name, email, url
3660
+ "publisher",
3661
+ "sideEffects",
3662
+ "type",
3663
+ "imports",
3664
+ "exports",
3665
+ "main",
3666
+ "svelte",
3667
+ "umd:main",
3668
+ "jsdelivr",
3669
+ "unpkg",
3670
+ "module",
3671
+ "source",
3672
+ "jsnext:main",
3673
+ "browser",
3674
+ "react-native",
3675
+ "types",
3676
+ "typesVersions",
3677
+ "typings",
3678
+ "style",
3679
+ "example",
3680
+ "examplestyle",
3681
+ "assets",
3682
+ "bin",
3683
+ "man",
3684
+ "directories",
3685
+ // Key order: lib, bin, man, doc, example, test
3686
+ "files",
3687
+ // Unique items
3688
+ "workspaces",
3689
+ "binary",
3690
+ // Key order: module_name, module_path, remote_path, package_name, host
3691
+ "scripts",
3692
+ // Script sort
3693
+ "betterScripts",
3694
+ // Script sort
3695
+ "contributes",
3696
+ "activationEvents",
3697
+ // Unique items
3698
+ "husky",
3699
+ // Sorts the hooks field using git hook sort
3700
+ "simple-git-hooks",
3701
+ // Key sort using git hook sort
3702
+ "pre-commit",
3703
+ "commitlint",
3704
+ "lint-staged",
3705
+ "config",
3706
+ "nodemonConfig",
3707
+ "browserify",
3708
+ "babel",
3709
+ "browserslist",
3710
+ "xo",
3711
+ "prettier",
3712
+ // Prettier sort
3713
+ "eslintConfig",
3714
+ // ESLint sort
3715
+ "eslintIgnore",
3716
+ "npmpackagejsonlint",
3717
+ // Key sort (also recognizes: npmPackageJsonLintConfig, npmpkgjsonlint)
3718
+ "release",
3719
+ "remarkConfig",
3720
+ "stylelint",
3721
+ "ava",
3722
+ "jest",
3723
+ "mocha",
3724
+ "nyc",
3725
+ "tap",
3726
+ "resolutions",
3727
+ "dependencies",
3728
+ "devDependencies",
3729
+ "dependenciesMeta",
3730
+ // Key sort (deep)
3731
+ "peerDependencies",
3732
+ "peerDependenciesMeta",
3733
+ // Key sort (deep)
3734
+ "optionalDependencies",
3735
+ "bundledDependencies",
3736
+ "bundleDependencies",
3737
+ "extensionPack",
3738
+ "extensionDependencies",
3739
+ "flat",
3740
+ "packageManager",
3741
+ "engines",
3742
+ "engineStrict",
3743
+ "volta",
3744
+ // Key order: node, npm, yarn
3745
+ "languageName",
3746
+ "os",
3747
+ "cpu",
3748
+ "preferGlobal",
3749
+ "publishConfig",
3750
+ "icon",
3751
+ "badges",
3752
+ // Key order (per item): description, url, href
3753
+ "galleryBanner",
3754
+ "preview",
3755
+ "markdown"
3756
+ ],
3757
+ pathPattern: "^$"
3758
+ },
3759
+ {
3760
+ order: ["url", "email"],
3761
+ pathPattern: `^bugs$`
3762
+ },
3763
+ ...["repository", "funding", "license", "author"].map((key) => ({
3764
+ order: ["type", "name", "email", "url"],
3765
+ pathPattern: `^${key}$`
3766
+ })),
3767
+ ...["scripts", "betterScripts"].map((key) => ({
3768
+ order: { type: "asc" },
3769
+ pathPattern: `^${key}$`
3770
+ })),
3771
+ ...[
3772
+ "bin",
3773
+ "contributes",
3774
+ "commitlint",
3775
+ "config",
3776
+ "nodemonConfig",
3777
+ "browserify",
3778
+ "babel",
3779
+ "xo",
3780
+ "release",
3781
+ "remarkConfig",
3782
+ "ava",
3783
+ "jest",
3784
+ "mocha",
3785
+ "nyc",
3786
+ "tap",
3787
+ "resolutions",
3788
+ "engines",
3789
+ "engineStrict",
3790
+ "preferGlobal",
3791
+ "publishConfig",
3792
+ "galleryBanner"
3793
+ ].map((key) => ({
3794
+ order: { type: "asc" },
3795
+ pathPattern: `^${key}$`
3796
+ })),
3797
+ {
3798
+ order: { type: "asc" },
3799
+ pathPattern: "^(?:dev|peer|optional|bundled|extension)?[Dd]ependencies$"
3800
+ },
3801
+ {
3802
+ order: ["types", "require", "import"],
3803
+ pathPattern: "^exports.*$"
3804
+ }
3805
+ ]
3806
+ }
3807
+ };
3808
+ }
3809
+ var importConfig = importPlugin.flatConfigs["recommended"];
3810
+ async function imports(options = {}) {
3811
+ const { rules = {}, stylistic: stylistic2 = true } = options;
3812
+ const { enabled: stylisticEnabled } = StylisticConfig.from(stylistic2);
3813
+ return [
3814
+ {
3815
+ name: "w5s/import/rules",
3816
+ plugins: importConfig.plugins ?? {},
3817
+ rules: {
3818
+ ...importConfig?.rules,
3819
+ ...stylisticEnabled ? {
3820
+ // Stylistic rules
3821
+ } : {},
3822
+ ...rules
3823
+ }
3824
+ }
3825
+ ];
3826
+ }
3827
+ async function node(options = {}) {
3828
+ const [nodePlugin] = await Promise.all([
3829
+ interopDefault(import('eslint-plugin-n'))
3830
+ ]);
3831
+ const { rules = {} } = options;
3832
+ return [
3833
+ {
3834
+ name: "w5s/node/setup",
3835
+ plugins: {
3836
+ node: nodePlugin
3837
+ }
3838
+ },
3839
+ {
3840
+ name: "w5s/node/rules",
3841
+ rules: {
3842
+ // 'node/handle-callback-err': ['error', '^(err|error|_error)$'],
3843
+ "node/no-deprecated-api": "error",
3844
+ "node/no-exports-assign": "error",
3845
+ "node/no-new-require": "error",
3846
+ "node/no-path-concat": "error",
3847
+ "node/no-sync": "error",
3848
+ "node/prefer-global/buffer": ["error", "never"],
3849
+ "node/prefer-global/console": ["error", "always"],
3850
+ // 'node/prefer-global/process': ['error', 'never'],
3851
+ "node/prefer-global/url": ["error", "always"],
3852
+ "node/prefer-global/url-search-params": ["error", "always"],
3853
+ "node/process-exit-as-throw": "error",
3854
+ ...rules
3855
+ }
3856
+ }
3857
+ ];
3858
+ }
3859
+ async function stylistic(options = {}) {
3860
+ const [stylisticPlugin] = await Promise.all([
3861
+ interopDefault(import('@stylistic/eslint-plugin'))
3862
+ ]);
3863
+ const { rules = {} } = options;
3864
+ const { enabled: stylisticEnabled, indent, jsx, quotes, semi } = StylisticConfig.from(options);
3865
+ const config = stylisticEnabled ? stylisticPlugin.configs.customize({
3866
+ indent,
3867
+ jsx,
3868
+ pluginName: "style",
3869
+ quotes,
3870
+ semi
3871
+ }) : { rules: {} };
3872
+ return [
3873
+ {
3874
+ name: "w5s/style/setup",
3875
+ plugins: {
3876
+ style: stylisticPlugin
3877
+ }
3878
+ },
3879
+ {
3880
+ name: "w5s/style/rules",
3881
+ rules: {
3882
+ ...stylisticEnabled ? {
3883
+ ...config.rules,
3884
+ "style/arrow-parens": ["error", "always"],
3885
+ "style/brace-style": ["error", "1tbs"],
3886
+ "style/operator-linebreak": ["error", "after", { overrides: { ":": "before", "?": "before", "|>": "before" } }],
3887
+ "style/quotes": ["error", quotes ?? StylisticConfig.default.quotes, { avoidEscape: true, allowTemplateLiterals: true }]
3888
+ } : {},
3889
+ ...rules
3890
+ }
3891
+ }
3892
+ ];
3893
+ }
3894
+ var sourceGlob = Project.extensionsToGlob(Project.sourceExtensions());
3895
+ var defaultFiles2 = [
3896
+ `**/__mocks__/**/${sourceGlob}`,
3897
+ `**/__tests__/**/${sourceGlob}`,
3898
+ `**/?(*.)+(spec|test)${sourceGlob.slice(1)}`
3899
+ ];
3900
+ async function test(options = {}) {
3901
+ const [vitestPlugin] = await Promise.all([
3902
+ interopDefault(import('@vitest/eslint-plugin'))
3903
+ ]);
3904
+ const { files = defaultFiles2, rules = {}, stylistic: stylistic2 = true } = options;
3905
+ const { enabled: stylisticEnabled } = StylisticConfig.from(stylistic2);
3906
+ return [
3907
+ {
3908
+ name: "w5s/test/setup",
3909
+ plugins: {
3910
+ test: vitestPlugin
3911
+ }
3912
+ },
3913
+ {
3914
+ files,
3915
+ name: "w5s/test/rules",
3916
+ rules: {
3917
+ ...vitestPlugin.configs.recommended.rules,
3918
+ ...stylisticEnabled ? {} : {},
3919
+ ...rules
3920
+ }
3921
+ }
3922
+ ];
3923
+ }
3924
+ var defaultFiles3 = [`**/${Project.extensionsToGlob(Project.queryExtensions(["typescript", "typescriptreact"]))}`];
3925
+ async function ts(options = {}) {
3926
+ const [tsPlugin, tsParser] = await Promise.all([
3927
+ interopDefault(import('@typescript-eslint/eslint-plugin')),
3928
+ interopDefault(import('@typescript-eslint/parser'))
3929
+ ]);
3930
+ const tsRecommendedRules = tsPlugin.configs["eslint-recommended"].overrides[0].rules;
3931
+ const tsStrictRules = tsPlugin.configs["strict"].rules;
3932
+ const tsTypeCheckedRules = tsPlugin.configs["recommended-type-checked-only"].rules;
3933
+ const { files = defaultFiles3, rules = {}, stylistic: stylistic2 = true, typeChecked = false } = options;
3934
+ const { enabled: stylisticEnabled } = StylisticConfig.from(stylistic2);
3935
+ return [
3936
+ {
3937
+ name: "w5s/ts/setup",
3938
+ plugins: {
3939
+ ts: tsPlugin
3940
+ }
3941
+ },
3942
+ {
3943
+ files,
3944
+ languageOptions: {
3945
+ parser: tsParser,
3946
+ parserOptions: {
3947
+ sourceType: "module"
3948
+ // extraFileExtensions: componentExts.map(ext => `.${ext}`),
3949
+ // ...typeAware
3950
+ // ? {
3951
+ // projectService: {
3952
+ // allowDefaultProject: ['./*.js'],
3953
+ // defaultProject: tsconfigPath,
3954
+ // },
3955
+ // tsconfigRootDir: process.cwd(),
3956
+ // }
3957
+ // : {},
3958
+ // ...parserOptions as any,
3959
+ }
3960
+ },
3961
+ name: "w5s/ts/rules",
3962
+ rules: {
3963
+ ...ESLintConfig.renameRules(
3964
+ tsRecommendedRules,
3965
+ { "@typescript-eslint": "ts" }
3966
+ ),
3967
+ ...ESLintConfig.renameRules(
3968
+ tsStrictRules,
3969
+ { "@typescript-eslint": "ts" }
3970
+ ),
3971
+ "ts/ban-ts-comment": [
3972
+ "warn",
3973
+ {
3974
+ "minimumDescriptionLength": 3,
3975
+ "ts-check": false,
3976
+ "ts-expect-error": "allow-with-description",
3977
+ "ts-ignore": "allow-with-description",
3978
+ "ts-nocheck": true
3979
+ }
3980
+ ],
3981
+ "ts/no-empty-object-type": "off",
3982
+ "ts/no-explicit-any": "off",
3983
+ // if any is explicit then it's wanted
3984
+ "ts/no-namespace": "off",
3985
+ // We don't agree with community, namespaces are great and not deprecated
3986
+ ...createRules("ts/"),
3987
+ ...stylisticEnabled ? {} : {},
3988
+ ...rules
3989
+ }
3990
+ },
3991
+ ...typeChecked ? [{
3992
+ files: defaultFiles3,
3993
+ // ignores: ignoresTypeAware,
3994
+ name: "w5s/ts/rules-type-checked",
3995
+ rules: {
3996
+ ...ESLintConfig.renameRules(
3997
+ tsTypeCheckedRules,
3998
+ { "@typescript-eslint": "ts" }
3999
+ )
4000
+ }
4001
+ }] : []
4002
+ ];
4003
+ }
4004
+ async function unicorn(options = {}) {
4005
+ const [unicornPlugin] = await Promise.all([
4006
+ interopDefault(import('eslint-plugin-unicorn'))
4007
+ ]);
4008
+ const { rules = {}, stylistic: stylistic2 = true } = options;
4009
+ const { enabled: stylisticEnabled } = StylisticConfig.from(stylistic2);
4010
+ return [
4011
+ {
4012
+ name: "w5s/unicorn/setup",
4013
+ plugins: {
4014
+ unicorn: unicornPlugin
4015
+ }
4016
+ },
4017
+ {
4018
+ name: "w5s/unicorn/rules",
4019
+ rules: {
4020
+ ...unicornPlugin.configs.recommended?.rules,
4021
+ // Disabled for safety
4022
+ "unicorn/consistent-destructuring": "off",
4023
+ "unicorn/consistent-function-scoping": "off",
4024
+ // Too many false positive
4025
+ "unicorn/filename-case": "off",
4026
+ "unicorn/import-index": "off",
4027
+ // Not playing well with ES Module
4028
+ "unicorn/new-for-builtins": "off",
4029
+ // error, @see https://github.com/sindresorhus/eslint-plugin-unicorn/issues/122
4030
+ "unicorn/no-array-callback-reference": "off",
4031
+ // Many false positive reported
4032
+ "unicorn/no-array-for-each": "off",
4033
+ // This rule could change browser compatibility
4034
+ "unicorn/no-array-method-this-argument": "off",
4035
+ // Many false positive reported
4036
+ "unicorn/no-array-reduce": "off",
4037
+ // Array#reduce can be used
4038
+ "unicorn/no-console-spaces": "off",
4039
+ "unicorn/no-fn-reference-in-iterator": "off",
4040
+ // error ?
4041
+ "unicorn/no-nested-ternary": "off",
4042
+ "unicorn/no-null": "off",
4043
+ // https://github.com/sindresorhus/eslint-plugin-unicorn/issues/612
4044
+ "unicorn/no-object-as-default-parameter": "off",
4045
+ "unicorn/no-process-exit": "off",
4046
+ "unicorn/no-unreadable-array-destructuring": "off",
4047
+ "unicorn/no-unused-properties": "warn",
4048
+ "unicorn/no-useless-undefined": "off",
4049
+ "unicorn/prefer-add-event-listener": "off",
4050
+ "unicorn/prefer-default-parameters": "off",
4051
+ "unicorn/prefer-set-has": "off",
4052
+ "unicorn/prevent-abbreviations": "off",
4053
+ // This rule is so dangerous : it potentially break code while fixing in many cases !!
4054
+ "unicorn/throw-new-error": "off",
4055
+ // Creating errors with call signature is OK
4056
+ ...stylisticEnabled ? {} : {},
4057
+ ...rules
4058
+ }
4059
+ },
4060
+ // TODO: move to another file ?
4061
+ {
4062
+ name: "w5s/unicorn/overrides",
4063
+ files: ["**/*.config.cjs", "**/*.config.js"],
4064
+ rules: {
4065
+ "unicorn/prefer-module": "off"
4066
+ }
4067
+ }
4068
+ ];
4069
+ }
4070
+ var defaultFiles4 = [`**/${Project.extensionsToGlob(Project.queryExtensions(["yaml"]))}`];
4071
+ async function yml(options = {}) {
4072
+ const [ymlPlugin, ymlParser] = await Promise.all([
4073
+ interopDefault(import('eslint-plugin-yml')),
4074
+ interopDefault(import('yaml-eslint-parser'))
4075
+ ]);
4076
+ const { files = defaultFiles4, rules = {}, stylistic: stylistic2 = true } = options;
4077
+ const { enabled: stylisticEnabled, indent, quotes } = StylisticConfig.from(stylistic2);
4078
+ return [
4079
+ {
4080
+ name: "w5s/yml/setup",
4081
+ plugins: {
4082
+ yml: ymlPlugin
4083
+ }
4084
+ },
4085
+ {
4086
+ files,
4087
+ languageOptions: {
4088
+ parser: ymlParser
4089
+ },
4090
+ name: "w5s/yml/rules",
4091
+ rules: {
4092
+ ...ymlPlugin.configs["flat/recommended"][0].rules,
4093
+ ...ymlPlugin.configs["flat/recommended"][1].rules,
4094
+ ...ymlPlugin.configs["flat/recommended"][2].rules,
4095
+ ...stylisticEnabled ? {
4096
+ // ...(ymlPlugin.configs['flat/standard'][3]!.rules),
4097
+ // 'yml/array-bracket-spacing': ['error', 'never'],
4098
+ // 'yml/comma-dangle': ['error', 'never'],
4099
+ // 'yml/comma-style': ['error', 'last'],
4100
+ // 'yml/object-curly-newline': ['error', { consistent: true, multiline: true }],
4101
+ // 'yml/object-curly-spacing': ['error', 'always'],
4102
+ // 'yml/object-property-newline': ['error', { allowMultiplePropertiesPerLine: true }],
4103
+ // 'yml/quote-props': 'error',
4104
+ "style/spaced-comment": "off",
4105
+ // Fix
4106
+ "yml/block-mapping-question-indicator-newline": "error",
4107
+ "yml/block-sequence-hyphen-indicator-newline": "error",
4108
+ "yml/flow-mapping-curly-newline": "error",
4109
+ "yml/flow-mapping-curly-spacing": "error",
4110
+ "yml/flow-sequence-bracket-newline": "error",
4111
+ "yml/flow-sequence-bracket-spacing": "error",
4112
+ "yml/indent": ["error", indent === "tab" ? 2 : indent],
4113
+ "yml/key-spacing": ["error", { afterColon: true, beforeColon: false }],
4114
+ "yml/no-tab-indent": "error",
4115
+ "yml/quotes": ["error", { avoidEscape: true, prefer: quotes === "backtick" ? "single" : quotes }],
4116
+ "yml/spaced-comment": "error"
4117
+ } : {},
4118
+ ...rules
4119
+ }
4120
+ }
4121
+ ];
4122
+ }
4123
+
4124
+ // src/defineConfig.ts
4125
+ async function defineConfig(options = {}) {
4126
+ const stylisticOptions = typeof options.stylistic === "boolean" ? { enabled: options.stylistic } : { enabled: true, ...options.stylistic };
4127
+ const withDefaultStylistic = (options2) => ({ stylistic: stylisticOptions, ...options2 });
4128
+ const toOption = (optionsOrBoolean) => withDefaultStylistic(typeof optionsOrBoolean === "boolean" ? { enabled: optionsOrBoolean } : { enabled: true, ...optionsOrBoolean });
4129
+ const esOptions = toOption(options.es);
4130
+ const importOptions = toOption(options.import);
4131
+ const jsdocOptions = toOption(options.jsdoc);
4132
+ const jsoncOptions = toOption(options.jsonc);
4133
+ const nodeOptions = toOption(options.node);
4134
+ const tsOptions = toOption(options.ts);
4135
+ const unicornOptions = toOption(options.unicorn);
4136
+ const ymlOptions = toOption(options.yml);
4137
+ const returnValue = [];
4138
+ const append = (config) => {
4139
+ returnValue.push(config);
4140
+ };
4141
+ append(es(esOptions));
4142
+ append(ignores(options));
4143
+ if (jsoncOptions.enabled) {
4144
+ append(jsonc(jsoncOptions));
4145
+ }
4146
+ if (jsdocOptions.enabled) {
4147
+ append(jsdoc(jsdocOptions));
4148
+ }
4149
+ if (stylisticOptions.enabled) {
4150
+ append(stylistic(stylisticOptions));
4151
+ }
4152
+ if (importOptions.enabled) {
4153
+ append(imports(importOptions));
4154
+ }
4155
+ if (nodeOptions.enabled) {
4156
+ append(node(nodeOptions));
4157
+ }
4158
+ if (tsOptions.enabled) {
4159
+ append(ts(tsOptions));
4160
+ }
4161
+ if (ymlOptions.enabled) {
4162
+ append(yml(ymlOptions));
4163
+ }
4164
+ if (unicornOptions.enabled) {
4165
+ append(unicorn(unicornOptions));
4166
+ }
4167
+ const nested = await Promise.all(returnValue);
4168
+ return nested.reduce((acc, curr) => [...acc, ...curr], []);
4169
+ }
4170
+
4171
+ export { defineConfig as default, defineConfig, es, ignores, imports, jsdoc, jsonc, node, stylistic, test, ts, unicorn, yml };
4172
+ //# sourceMappingURL=index.js.map
4173
+ //# sourceMappingURL=index.js.map