@ariel-salgado/eslint-config 1.0.1 → 1.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -238,10 +238,18 @@ interface RuleOptions {
238
238
  * Disallow dependencies in favor of more performant or secure alternatives
239
239
  */
240
240
  'e18e/ban-dependencies'?: Linter.RuleEntry<E18EBanDependencies>;
241
+ /**
242
+ * Disallow `delete` on properties — V8 deoptimizes the object to dictionary mode
243
+ */
244
+ 'e18e/no-delete-property'?: Linter.RuleEntry<[]>;
241
245
  /**
242
246
  * Prefer optimized alternatives to `indexOf()` equality checks
243
247
  */
244
248
  'e18e/no-indexof-equality'?: Linter.RuleEntry<[]>;
249
+ /**
250
+ * Disallow spreading the accumulator inside a `reduce` callback (O(N²) growth)
251
+ */
252
+ 'e18e/no-spread-in-reduce'?: Linter.RuleEntry<[]>;
245
253
  /**
246
254
  * Prefer Array.prototype.at() over length-based indexing
247
255
  */
@@ -255,7 +263,7 @@ interface RuleOptions {
255
263
  */
256
264
  'e18e/prefer-array-from-map'?: Linter.RuleEntry<[]>;
257
265
  /**
258
- * Prefer Array.some() over Array.find() when checking for element existence
266
+ * Prefer Array.some() over Array.find() and Array.filter().length checks when checking for element existence
259
267
  */
260
268
  'e18e/prefer-array-some'?: Linter.RuleEntry<[]>;
261
269
  /**
@@ -282,6 +290,10 @@ interface RuleOptions {
282
290
  * Prefer .includes() over indexOf() comparisons for arrays and strings
283
291
  */
284
292
  'e18e/prefer-includes'?: Linter.RuleEntry<[]>;
293
+ /**
294
+ * Prefer String.prototype.{includes,startsWith,endsWith} over equivalent regex.test() calls
295
+ */
296
+ 'e18e/prefer-includes-over-regex-test'?: Linter.RuleEntry<[]>;
285
297
  /**
286
298
  * Prefer inline equality checks over temporary object creation for simple comparisons
287
299
  */
@@ -302,10 +314,18 @@ interface RuleOptions {
302
314
  * Prefer spread syntax over Array.concat(), Array.from(), Object.assign({}, ...), and Function.apply()
303
315
  */
304
316
  'e18e/prefer-spread-syntax'?: Linter.RuleEntry<[]>;
317
+ /**
318
+ * Prefer hoisting an `Intl.Collator` instance over calling localeCompare in a sort callback
319
+ */
320
+ 'e18e/prefer-static-collator'?: Linter.RuleEntry<[]>;
305
321
  /**
306
322
  * Prefer defining regular expressions at module scope to avoid re-compilation on every function call
307
323
  */
308
324
  'e18e/prefer-static-regex'?: Linter.RuleEntry<[]>;
325
+ /**
326
+ * Prefer String.fromCharCode() over String.fromCodePoint() for code points below 0x10000
327
+ */
328
+ 'e18e/prefer-string-fromcharcode'?: Linter.RuleEntry<[]>;
309
329
  /**
310
330
  * Prefer passing function and arguments directly to setTimeout/setInterval instead of wrapping in an arrow function or using bind
311
331
  */
@@ -4443,7 +4463,7 @@ interface RuleOptions {
4443
4463
  */
4444
4464
  'test/prefer-expect-resolves'?: Linter.RuleEntry<[]>;
4445
4465
  /**
4446
- * enforce using `expectTypeOf` instead of `expect(typeof ...)`
4466
+ * enforce using `expect(...).toBeTypeOf(...)` instead of `expect(typeof ...).toBe(...)`
4447
4467
  * @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-expect-type-of.md
4448
4468
  */
4449
4469
  'test/prefer-expect-type-of'?: Linter.RuleEntry<[]>;
@@ -8416,7 +8436,6 @@ type NodeNoUnpublishedBin = [] | [{
8416
8436
  exclude?: string[];
8417
8437
  replace: [string, string];
8418
8438
  })[]]);
8419
- [k: string]: unknown | undefined;
8420
8439
  }]; // ----- node/no-unpublished-import -----
8421
8440
  type NodeNoUnpublishedImport = [] | [{
8422
8441
  allowModules?: string[];
@@ -8470,7 +8489,7 @@ type NodeNoUnsupportedFeaturesEsSyntax = [] | [{
8470
8489
  type NodeNoUnsupportedFeaturesNodeBuiltins = [] | [{
8471
8490
  version?: string;
8472
8491
  allowExperimental?: boolean;
8473
- ignores?: ("__filename" | "__dirname" | "require" | "require.cache" | "require.extensions" | "require.main" | "require.resolve" | "require.resolve.paths" | "module" | "module.children" | "module.exports" | "module.filename" | "module.id" | "module.isPreloading" | "module.loaded" | "module.parent" | "module.path" | "module.paths" | "module.require" | "exports" | "AbortController" | "AbortSignal" | "AbortSignal.abort" | "AbortSignal.timeout" | "AbortSignal.any" | "DOMException" | "FormData" | "Headers" | "MessageEvent" | "Navigator" | "Request" | "Response" | "WebAssembly" | "WebSocket" | "fetch" | "global" | "queueMicrotask" | "navigator" | "navigator.hardwareConcurrency" | "navigator.language" | "navigator.languages" | "navigator.platform" | "navigator.userAgent" | "structuredClone" | "localStorage" | "sessionStorage" | "Storage" | "Blob" | "new Buffer()" | "Buffer" | "Buffer.alloc" | "Buffer.allocUnsafe" | "Buffer.allocUnsafeSlow" | "Buffer.byteLength" | "Buffer.compare" | "Buffer.concat" | "Buffer.copyBytesFrom" | "Buffer.from" | "Buffer.isBuffer" | "Buffer.isEncoding" | "File" | "atob" | "btoa" | "console" | "console.profile" | "console.profileEnd" | "console.timeStamp" | "console.Console" | "console.assert" | "console.clear" | "console.count" | "console.countReset" | "console.debug" | "console.dir" | "console.dirxml" | "console.error" | "console.group" | "console.groupCollapsed" | "console.groupEnd" | "console.info" | "console.log" | "console.table" | "console.time" | "console.timeEnd" | "console.timeLog" | "console.trace" | "console.warn" | "crypto" | "crypto.subtle" | "crypto.subtle.decrypt" | "crypto.subtle.deriveBits" | "crypto.subtle.deriveKey" | "crypto.subtle.digest" | "crypto.subtle.encrypt" | "crypto.subtle.exportKey" | "crypto.subtle.generateKey" | "crypto.subtle.importKey" | "crypto.subtle.sign" | "crypto.subtle.unwrapKey" | "crypto.subtle.verify" | "crypto.subtle.wrapKey" | "crypto.getRandomValues" | "crypto.randomUUID" | "Crypto" | "CryptoKey" | "SubtleCrypto" | "CloseEvent" | "CustomEvent" | "Event" | "EventSource" | "EventTarget" | "PerformanceEntry" | "PerformanceMark" | "PerformanceMeasure" | "PerformanceObserver" | "PerformanceObserverEntryList" | "PerformanceResourceTiming" | "performance" | "performance.clearMarks" | "performance.clearMeasures" | "performance.clearResourceTimings" | "performance.eventLoopUtilization" | "performance.getEntries" | "performance.getEntriesByName" | "performance.getEntriesByType" | "performance.mark" | "performance.markResourceTiming" | "performance.measure" | "performance.nodeTiming" | "performance.nodeTiming.bootstrapComplete" | "performance.nodeTiming.environment" | "performance.nodeTiming.idleTime" | "performance.nodeTiming.loopExit" | "performance.nodeTiming.loopStart" | "performance.nodeTiming.nodeStart" | "performance.nodeTiming.uvMetricsInfo" | "performance.nodeTiming.v8Start" | "performance.now" | "performance.onresourcetimingbufferfull" | "performance.setResourceTimingBufferSize" | "performance.timeOrigin" | "performance.timerify" | "performance.toJSON" | "process" | "process.allowedNodeEnvironmentFlags" | "process.availableMemory" | "process.arch" | "process.argv" | "process.argv0" | "process.channel" | "process.config" | "process.connected" | "process.debugPort" | "process.env" | "process.execArgv" | "process.execPath" | "process.execve" | "process.exitCode" | "process.features.cached_builtins" | "process.features.debug" | "process.features.inspector" | "process.features.ipv6" | "process.features.require_module" | "process.features.tls" | "process.features.tls_alpn" | "process.features.tls_ocsp" | "process.features.tls_sni" | "process.features.typescript" | "process.features.uv" | "process.finalization.register" | "process.finalization.registerBeforeExit" | "process.finalization.unregister" | "process.getBuiltinModule" | "process.mainModule" | "process.noDeprecation" | "process.permission" | "process.pid" | "process.platform" | "process.ppid" | "process.ref" | "process.release" | "process.report" | "process.report.excludeEnv" | "process.sourceMapsEnabled" | "process.stdin" | "process.stdin.isRaw" | "process.stdin.isTTY" | "process.stdin.setRawMode" | "process.stdout" | "process.stdout.clearLine" | "process.stdout.clearScreenDown" | "process.stdout.columns" | "process.stdout.cursorTo" | "process.stdout.getColorDepth" | "process.stdout.getWindowSize" | "process.stdout.hasColors" | "process.stdout.isTTY" | "process.stdout.moveCursor" | "process.stdout.rows" | "process.stderr" | "process.stderr.clearLine" | "process.stderr.clearScreenDown" | "process.stderr.columns" | "process.stderr.cursorTo" | "process.stderr.getColorDepth" | "process.stderr.getWindowSize" | "process.stderr.hasColors" | "process.stderr.isTTY" | "process.stderr.moveCursor" | "process.stderr.rows" | "process.threadCpuUsage" | "process.throwDeprecation" | "process.title" | "process.traceDeprecation" | "process.version" | "process.versions" | "process.abort" | "process.chdir" | "process.constrainedMemory" | "process.cpuUsage" | "process.cwd" | "process.disconnect" | "process.dlopen" | "process.emitWarning" | "process.exit" | "process.getActiveResourcesInfo" | "process.getegid" | "process.geteuid" | "process.getgid" | "process.getgroups" | "process.getuid" | "process.hasUncaughtExceptionCaptureCallback" | "process.hrtime" | "process.hrtime.bigint" | "process.initgroups" | "process.kill" | "process.loadEnvFile" | "process.memoryUsage" | "process.rss" | "process.nextTick" | "process.resourceUsage" | "process.send" | "process.setegid" | "process.seteuid" | "process.setgid" | "process.setgroups" | "process.setuid" | "process.setSourceMapsEnabled" | "process.setUncaughtExceptionCaptureCallback" | "process.umask" | "process.unref" | "process.uptime" | "ReadableStream" | "ReadableStream.from" | "ReadableStreamDefaultReader" | "ReadableStreamBYOBReader" | "ReadableStreamDefaultController" | "ReadableByteStreamController" | "ReadableStreamBYOBRequest" | "WritableStream" | "WritableStreamDefaultWriter" | "WritableStreamDefaultController" | "TransformStream" | "TransformStreamDefaultController" | "ByteLengthQueuingStrategy" | "CountQueuingStrategy" | "TextEncoderStream" | "TextDecoderStream" | "CompressionStream" | "DecompressionStream" | "setInterval" | "clearInterval" | "setTimeout" | "clearTimeout" | "setImmediate" | "clearImmediate" | "URL" | "URL.canParse" | "URL.createObjectURL" | "URL.revokeObjectURL" | "URLSearchParams" | "TextDecoder" | "TextEncoder" | "BroadcastChannel" | "MessageChannel" | "MessagePort" | "assert" | "assert.Assert" | "assert.assert" | "assert.deepEqual" | "assert.deepStrictEqual" | "assert.doesNotMatch" | "assert.doesNotReject" | "assert.doesNotThrow" | "assert.equal" | "assert.fail" | "assert.ifError" | "assert.match" | "assert.notDeepEqual" | "assert.notDeepStrictEqual" | "assert.notEqual" | "assert.notStrictEqual" | "assert.ok" | "assert.partialDeepStrictEqual" | "assert.rejects" | "assert.strictEqual" | "assert.throws" | "assert.CallTracker" | "assert.strict" | "assert.strict.Assert" | "assert.strict.assert" | "assert.strict.deepEqual" | "assert.strict.deepStrictEqual" | "assert.strict.doesNotMatch" | "assert.strict.doesNotReject" | "assert.strict.doesNotThrow" | "assert.strict.equal" | "assert.strict.fail" | "assert.strict.ifError" | "assert.strict.match" | "assert.strict.notDeepEqual" | "assert.strict.notDeepStrictEqual" | "assert.strict.notEqual" | "assert.strict.notStrictEqual" | "assert.strict.ok" | "assert.strict.partialDeepStrictEqual" | "assert.strict.rejects" | "assert.strict.strictEqual" | "assert.strict.throws" | "assert.strict.CallTracker" | "assert/strict" | "assert/strict.Assert" | "assert/strict.assert" | "assert/strict.deepEqual" | "assert/strict.deepStrictEqual" | "assert/strict.doesNotMatch" | "assert/strict.doesNotReject" | "assert/strict.doesNotThrow" | "assert/strict.equal" | "assert/strict.fail" | "assert/strict.ifError" | "assert/strict.match" | "assert/strict.notDeepEqual" | "assert/strict.notDeepStrictEqual" | "assert/strict.notEqual" | "assert/strict.notStrictEqual" | "assert/strict.ok" | "assert/strict.partialDeepStrictEqual" | "assert/strict.rejects" | "assert/strict.strictEqual" | "assert/strict.throws" | "assert/strict.CallTracker" | "async_hooks" | "async_hooks.createHook" | "async_hooks.executionAsyncResource" | "async_hooks.executionAsyncId" | "async_hooks.triggerAsyncId" | "async_hooks.AsyncLocalStorage" | "async_hooks.AsyncLocalStorage.bind" | "async_hooks.AsyncLocalStorage.snapshot" | "async_hooks.AsyncResource" | "async_hooks.AsyncResource.bind" | "buffer" | "buffer.constants" | "buffer.INSPECT_MAX_BYTES" | "buffer.kMaxLength" | "buffer.kStringMaxLength" | "buffer.atob" | "buffer.btoa" | "buffer.isAscii" | "buffer.isUtf8" | "buffer.resolveObjectURL" | "buffer.transcode" | "buffer.SlowBuffer" | "buffer.Blob" | "new buffer.Buffer()" | "buffer.Buffer" | "buffer.Buffer.alloc" | "buffer.Buffer.allocUnsafe" | "buffer.Buffer.allocUnsafeSlow" | "buffer.Buffer.byteLength" | "buffer.Buffer.compare" | "buffer.Buffer.concat" | "buffer.Buffer.copyBytesFrom" | "buffer.Buffer.from" | "buffer.Buffer.isBuffer" | "buffer.Buffer.isEncoding" | "buffer.File" | "child_process" | "child_process.exec" | "child_process.execFile" | "child_process.fork" | "child_process.spawn" | "child_process.execFileSync" | "child_process.execSync" | "child_process.spawnSync" | "child_process.ChildProcess" | "cluster" | "cluster.isMaster" | "cluster.isPrimary" | "cluster.isWorker" | "cluster.schedulingPolicy" | "cluster.settings" | "cluster.worker" | "cluster.workers" | "cluster.disconnect" | "cluster.fork" | "cluster.setupMaster" | "cluster.setupPrimary" | "cluster.Worker" | "crypto.constants" | "crypto.fips" | "crypto.webcrypto" | "crypto.webcrypto.subtle" | "crypto.webcrypto.subtle.decrypt" | "crypto.webcrypto.subtle.deriveBits" | "crypto.webcrypto.subtle.deriveKey" | "crypto.webcrypto.subtle.digest" | "crypto.webcrypto.subtle.encrypt" | "crypto.webcrypto.subtle.exportKey" | "crypto.webcrypto.subtle.generateKey" | "crypto.webcrypto.subtle.importKey" | "crypto.webcrypto.subtle.sign" | "crypto.webcrypto.subtle.unwrapKey" | "crypto.webcrypto.subtle.verify" | "crypto.webcrypto.subtle.wrapKey" | "crypto.webcrypto.getRandomValues" | "crypto.webcrypto.randomUUID" | "crypto.checkPrime" | "crypto.checkPrimeSync" | "crypto.createCipher" | "crypto.createCipheriv" | "crypto.createDecipher" | "crypto.createDecipheriv" | "crypto.createDiffieHellman" | "crypto.createDiffieHellmanGroup" | "crypto.createECDH" | "crypto.createHash" | "crypto.createHmac" | "crypto.createPrivateKey" | "crypto.createPublicKey" | "crypto.createSecretKey" | "crypto.createSign" | "crypto.createVerify" | "crypto.diffieHellman" | "crypto.generateKey" | "crypto.generateKeyPair" | "crypto.generateKeyPairSync" | "crypto.generateKeySync" | "crypto.generatePrime" | "crypto.generatePrimeSync" | "crypto.getCipherInfo" | "crypto.getCiphers" | "crypto.getCurves" | "crypto.getDiffieHellman" | "crypto.getFips" | "crypto.getHashes" | "crypto.hash" | "crypto.hkdf" | "crypto.hkdfSync" | "crypto.pbkdf2" | "crypto.pbkdf2Sync" | "crypto.privateDecrypt" | "crypto.privateEncrypt" | "crypto.publicDecrypt" | "crypto.publicEncrypt" | "crypto.randomBytes" | "crypto.randomFillSync" | "crypto.randomFill" | "crypto.randomInt" | "crypto.scrypt" | "crypto.scryptSync" | "crypto.secureHeapUsed" | "crypto.setEngine" | "crypto.setFips" | "crypto.sign" | "crypto.timingSafeEqual" | "crypto.verify" | "crypto.Certificate" | "crypto.Certificate.exportChallenge" | "crypto.Certificate.exportPublicKey" | "crypto.Certificate.verifySpkac" | "crypto.Cipher" | "crypto.Decipher" | "crypto.DiffieHellman" | "crypto.DiffieHellmanGroup" | "crypto.ECDH" | "crypto.ECDH.convertKey" | "crypto.Hash()" | "new crypto.Hash()" | "crypto.Hash" | "crypto.Hmac()" | "new crypto.Hmac()" | "crypto.Hmac" | "crypto.KeyObject" | "crypto.KeyObject.from" | "crypto.Sign" | "crypto.Verify" | "crypto.X509Certificate" | "dgram" | "dgram.createSocket" | "dgram.Socket" | "diagnostics_channel" | "diagnostics_channel.hasSubscribers" | "diagnostics_channel.channel" | "diagnostics_channel.subscribe" | "diagnostics_channel.unsubscribe" | "diagnostics_channel.tracingChannel" | "diagnostics_channel.Channel" | "diagnostics_channel.TracingChannel" | "dns" | "dns.Resolver" | "dns.getServers" | "dns.lookup" | "dns.lookupService" | "dns.resolve" | "dns.resolve4" | "dns.resolve6" | "dns.resolveAny" | "dns.resolveCname" | "dns.resolveCaa" | "dns.resolveMx" | "dns.resolveNaptr" | "dns.resolveNs" | "dns.resolvePtr" | "dns.resolveSoa" | "dns.resolveSrv" | "dns.resolveTlsa" | "dns.resolveTxt" | "dns.reverse" | "dns.setDefaultResultOrder" | "dns.getDefaultResultOrder" | "dns.setServers" | "dns.promises" | "dns.promises.Resolver" | "dns.promises.cancel" | "dns.promises.getServers" | "dns.promises.lookup" | "dns.promises.lookupService" | "dns.promises.resolve" | "dns.promises.resolve4" | "dns.promises.resolve6" | "dns.promises.resolveAny" | "dns.promises.resolveCaa" | "dns.promises.resolveCname" | "dns.promises.resolveMx" | "dns.promises.resolveNaptr" | "dns.promises.resolveNs" | "dns.promises.resolvePtr" | "dns.promises.resolveSoa" | "dns.promises.resolveSrv" | "dns.promises.resolveTlsa" | "dns.promises.resolveTxt" | "dns.promises.reverse" | "dns.promises.setDefaultResultOrder" | "dns.promises.getDefaultResultOrder" | "dns.promises.setServers" | "dns/promises" | "dns/promises.Resolver" | "dns/promises.cancel" | "dns/promises.getServers" | "dns/promises.lookup" | "dns/promises.lookupService" | "dns/promises.resolve" | "dns/promises.resolve4" | "dns/promises.resolve6" | "dns/promises.resolveAny" | "dns/promises.resolveCaa" | "dns/promises.resolveCname" | "dns/promises.resolveMx" | "dns/promises.resolveNaptr" | "dns/promises.resolveNs" | "dns/promises.resolvePtr" | "dns/promises.resolveSoa" | "dns/promises.resolveSrv" | "dns/promises.resolveTlsa" | "dns/promises.resolveTxt" | "dns/promises.reverse" | "dns/promises.setDefaultResultOrder" | "dns/promises.getDefaultResultOrder" | "dns/promises.setServers" | "domain" | "domain.create" | "domain.Domain" | "events" | "events.Event" | "events.EventTarget" | "events.CustomEvent" | "events.NodeEventTarget" | "events.EventEmitter" | "events.EventEmitter.defaultMaxListeners" | "events.EventEmitter.errorMonitor" | "events.EventEmitter.captureRejections" | "events.EventEmitter.captureRejectionSymbol" | "events.EventEmitter.getEventListeners" | "events.EventEmitter.getMaxListeners" | "events.EventEmitter.once" | "events.EventEmitter.listenerCount" | "events.EventEmitter.on" | "events.EventEmitter.setMaxListeners" | "events.EventEmitter.addAbortListener" | "events.EventEmitterAsyncResource" | "events.EventEmitterAsyncResource.defaultMaxListeners" | "events.EventEmitterAsyncResource.errorMonitor" | "events.EventEmitterAsyncResource.captureRejections" | "events.EventEmitterAsyncResource.captureRejectionSymbol" | "events.EventEmitterAsyncResource.getEventListeners" | "events.EventEmitterAsyncResource.getMaxListeners" | "events.EventEmitterAsyncResource.once" | "events.EventEmitterAsyncResource.listenerCount" | "events.EventEmitterAsyncResource.on" | "events.EventEmitterAsyncResource.setMaxListeners" | "events.EventEmitterAsyncResource.addAbortListener" | "events.defaultMaxListeners" | "events.errorMonitor" | "events.captureRejections" | "events.captureRejectionSymbol" | "events.getEventListeners" | "events.getMaxListeners" | "events.once" | "events.listenerCount" | "events.on" | "events.setMaxListeners" | "events.addAbortListener" | "fs" | "fs.promises" | "fs.promises.FileHandle" | "fs.promises.access" | "fs.promises.appendFile" | "fs.promises.chmod" | "fs.promises.chown" | "fs.promises.constants" | "fs.promises.copyFile" | "fs.promises.cp" | "fs.promises.glob" | "fs.promises.lchmod" | "fs.promises.lchown" | "fs.promises.link" | "fs.promises.lstat" | "fs.promises.lutimes" | "fs.promises.mkdir" | "fs.promises.mkdtemp" | "fs.promises.open" | "fs.promises.opendir" | "fs.promises.readFile" | "fs.promises.readdir" | "fs.promises.readlink" | "fs.promises.realpath" | "fs.promises.rename" | "fs.promises.rm" | "fs.promises.rmdir" | "fs.promises.stat" | "fs.promises.statfs" | "fs.promises.symlink" | "fs.promises.truncate" | "fs.promises.unlink" | "fs.promises.utimes" | "fs.promises.watch" | "fs.promises.writeFile" | "fs.access" | "fs.appendFile" | "fs.chmod" | "fs.chown" | "fs.close" | "fs.copyFile" | "fs.cp" | "fs.createReadStream" | "fs.createWriteStream" | "fs.exists" | "fs.fchmod" | "fs.fchown" | "fs.fdatasync" | "fs.fstat" | "fs.fsync" | "fs.ftruncate" | "fs.futimes" | "fs.glob" | "fs.lchmod" | "fs.lchown" | "fs.link" | "fs.lstat" | "fs.lutimes" | "fs.mkdir" | "fs.mkdtemp" | "fs.native" | "fs.open" | "fs.openAsBlob" | "fs.opendir" | "fs.read" | "fs.readdir" | "fs.readFile" | "fs.readlink" | "fs.readv" | "fs.realpath" | "fs.realpath.native" | "fs.rename" | "fs.rm" | "fs.rmdir" | "fs.stat" | "fs.statfs" | "fs.symlink" | "fs.truncate" | "fs.unlink" | "fs.unwatchFile" | "fs.utimes" | "fs.watch" | "fs.watchFile" | "fs.write" | "fs.writeFile" | "fs.writev" | "fs.accessSync" | "fs.appendFileSync" | "fs.chmodSync" | "fs.chownSync" | "fs.closeSync" | "fs.copyFileSync" | "fs.cpSync" | "fs.existsSync" | "fs.fchmodSync" | "fs.fchownSync" | "fs.fdatasyncSync" | "fs.fstatSync" | "fs.fsyncSync" | "fs.ftruncateSync" | "fs.futimesSync" | "fs.globSync" | "fs.lchmodSync" | "fs.lchownSync" | "fs.linkSync" | "fs.lstatSync" | "fs.lutimesSync" | "fs.mkdirSync" | "fs.mkdtempSync" | "fs.opendirSync" | "fs.openSync" | "fs.readdirSync" | "fs.readFileSync" | "fs.readlinkSync" | "fs.readSync" | "fs.readvSync" | "fs.realpathSync" | "fs.realpathSync.native" | "fs.renameSync" | "fs.rmdirSync" | "fs.rmSync" | "fs.statfsSync" | "fs.statSync" | "fs.symlinkSync" | "fs.truncateSync" | "fs.unlinkSync" | "fs.utimesSync" | "fs.writeFileSync" | "fs.writeSync" | "fs.writevSync" | "fs.constants" | "fs.Dir" | "fs.Dirent" | "fs.FSWatcher" | "fs.StatWatcher" | "fs.ReadStream" | "fs.Stats()" | "new fs.Stats()" | "fs.Stats" | "fs.StatFs" | "fs.WriteStream" | "fs.common_objects" | "fs/promises" | "fs/promises.FileHandle" | "fs/promises.access" | "fs/promises.appendFile" | "fs/promises.chmod" | "fs/promises.chown" | "fs/promises.constants" | "fs/promises.copyFile" | "fs/promises.cp" | "fs/promises.glob" | "fs/promises.lchmod" | "fs/promises.lchown" | "fs/promises.link" | "fs/promises.lstat" | "fs/promises.lutimes" | "fs/promises.mkdir" | "fs/promises.mkdtemp" | "fs/promises.open" | "fs/promises.opendir" | "fs/promises.readFile" | "fs/promises.readdir" | "fs/promises.readlink" | "fs/promises.realpath" | "fs/promises.rename" | "fs/promises.rm" | "fs/promises.rmdir" | "fs/promises.stat" | "fs/promises.statfs" | "fs/promises.symlink" | "fs/promises.truncate" | "fs/promises.unlink" | "fs/promises.utimes" | "fs/promises.watch" | "fs/promises.writeFile" | "http2" | "http2.constants" | "http2.sensitiveHeaders" | "http2.createServer" | "http2.createSecureServer" | "http2.connect" | "http2.getDefaultSettings" | "http2.getPackedSettings" | "http2.getUnpackedSettings" | "http2.performServerHandshake" | "http2.Http2Session" | "http2.ServerHttp2Session" | "http2.ClientHttp2Session" | "http2.Http2Stream" | "http2.ClientHttp2Stream" | "http2.ServerHttp2Stream" | "http2.Http2Server" | "http2.Http2SecureServer" | "http2.Http2ServerRequest" | "http2.Http2ServerResponse" | "http" | "http.METHODS" | "http.STATUS_CODES" | "http.globalAgent" | "http.maxHeaderSize" | "http.createServer" | "http.get" | "http.request" | "http.validateHeaderName" | "http.validateHeaderValue" | "http.setMaxIdleHTTPParsers" | "http.Agent" | "http.ClientRequest" | "http.Server" | "http.ServerResponse" | "http.IncomingMessage" | "http.OutgoingMessage" | "http.WebSocket" | "_http_agent" | "_http_client" | "_http_common" | "_http_incoming" | "_http_outgoing" | "_http_server" | "https" | "https.globalAgent" | "https.createServer" | "https.get" | "https.request" | "https.Agent" | "https.Server" | "inspector" | "inspector.Session" | "inspector.Network.dataReceived" | "inspector.Network.dataSent" | "inspector.Network.loadingFailed" | "inspector.Network.loadingFinished" | "inspector.Network.requestWillBeSent" | "inspector.Network.responseReceived" | "inspector.NetworkResources.put" | "inspector.console" | "inspector.close" | "inspector.open" | "inspector.url" | "inspector.waitForDebugger" | "inspector/promises" | "inspector/promises.Session" | "inspector/promises.Network.dataReceived" | "inspector/promises.Network.dataSent" | "inspector/promises.Network.loadingFailed" | "inspector/promises.Network.loadingFinished" | "inspector/promises.Network.requestWillBeSent" | "inspector/promises.Network.responseReceived" | "inspector/promises.NetworkResources.put" | "inspector/promises.console" | "inspector/promises.close" | "inspector/promises.open" | "inspector/promises.url" | "inspector/promises.waitForDebugger" | "module.builtinModules" | "module.constants.compileCacheStatus" | "module.createRequire" | "module.createRequireFromPath" | "module.enableCompileCache" | "module.findPackageJSON" | "module.flushCompileCache" | "module.getCompileCacheDir" | "module.getSourceMapsSupport" | "module.isBuiltin" | "module.registerHooks" | "module.register" | "module.setSourceMapsSupport" | "module.stripTypeScriptTypes" | "module.syncBuiltinESMExports" | "module.findSourceMap" | "module.SourceMap" | "module.Module.builtinModules" | "module.Module.createRequire" | "module.Module.createRequireFromPath" | "module.Module.enableCompileCache" | "module.Module.findPackageJSON" | "module.Module.flushCompileCache" | "module.Module.getCompileCacheDir" | "module.Module.getSourceMapsSupport" | "module.Module.isBuiltin" | "module.Module.registerHooks" | "module.Module.register" | "module.Module.setSourceMapsSupport" | "module.Module.stripTypeScriptTypes" | "module.Module.syncBuiltinESMExports" | "module.Module.findSourceMap" | "module.Module.SourceMap" | "net" | "net.connect" | "net.createConnection" | "net.createServer" | "net.getDefaultAutoSelectFamily" | "net.setDefaultAutoSelectFamily" | "net.getDefaultAutoSelectFamilyAttemptTimeout" | "net.setDefaultAutoSelectFamilyAttemptTimeout" | "net.isIP" | "net.isIPv4" | "net.isIPv6" | "net.BlockList" | "net.BlockList.isBlockList" | "net.SocketAddress" | "net.SocketAddress.parse" | "net.Server" | "net.Socket" | "os" | "os.EOL" | "os.constants" | "os.constants.priority" | "os.devNull" | "os.availableParallelism" | "os.arch" | "os.cpus" | "os.endianness" | "os.freemem" | "os.getPriority" | "os.homedir" | "os.hostname" | "os.loadavg" | "os.machine" | "os.networkInterfaces" | "os.platform" | "os.release" | "os.setPriority" | "os.tmpdir" | "os.totalmem" | "os.type" | "os.uptime" | "os.userInfo" | "os.version" | "path" | "path.posix" | "path.posix.delimiter" | "path.posix.sep" | "path.posix.basename" | "path.posix.dirname" | "path.posix.extname" | "path.posix.format" | "path.posix.matchesGlob" | "path.posix.isAbsolute" | "path.posix.join" | "path.posix.normalize" | "path.posix.parse" | "path.posix.relative" | "path.posix.resolve" | "path.posix.toNamespacedPath" | "path.win32" | "path.win32.delimiter" | "path.win32.sep" | "path.win32.basename" | "path.win32.dirname" | "path.win32.extname" | "path.win32.format" | "path.win32.matchesGlob" | "path.win32.isAbsolute" | "path.win32.join" | "path.win32.normalize" | "path.win32.parse" | "path.win32.relative" | "path.win32.resolve" | "path.win32.toNamespacedPath" | "path.delimiter" | "path.sep" | "path.basename" | "path.dirname" | "path.extname" | "path.format" | "path.matchesGlob" | "path.isAbsolute" | "path.join" | "path.normalize" | "path.parse" | "path.relative" | "path.resolve" | "path.toNamespacedPath" | "path/posix" | "path/posix.delimiter" | "path/posix.sep" | "path/posix.basename" | "path/posix.dirname" | "path/posix.extname" | "path/posix.format" | "path/posix.matchesGlob" | "path/posix.isAbsolute" | "path/posix.join" | "path/posix.normalize" | "path/posix.parse" | "path/posix.relative" | "path/posix.resolve" | "path/posix.toNamespacedPath" | "path/win32" | "path/win32.delimiter" | "path/win32.sep" | "path/win32.basename" | "path/win32.dirname" | "path/win32.extname" | "path/win32.format" | "path/win32.matchesGlob" | "path/win32.isAbsolute" | "path/win32.join" | "path/win32.normalize" | "path/win32.parse" | "path/win32.relative" | "path/win32.resolve" | "path/win32.toNamespacedPath" | "perf_hooks" | "perf_hooks.performance" | "perf_hooks.performance.clearMarks" | "perf_hooks.performance.clearMeasures" | "perf_hooks.performance.clearResourceTimings" | "perf_hooks.performance.eventLoopUtilization" | "perf_hooks.performance.getEntries" | "perf_hooks.performance.getEntriesByName" | "perf_hooks.performance.getEntriesByType" | "perf_hooks.performance.mark" | "perf_hooks.performance.markResourceTiming" | "perf_hooks.performance.measure" | "perf_hooks.performance.nodeTiming" | "perf_hooks.performance.nodeTiming.bootstrapComplete" | "perf_hooks.performance.nodeTiming.environment" | "perf_hooks.performance.nodeTiming.idleTime" | "perf_hooks.performance.nodeTiming.loopExit" | "perf_hooks.performance.nodeTiming.loopStart" | "perf_hooks.performance.nodeTiming.nodeStart" | "perf_hooks.performance.nodeTiming.uvMetricsInfo" | "perf_hooks.performance.nodeTiming.v8Start" | "perf_hooks.performance.now" | "perf_hooks.performance.onresourcetimingbufferfull" | "perf_hooks.performance.setResourceTimingBufferSize" | "perf_hooks.performance.timeOrigin" | "perf_hooks.performance.timerify" | "perf_hooks.performance.toJSON" | "perf_hooks.createHistogram" | "perf_hooks.monitorEventLoopDelay" | "perf_hooks.PerformanceEntry" | "perf_hooks.PerformanceMark" | "perf_hooks.PerformanceMeasure" | "perf_hooks.PerformanceNodeEntry" | "perf_hooks.PerformanceNodeTiming" | "perf_hooks.PerformanceResourceTiming" | "perf_hooks.PerformanceObserver" | "perf_hooks.PerformanceObserverEntryList" | "perf_hooks.Histogram" | "perf_hooks.IntervalHistogram" | "perf_hooks.RecordableHistogram" | "punycode" | "punycode.ucs2" | "punycode.version" | "punycode.decode" | "punycode.encode" | "punycode.toASCII" | "punycode.toUnicode" | "querystring" | "querystring.decode" | "querystring.encode" | "querystring.escape" | "querystring.parse" | "querystring.stringify" | "querystring.unescape" | "readline" | "readline.promises" | "readline.promises.createInterface" | "readline.promises.Interface" | "readline.promises.Readline" | "readline.clearLine" | "readline.clearScreenDown" | "readline.createInterface" | "readline.cursorTo" | "readline.moveCursor" | "readline.Interface" | "readline.emitKeypressEvents" | "readline.InterfaceConstructor" | "readline/promises" | "readline/promises.createInterface" | "readline/promises.Interface" | "readline/promises.Readline" | "repl" | "repl.start" | "repl.writer" | "repl.REPLServer()" | "repl.REPLServer" | "repl.REPL_MODE_MAGIC" | "repl.REPL_MODE_SLOPPY" | "repl.REPL_MODE_STRICT" | "repl.Recoverable()" | "repl.Recoverable" | "repl.builtinModules" | "sea" | "sea.isSea" | "sea.getAsset" | "sea.getAssetAsBlob" | "sea.getRawAsset" | "sea.sea.isSea" | "sea.sea.getAsset" | "sea.sea.getAssetAsBlob" | "sea.sea.getRawAsset" | "stream" | "stream.promises" | "stream.promises.pipeline" | "stream.promises.finished" | "stream.finished" | "stream.pipeline" | "stream.compose" | "stream.duplexPair" | "stream.Readable" | "stream.Readable.from" | "stream.Readable.isDisturbed" | "stream.Readable.fromWeb" | "stream.Readable.toWeb" | "stream.Writable" | "stream.Writable.fromWeb" | "stream.Writable.toWeb" | "stream.Duplex" | "stream.Duplex.from" | "stream.Duplex.fromWeb" | "stream.Duplex.toWeb" | "stream.Transform" | "stream.isErrored" | "stream.isReadable" | "stream.addAbortSignal" | "stream.getDefaultHighWaterMark" | "stream.setDefaultHighWaterMark" | "stream/promises.pipeline" | "stream/promises.finished" | "stream/web" | "stream/web.ReadableStream" | "stream/web.ReadableStream.from" | "stream/web.ReadableStreamDefaultReader" | "stream/web.ReadableStreamBYOBReader" | "stream/web.ReadableStreamDefaultController" | "stream/web.ReadableByteStreamController" | "stream/web.ReadableStreamBYOBRequest" | "stream/web.WritableStream" | "stream/web.WritableStreamDefaultWriter" | "stream/web.WritableStreamDefaultController" | "stream/web.TransformStream" | "stream/web.TransformStreamDefaultController" | "stream/web.ByteLengthQueuingStrategy" | "stream/web.CountQueuingStrategy" | "stream/web.TextEncoderStream" | "stream/web.TextDecoderStream" | "stream/web.CompressionStream" | "stream/web.DecompressionStream" | "stream/consumers" | "stream/consumers.arrayBuffer" | "stream/consumers.blob" | "stream/consumers.buffer" | "stream/consumers.json" | "stream/consumers.text" | "string_decoder" | "string_decoder.StringDecoder" | "sqlite" | "sqlite.constants" | "sqlite.constants.SQLITE_CHANGESET_OMIT" | "sqlite.constants.SQLITE_CHANGESET_REPLACE" | "sqlite.constants.SQLITE_CHANGESET_ABORT" | "sqlite.backup" | "sqlite.DatabaseSync" | "sqlite.StatementSync" | "sqlite.SQLITE_CHANGESET_OMIT" | "sqlite.SQLITE_CHANGESET_REPLACE" | "sqlite.SQLITE_CHANGESET_ABORT" | "test" | "test.after" | "test.afterEach" | "test.assert" | "test.assert.register" | "test.before" | "test.beforeEach" | "test.describe" | "test.describe.only" | "test.describe.skip" | "test.describe.todo" | "test.it" | "test.it.only" | "test.it.skip" | "test.it.todo" | "test.mock" | "test.mock.fn" | "test.mock.getter" | "test.mock.method" | "test.mock.module" | "test.mock.reset" | "test.mock.restoreAll" | "test.mock.setter" | "test.mock.timers" | "test.mock.timers.enable" | "test.mock.timers.reset" | "test.mock.timers.tick" | "test.only" | "test.run" | "test.snapshot" | "test.snapshot.setDefaultSnapshotSerializers" | "test.snapshot.setResolveSnapshotPath" | "test.skip" | "test.suite" | "test.test" | "test.test.only" | "test.test.skip" | "test.test.todo" | "test.todo" | "timers" | "timers.Immediate" | "timers.Timeout" | "timers.setImmediate" | "timers.clearImmediate" | "timers.setInterval" | "timers.clearInterval" | "timers.setTimeout" | "timers.clearTimeout" | "timers.promises" | "timers.promises.setTimeout" | "timers.promises.setImmediate" | "timers.promises.setInterval" | "timers.promises.scheduler.wait" | "timers.promises.scheduler.yield" | "timers/promises" | "timers/promises.setTimeout" | "timers/promises.setImmediate" | "timers/promises.setInterval" | "timers/promises.scheduler.wait" | "timers/promises.scheduler.yield" | "tls" | "tls.checkServerIdentity" | "tls.connect" | "tls.createSecureContext" | "tls.createSecurePair" | "tls.createServer" | "tls.CryptoStream" | "tls.DEFAULT_CIPHERS" | "tls.DEFAULT_ECDH_CURVE" | "tls.DEFAULT_MAX_VERSION" | "tls.DEFAULT_MIN_VERSION" | "tls.getCACertificates" | "tls.getCiphers" | "tls.rootCertificates" | "tls.SecureContext" | "tls.SecurePair" | "tls.Server" | "tls.setDefaultCACertificates" | "tls.TLSSocket" | "trace_events" | "trace_events.createTracing" | "trace_events.getEnabledCategories" | "tty" | "tty.isatty" | "tty.ReadStream" | "tty.WriteStream" | "url" | "url.domainToASCII" | "url.domainToUnicode" | "url.fileURLToPath" | "url.format" | "url.pathToFileURL" | "url.urlToHttpOptions" | "url.URL" | "url.URL.canParse" | "url.URL.createObjectURL" | "url.URL.revokeObjectURL" | "url.URLPattern" | "url.URLSearchParams" | "url.Url" | "util.promisify" | "util.promisify.custom" | "util.callbackify" | "util.debuglog" | "util.debug" | "util.deprecate" | "util.diff" | "util.format" | "util.formatWithOptions" | "util.getCallSite" | "util.getCallSites" | "util.getSystemErrorName" | "util.getSystemErrorMap" | "util.getSystemErrorMessage" | "util.inherits" | "util.inspect" | "util.inspect.custom" | "util.inspect.defaultOptions" | "util.inspect.replDefaults" | "util.isDeepStrictEqual" | "util.parseArgs" | "util.parseEnv" | "util.setTraceSigInt" | "util.stripVTControlCharacters" | "util.styleText" | "util.toUSVString" | "util.transferableAbortController" | "util.transferableAbortSignal" | "util.aborted" | "util.MIMEType" | "util.MIMEParams" | "util.TextDecoder" | "util.TextEncoder" | "util.types" | "util.types.isExternal" | "util.types.isDate" | "util.types.isArgumentsObject" | "util.types.isBigIntObject" | "util.types.isBooleanObject" | "util.types.isNumberObject" | "util.types.isStringObject" | "util.types.isSymbolObject" | "util.types.isNativeError" | "util.types.isRegExp" | "util.types.isAsyncFunction" | "util.types.isGeneratorFunction" | "util.types.isGeneratorObject" | "util.types.isPromise" | "util.types.isMap" | "util.types.isSet" | "util.types.isMapIterator" | "util.types.isSetIterator" | "util.types.isWeakMap" | "util.types.isWeakSet" | "util.types.isArrayBuffer" | "util.types.isDataView" | "util.types.isSharedArrayBuffer" | "util.types.isProxy" | "util.types.isModuleNamespaceObject" | "util.types.isAnyArrayBuffer" | "util.types.isBoxedPrimitive" | "util.types.isArrayBufferView" | "util.types.isTypedArray" | "util.types.isUint8Array" | "util.types.isUint8ClampedArray" | "util.types.isUint16Array" | "util.types.isUint32Array" | "util.types.isInt8Array" | "util.types.isInt16Array" | "util.types.isInt32Array" | "util.types.isFloat16Array" | "util.types.isFloat32Array" | "util.types.isFloat64Array" | "util.types.isBigInt64Array" | "util.types.isBigUint64Array" | "util.types.isKeyObject" | "util.types.isCryptoKey" | "util.types.isWebAssemblyCompiledModule" | "util._extend" | "util.isArray" | "util.isBoolean" | "util.isBuffer" | "util.isDate" | "util.isError" | "util.isFunction" | "util.isNull" | "util.isNullOrUndefined" | "util.isNumber" | "util.isObject" | "util.isPrimitive" | "util.isRegExp" | "util.isString" | "util.isSymbol" | "util.isUndefined" | "util.log" | "util" | "util/types" | "util/types.isExternal" | "util/types.isDate" | "util/types.isArgumentsObject" | "util/types.isBigIntObject" | "util/types.isBooleanObject" | "util/types.isNumberObject" | "util/types.isStringObject" | "util/types.isSymbolObject" | "util/types.isNativeError" | "util/types.isRegExp" | "util/types.isAsyncFunction" | "util/types.isGeneratorFunction" | "util/types.isGeneratorObject" | "util/types.isPromise" | "util/types.isMap" | "util/types.isSet" | "util/types.isMapIterator" | "util/types.isSetIterator" | "util/types.isWeakMap" | "util/types.isWeakSet" | "util/types.isArrayBuffer" | "util/types.isDataView" | "util/types.isSharedArrayBuffer" | "util/types.isProxy" | "util/types.isModuleNamespaceObject" | "util/types.isAnyArrayBuffer" | "util/types.isBoxedPrimitive" | "util/types.isArrayBufferView" | "util/types.isTypedArray" | "util/types.isUint8Array" | "util/types.isUint8ClampedArray" | "util/types.isUint16Array" | "util/types.isUint32Array" | "util/types.isInt8Array" | "util/types.isInt16Array" | "util/types.isInt32Array" | "util/types.isFloat16Array" | "util/types.isFloat32Array" | "util/types.isFloat64Array" | "util/types.isBigInt64Array" | "util/types.isBigUint64Array" | "util/types.isKeyObject" | "util/types.isCryptoKey" | "util/types.isWebAssemblyCompiledModule" | "v8" | "v8.serialize" | "v8.deserialize" | "v8.Serializer" | "v8.Deserializer" | "v8.DefaultSerializer" | "v8.DefaultDeserializer" | "v8.promiseHooks" | "v8.promiseHooks.onInit" | "v8.promiseHooks.onSettled" | "v8.promiseHooks.onBefore" | "v8.promiseHooks.onAfter" | "v8.promiseHooks.createHook" | "v8.startupSnapshot" | "v8.startupSnapshot.addSerializeCallback" | "v8.startupSnapshot.addDeserializeCallback" | "v8.startupSnapshot.setDeserializeMainFunction" | "v8.startupSnapshot.isBuildingSnapshot" | "v8.cachedDataVersionTag" | "v8.getHeapCodeStatistics" | "v8.getHeapSnapshot" | "v8.getHeapSpaceStatistics" | "v8.getHeapStatistics" | "v8.isStringOneByteRepresentation" | "v8.queryObjects" | "v8.setFlagsFromString" | "v8.stopCoverage" | "v8.takeCoverage" | "v8.writeHeapSnapshot" | "v8.setHeapSnapshotNearHeapLimit" | "v8.GCProfiler" | "vm.constants" | "vm.compileFunction" | "vm.createContext" | "vm.isContext" | "vm.measureMemory" | "vm.runInContext" | "vm.runInNewContext" | "vm.runInThisContext" | "vm.Script" | "vm.Module" | "vm.SourceTextModule" | "vm.SyntheticModule" | "vm" | "wasi.WASI" | "wasi" | "worker_threads" | "worker_threads.parentPort" | "worker_threads.resourceLimits" | "worker_threads.SHARE_ENV" | "worker_threads.threadId" | "worker_threads.workerData" | "worker_threads.getEnvironmentData" | "worker_threads.getHeapStatistics" | "worker_threads.markAsUncloneable" | "worker_threads.markAsUntransferable" | "worker_threads.isInternalThread" | "worker_threads.isMainThread" | "worker_threads.isMarkedAsUntransferable" | "worker_threads.moveMessagePortToContext" | "worker_threads.postMessageToThread" | "worker_threads.receiveMessageOnPort" | "worker_threads.setEnvironmentData" | "worker_threads.BroadcastChannel" | "worker_threads.MessageChannel" | "worker_threads.MessagePort" | "worker_threads.Worker" | "zlib.brotliCompress" | "zlib.brotliCompressSync" | "zlib.brotliDecompress" | "zlib.brotliDecompressSync" | "zlib.constants" | "zlib.constants.ZSTD_e_continue" | "zlib.constants.ZSTD_e_flush" | "zlib.constants.ZSTD_e_end" | "zlib.constants.ZSTD_fast" | "zlib.constants.ZSTD_dfast" | "zlib.constants.ZSTD_greedy" | "zlib.constants.ZSTD_lazy" | "zlib.constants.ZSTD_lazy2" | "zlib.constants.ZSTD_btlazy2" | "zlib.constants.ZSTD_btopt" | "zlib.constants.ZSTD_btultra" | "zlib.constants.ZSTD_btultra2" | "zlib.constants.ZSTD_c_compressionLevel" | "zlib.constants.ZSTD_c_windowLog" | "zlib.constants.ZSTD_c_hashLog" | "zlib.constants.ZSTD_c_chainLog" | "zlib.constants.ZSTD_c_searchLog" | "zlib.constants.ZSTD_c_minMatch" | "zlib.constants.ZSTD_c_targetLength" | "zlib.constants.ZSTD_c_strategy" | "zlib.constants.ZSTD_c_enableLongDistanceMatching" | "zlib.constants.ZSTD_c_ldmHashLog" | "zlib.constants.ZSTD_c_ldmMinMatch" | "zlib.constants.ZSTD_c_ldmBucketSizeLog" | "zlib.constants.ZSTD_c_ldmHashRateLog" | "zlib.constants.ZSTD_c_contentSizeFlag" | "zlib.constants.ZSTD_c_checksumFlag" | "zlib.constants.ZSTD_c_dictIDFlag" | "zlib.constants.ZSTD_c_nbWorkers" | "zlib.constants.ZSTD_c_jobSize" | "zlib.constants.ZSTD_c_overlapLog" | "zlib.constants.ZSTD_d_windowLogMax" | "zlib.constants.ZSTD_CLEVEL_DEFAULT" | "zlib.constants.ZSTD_error_no_error" | "zlib.constants.ZSTD_error_GENERIC" | "zlib.constants.ZSTD_error_prefix_unknown" | "zlib.constants.ZSTD_error_version_unsupported" | "zlib.constants.ZSTD_error_frameParameter_unsupported" | "zlib.constants.ZSTD_error_frameParameter_windowTooLarge" | "zlib.constants.ZSTD_error_corruption_detected" | "zlib.constants.ZSTD_error_checksum_wrong" | "zlib.constants.ZSTD_error_literals_headerWrong" | "zlib.constants.ZSTD_error_dictionary_corrupted" | "zlib.constants.ZSTD_error_dictionary_wrong" | "zlib.constants.ZSTD_error_dictionaryCreation_failed" | "zlib.constants.ZSTD_error_parameter_unsupported" | "zlib.constants.ZSTD_error_parameter_combination_unsupported" | "zlib.constants.ZSTD_error_parameter_outOfBound" | "zlib.constants.ZSTD_error_tableLog_tooLarge" | "zlib.constants.ZSTD_error_maxSymbolValue_tooLarge" | "zlib.constants.ZSTD_error_maxSymbolValue_tooSmall" | "zlib.constants.ZSTD_error_stabilityCondition_notRespected" | "zlib.constants.ZSTD_error_stage_wrong" | "zlib.constants.ZSTD_error_init_missing" | "zlib.constants.ZSTD_error_memory_allocation" | "zlib.constants.ZSTD_error_workSpace_tooSmall" | "zlib.constants.ZSTD_error_dstSize_tooSmall" | "zlib.constants.ZSTD_error_srcSize_wrong" | "zlib.constants.ZSTD_error_dstBuffer_null" | "zlib.constants.ZSTD_error_noForwardProgress_destFull" | "zlib.constants.ZSTD_error_noForwardProgress_inputEmpty" | "zlib.crc32" | "zlib.createBrotliCompress" | "zlib.createBrotliDecompress" | "zlib.createDeflate" | "zlib.createDeflateRaw" | "zlib.createGunzip" | "zlib.createGzip" | "zlib.createInflate" | "zlib.createInflateRaw" | "zlib.createUnzip" | "zlib.createZstdCompress" | "zlib.createZstdDecompress" | "zlib.deflate" | "zlib.deflateRaw" | "zlib.deflateRawSync" | "zlib.deflateSync" | "zlib.gunzip" | "zlib.gunzipSync" | "zlib.gzip" | "zlib.gzipSync" | "zlib.inflate" | "zlib.inflateRaw" | "zlib.inflateRawSync" | "zlib.inflateSync" | "zlib.unzip" | "zlib.unzipSync" | "zlib.zstdCompress" | "zlib.zstdCompressSync" | "zlib.zstdDecompress" | "zlib.zstdDecompressSync" | "zlib.BrotliCompress()" | "zlib.BrotliCompress" | "zlib.BrotliDecompress()" | "zlib.BrotliDecompress" | "zlib.Deflate()" | "zlib.Deflate" | "zlib.DeflateRaw()" | "zlib.DeflateRaw" | "zlib.Gunzip()" | "zlib.Gunzip" | "zlib.Gzip()" | "zlib.Gzip" | "zlib.Inflate()" | "zlib.Inflate" | "zlib.InflateRaw()" | "zlib.InflateRaw" | "zlib.Unzip()" | "zlib.Unzip" | "zlib.ZstdCompress" | "zlib.ZstdDecompress" | "zlib.ZstdOptions" | "zlib" | "import.meta.resolve" | "import.meta.dirname" | "import.meta.filename" | "import.meta.main")[];
8492
+ ignores?: ("__filename" | "__dirname" | "require" | "require.cache" | "require.extensions" | "require.main" | "require.resolve" | "require.resolve.paths" | "module" | "module.children" | "module.exports" | "module.filename" | "module.id" | "module.isPreloading" | "module.loaded" | "module.parent" | "module.path" | "module.paths" | "module.require" | "exports" | "AbortController" | "AbortSignal" | "AbortSignal.abort" | "AbortSignal.timeout" | "AbortSignal.any" | "DOMException" | "FormData" | "Headers" | "MessageEvent" | "Navigator" | "Request" | "Response" | "WebAssembly" | "WebSocket" | "fetch" | "global" | "queueMicrotask" | "navigator" | "navigator.hardwareConcurrency" | "navigator.language" | "navigator.languages" | "navigator.locks" | "navigator.locks.request" | "navigator.locks.query" | "navigator.platform" | "navigator.userAgent" | "structuredClone" | "localStorage" | "sessionStorage" | "Storage" | "Blob" | "new Buffer()" | "Buffer" | "Buffer.alloc" | "Buffer.allocUnsafe" | "Buffer.allocUnsafeSlow" | "Buffer.byteLength" | "Buffer.compare" | "Buffer.concat" | "Buffer.copyBytesFrom" | "Buffer.from" | "Buffer.isBuffer" | "Buffer.isEncoding" | "File" | "atob" | "btoa" | "console" | "console.profile" | "console.profileEnd" | "console.timeStamp" | "console.Console" | "console.assert" | "console.clear" | "console.count" | "console.countReset" | "console.debug" | "console.dir" | "console.dirxml" | "console.error" | "console.group" | "console.groupCollapsed" | "console.groupEnd" | "console.info" | "console.log" | "console.table" | "console.time" | "console.timeEnd" | "console.timeLog" | "console.trace" | "console.warn" | "crypto" | "crypto.subtle" | "crypto.subtle.decapsulateBits" | "crypto.subtle.decapsulateKey" | "crypto.subtle.decrypt" | "crypto.subtle.deriveBits" | "crypto.subtle.deriveKey" | "crypto.subtle.digest" | "crypto.subtle.encapsulateBits" | "crypto.subtle.encapsulateKey" | "crypto.subtle.encrypt" | "crypto.subtle.exportKey" | "crypto.subtle.generateKey" | "crypto.subtle.getPublicKey" | "crypto.subtle.importKey" | "crypto.subtle.sign" | "crypto.subtle.unwrapKey" | "crypto.subtle.verify" | "crypto.subtle.wrapKey" | "crypto.getRandomValues" | "crypto.randomUUID" | "Crypto" | "CryptoKey" | "SubtleCrypto" | "SubtleCrypto.supports" | "CloseEvent" | "CustomEvent" | "Event" | "EventSource" | "EventTarget" | "PerformanceEntry" | "PerformanceMark" | "PerformanceMeasure" | "PerformanceObserver" | "PerformanceObserverEntryList" | "PerformanceResourceTiming" | "performance" | "performance.clearMarks" | "performance.clearMeasures" | "performance.clearResourceTimings" | "performance.eventLoopUtilization" | "performance.getEntries" | "performance.getEntriesByName" | "performance.getEntriesByType" | "performance.mark" | "performance.markResourceTiming" | "performance.measure" | "performance.nodeTiming" | "performance.nodeTiming.bootstrapComplete" | "performance.nodeTiming.environment" | "performance.nodeTiming.idleTime" | "performance.nodeTiming.loopExit" | "performance.nodeTiming.loopStart" | "performance.nodeTiming.nodeStart" | "performance.nodeTiming.uvMetricsInfo" | "performance.nodeTiming.v8Start" | "performance.now" | "performance.onresourcetimingbufferfull" | "performance.setResourceTimingBufferSize" | "performance.timeOrigin" | "performance.timerify" | "performance.toJSON" | "process" | "process.allowedNodeEnvironmentFlags" | "process.availableMemory" | "process.arch" | "process.argv" | "process.argv0" | "process.channel" | "process.config" | "process.connected" | "process.debugPort" | "process.env" | "process.execArgv" | "process.execPath" | "process.execve" | "process.exitCode" | "process.features.cached_builtins" | "process.features.debug" | "process.features.inspector" | "process.features.ipv6" | "process.features.require_module" | "process.features.tls" | "process.features.tls_alpn" | "process.features.tls_ocsp" | "process.features.tls_sni" | "process.features.typescript" | "process.features.uv" | "process.finalization.register" | "process.finalization.registerBeforeExit" | "process.finalization.unregister" | "process.getBuiltinModule" | "process.mainModule" | "process.noDeprecation" | "process.permission" | "process.pid" | "process.platform" | "process.ppid" | "process.ref" | "process.release" | "process.report" | "process.report.excludeEnv" | "process.sourceMapsEnabled" | "process.stdin" | "process.stdin.isRaw" | "process.stdin.isTTY" | "process.stdin.setRawMode" | "process.stdout" | "process.stdout.clearLine" | "process.stdout.clearScreenDown" | "process.stdout.columns" | "process.stdout.cursorTo" | "process.stdout.getColorDepth" | "process.stdout.getWindowSize" | "process.stdout.hasColors" | "process.stdout.isTTY" | "process.stdout.moveCursor" | "process.stdout.rows" | "process.stderr" | "process.stderr.clearLine" | "process.stderr.clearScreenDown" | "process.stderr.columns" | "process.stderr.cursorTo" | "process.stderr.getColorDepth" | "process.stderr.getWindowSize" | "process.stderr.hasColors" | "process.stderr.isTTY" | "process.stderr.moveCursor" | "process.stderr.rows" | "process.threadCpuUsage" | "process.throwDeprecation" | "process.title" | "process.traceDeprecation" | "process.version" | "process.versions" | "process.abort" | "process.chdir" | "process.constrainedMemory" | "process.cpuUsage" | "process.cwd" | "process.disconnect" | "process.dlopen" | "process.emitWarning" | "process.exit" | "process.getActiveResourcesInfo" | "process.getegid" | "process.geteuid" | "process.getgid" | "process.getgroups" | "process.getuid" | "process.hasUncaughtExceptionCaptureCallback" | "process.hrtime" | "process.hrtime.bigint" | "process.initgroups" | "process.kill" | "process.loadEnvFile" | "process.memoryUsage" | "process.rss" | "process.nextTick" | "process.resourceUsage" | "process.send" | "process.setegid" | "process.seteuid" | "process.setgid" | "process.setgroups" | "process.setuid" | "process.setSourceMapsEnabled" | "process.setUncaughtExceptionCaptureCallback" | "process.umask" | "process.unref" | "process.uptime" | "ReadableStream" | "ReadableStream.from" | "ReadableStreamDefaultReader" | "ReadableStreamBYOBReader" | "ReadableStreamDefaultController" | "ReadableByteStreamController" | "ReadableStreamBYOBRequest" | "WritableStream" | "WritableStreamDefaultWriter" | "WritableStreamDefaultController" | "TransformStream" | "TransformStreamDefaultController" | "ByteLengthQueuingStrategy" | "CountQueuingStrategy" | "TextEncoderStream" | "TextDecoderStream" | "CompressionStream" | "DecompressionStream" | "setInterval" | "clearInterval" | "setTimeout" | "clearTimeout" | "setImmediate" | "clearImmediate" | "URL" | "URL.canParse" | "URL.createObjectURL" | "URL.revokeObjectURL" | "URLSearchParams" | "TextDecoder" | "TextEncoder" | "BroadcastChannel" | "MessageChannel" | "MessagePort" | "assert" | "assert.Assert" | "assert.assert" | "assert.deepEqual" | "assert.deepStrictEqual" | "assert.doesNotMatch" | "assert.doesNotReject" | "assert.doesNotThrow" | "assert.equal" | "assert.fail" | "assert.ifError" | "assert.match" | "assert.notDeepEqual" | "assert.notDeepStrictEqual" | "assert.notEqual" | "assert.notStrictEqual" | "assert.ok" | "assert.partialDeepStrictEqual" | "assert.rejects" | "assert.strictEqual" | "assert.throws" | "assert.CallTracker" | "assert.strict" | "assert.strict.Assert" | "assert.strict.assert" | "assert.strict.deepEqual" | "assert.strict.deepStrictEqual" | "assert.strict.doesNotMatch" | "assert.strict.doesNotReject" | "assert.strict.doesNotThrow" | "assert.strict.equal" | "assert.strict.fail" | "assert.strict.ifError" | "assert.strict.match" | "assert.strict.notDeepEqual" | "assert.strict.notDeepStrictEqual" | "assert.strict.notEqual" | "assert.strict.notStrictEqual" | "assert.strict.ok" | "assert.strict.partialDeepStrictEqual" | "assert.strict.rejects" | "assert.strict.strictEqual" | "assert.strict.throws" | "assert.strict.CallTracker" | "assert/strict" | "assert/strict.Assert" | "assert/strict.assert" | "assert/strict.deepEqual" | "assert/strict.deepStrictEqual" | "assert/strict.doesNotMatch" | "assert/strict.doesNotReject" | "assert/strict.doesNotThrow" | "assert/strict.equal" | "assert/strict.fail" | "assert/strict.ifError" | "assert/strict.match" | "assert/strict.notDeepEqual" | "assert/strict.notDeepStrictEqual" | "assert/strict.notEqual" | "assert/strict.notStrictEqual" | "assert/strict.ok" | "assert/strict.partialDeepStrictEqual" | "assert/strict.rejects" | "assert/strict.strictEqual" | "assert/strict.throws" | "assert/strict.CallTracker" | "async_hooks" | "async_hooks.createHook" | "async_hooks.executionAsyncResource" | "async_hooks.executionAsyncId" | "async_hooks.triggerAsyncId" | "async_hooks.AsyncLocalStorage" | "async_hooks.AsyncLocalStorage.bind" | "async_hooks.AsyncLocalStorage.snapshot" | "async_hooks.AsyncResource" | "async_hooks.AsyncResource.bind" | "buffer" | "buffer.constants" | "buffer.INSPECT_MAX_BYTES" | "buffer.kMaxLength" | "buffer.kStringMaxLength" | "buffer.atob" | "buffer.btoa" | "buffer.isAscii" | "buffer.isUtf8" | "buffer.resolveObjectURL" | "buffer.transcode" | "buffer.SlowBuffer" | "buffer.Blob" | "new buffer.Buffer()" | "buffer.Buffer" | "buffer.Buffer.alloc" | "buffer.Buffer.allocUnsafe" | "buffer.Buffer.allocUnsafeSlow" | "buffer.Buffer.byteLength" | "buffer.Buffer.compare" | "buffer.Buffer.concat" | "buffer.Buffer.copyBytesFrom" | "buffer.Buffer.from" | "buffer.Buffer.isBuffer" | "buffer.Buffer.isEncoding" | "buffer.File" | "child_process" | "child_process.exec" | "child_process.execFile" | "child_process.fork" | "child_process.spawn" | "child_process.execFileSync" | "child_process.execSync" | "child_process.spawnSync" | "child_process.ChildProcess" | "cluster" | "cluster.isMaster" | "cluster.isPrimary" | "cluster.isWorker" | "cluster.schedulingPolicy" | "cluster.settings" | "cluster.worker" | "cluster.workers" | "cluster.disconnect" | "cluster.fork" | "cluster.setupMaster" | "cluster.setupPrimary" | "cluster.Worker" | "crypto.constants" | "crypto.fips" | "crypto.webcrypto" | "crypto.webcrypto.subtle" | "crypto.webcrypto.subtle.decapsulateBits" | "crypto.webcrypto.subtle.decapsulateKey" | "crypto.webcrypto.subtle.decrypt" | "crypto.webcrypto.subtle.deriveBits" | "crypto.webcrypto.subtle.deriveKey" | "crypto.webcrypto.subtle.digest" | "crypto.webcrypto.subtle.encapsulateBits" | "crypto.webcrypto.subtle.encapsulateKey" | "crypto.webcrypto.subtle.encrypt" | "crypto.webcrypto.subtle.exportKey" | "crypto.webcrypto.subtle.generateKey" | "crypto.webcrypto.subtle.getPublicKey" | "crypto.webcrypto.subtle.importKey" | "crypto.webcrypto.subtle.sign" | "crypto.webcrypto.subtle.unwrapKey" | "crypto.webcrypto.subtle.verify" | "crypto.webcrypto.subtle.wrapKey" | "crypto.webcrypto.getRandomValues" | "crypto.webcrypto.randomUUID" | "crypto.argon2" | "crypto.argon2Sync" | "crypto.checkPrime" | "crypto.checkPrimeSync" | "crypto.createCipher" | "crypto.createCipheriv" | "crypto.createDecipher" | "crypto.createDecipheriv" | "crypto.createDiffieHellman" | "crypto.createDiffieHellmanGroup" | "crypto.createECDH" | "crypto.createHash" | "crypto.createHmac" | "crypto.createPrivateKey" | "crypto.createPublicKey" | "crypto.createSecretKey" | "crypto.createSign" | "crypto.createVerify" | "crypto.decapsulate" | "crypto.diffieHellman" | "crypto.encapsulate" | "crypto.generateKey" | "crypto.generateKeyPair" | "crypto.generateKeyPairSync" | "crypto.generateKeySync" | "crypto.generatePrime" | "crypto.generatePrimeSync" | "crypto.getCipherInfo" | "crypto.getCiphers" | "crypto.getCurves" | "crypto.getDiffieHellman" | "crypto.getFips" | "crypto.getHashes" | "crypto.hash" | "crypto.hkdf" | "crypto.hkdfSync" | "crypto.pbkdf2" | "crypto.pbkdf2Sync" | "crypto.privateDecrypt" | "crypto.privateEncrypt" | "crypto.publicDecrypt" | "crypto.publicEncrypt" | "crypto.randomBytes" | "crypto.randomFillSync" | "crypto.randomFill" | "crypto.randomInt" | "crypto.scrypt" | "crypto.scryptSync" | "crypto.secureHeapUsed" | "crypto.setEngine" | "crypto.setFips" | "crypto.sign" | "crypto.timingSafeEqual" | "crypto.verify" | "crypto.Certificate" | "crypto.Certificate.exportChallenge" | "crypto.Certificate.exportPublicKey" | "crypto.Certificate.verifySpkac" | "crypto.Cipher" | "crypto.Decipher" | "crypto.DiffieHellman" | "crypto.DiffieHellmanGroup" | "crypto.ECDH" | "crypto.ECDH.convertKey" | "crypto.Hash()" | "new crypto.Hash()" | "crypto.Hash" | "crypto.Hmac()" | "new crypto.Hmac()" | "crypto.Hmac" | "crypto.KeyObject" | "crypto.KeyObject.from" | "crypto.Sign" | "crypto.Verify" | "crypto.X509Certificate" | "dgram" | "dgram.createSocket" | "dgram.Socket" | "diagnostics_channel" | "diagnostics_channel.hasSubscribers" | "diagnostics_channel.channel" | "diagnostics_channel.subscribe" | "diagnostics_channel.unsubscribe" | "diagnostics_channel.tracingChannel" | "diagnostics_channel.Channel" | "diagnostics_channel.TracingChannel" | "dns" | "dns.Resolver" | "dns.getServers" | "dns.lookup" | "dns.lookupService" | "dns.resolve" | "dns.resolve4" | "dns.resolve6" | "dns.resolveAny" | "dns.resolveCname" | "dns.resolveCaa" | "dns.resolveMx" | "dns.resolveNaptr" | "dns.resolveNs" | "dns.resolvePtr" | "dns.resolveSoa" | "dns.resolveSrv" | "dns.resolveTlsa" | "dns.resolveTxt" | "dns.reverse" | "dns.setDefaultResultOrder" | "dns.getDefaultResultOrder" | "dns.setServers" | "dns.promises" | "dns.promises.Resolver" | "dns.promises.cancel" | "dns.promises.getServers" | "dns.promises.lookup" | "dns.promises.lookupService" | "dns.promises.resolve" | "dns.promises.resolve4" | "dns.promises.resolve6" | "dns.promises.resolveAny" | "dns.promises.resolveCaa" | "dns.promises.resolveCname" | "dns.promises.resolveMx" | "dns.promises.resolveNaptr" | "dns.promises.resolveNs" | "dns.promises.resolvePtr" | "dns.promises.resolveSoa" | "dns.promises.resolveSrv" | "dns.promises.resolveTlsa" | "dns.promises.resolveTxt" | "dns.promises.reverse" | "dns.promises.setDefaultResultOrder" | "dns.promises.getDefaultResultOrder" | "dns.promises.setServers" | "dns/promises" | "dns/promises.Resolver" | "dns/promises.cancel" | "dns/promises.getServers" | "dns/promises.lookup" | "dns/promises.lookupService" | "dns/promises.resolve" | "dns/promises.resolve4" | "dns/promises.resolve6" | "dns/promises.resolveAny" | "dns/promises.resolveCaa" | "dns/promises.resolveCname" | "dns/promises.resolveMx" | "dns/promises.resolveNaptr" | "dns/promises.resolveNs" | "dns/promises.resolvePtr" | "dns/promises.resolveSoa" | "dns/promises.resolveSrv" | "dns/promises.resolveTlsa" | "dns/promises.resolveTxt" | "dns/promises.reverse" | "dns/promises.setDefaultResultOrder" | "dns/promises.getDefaultResultOrder" | "dns/promises.setServers" | "domain" | "domain.create" | "domain.Domain" | "events" | "events.Event" | "events.EventTarget" | "events.CustomEvent" | "events.NodeEventTarget" | "events.EventEmitter" | "events.EventEmitter.defaultMaxListeners" | "events.EventEmitter.errorMonitor" | "events.EventEmitter.captureRejections" | "events.EventEmitter.captureRejectionSymbol" | "events.EventEmitter.getEventListeners" | "events.EventEmitter.getMaxListeners" | "events.EventEmitter.once" | "events.EventEmitter.listenerCount" | "events.EventEmitter.on" | "events.EventEmitter.setMaxListeners" | "events.EventEmitter.addAbortListener" | "events.EventEmitterAsyncResource" | "events.EventEmitterAsyncResource.defaultMaxListeners" | "events.EventEmitterAsyncResource.errorMonitor" | "events.EventEmitterAsyncResource.captureRejections" | "events.EventEmitterAsyncResource.captureRejectionSymbol" | "events.EventEmitterAsyncResource.getEventListeners" | "events.EventEmitterAsyncResource.getMaxListeners" | "events.EventEmitterAsyncResource.once" | "events.EventEmitterAsyncResource.listenerCount" | "events.EventEmitterAsyncResource.on" | "events.EventEmitterAsyncResource.setMaxListeners" | "events.EventEmitterAsyncResource.addAbortListener" | "events.defaultMaxListeners" | "events.errorMonitor" | "events.captureRejections" | "events.captureRejectionSymbol" | "events.getEventListeners" | "events.getMaxListeners" | "events.once" | "events.listenerCount" | "events.on" | "events.setMaxListeners" | "events.addAbortListener" | "fs" | "fs.promises" | "fs.promises.FileHandle" | "fs.promises.access" | "fs.promises.appendFile" | "fs.promises.chmod" | "fs.promises.chown" | "fs.promises.constants" | "fs.promises.copyFile" | "fs.promises.cp" | "fs.promises.glob" | "fs.promises.lchmod" | "fs.promises.lchown" | "fs.promises.link" | "fs.promises.lstat" | "fs.promises.lutimes" | "fs.promises.mkdir" | "fs.promises.mkdtemp" | "fs.promises.mkdtempDisposable" | "fs.promises.open" | "fs.promises.opendir" | "fs.promises.readFile" | "fs.promises.readdir" | "fs.promises.readlink" | "fs.promises.realpath" | "fs.promises.rename" | "fs.promises.rm" | "fs.promises.rmdir" | "fs.promises.stat" | "fs.promises.statfs" | "fs.promises.symlink" | "fs.promises.truncate" | "fs.promises.unlink" | "fs.promises.utimes" | "fs.promises.watch" | "fs.promises.writeFile" | "fs.access" | "fs.appendFile" | "fs.chmod" | "fs.chown" | "fs.close" | "fs.copyFile" | "fs.cp" | "fs.createReadStream" | "fs.createWriteStream" | "fs.exists" | "fs.fchmod" | "fs.fchown" | "fs.fdatasync" | "fs.fstat" | "fs.fsync" | "fs.ftruncate" | "fs.futimes" | "fs.glob" | "fs.lchmod" | "fs.lchown" | "fs.link" | "fs.lstat" | "fs.lutimes" | "fs.mkdir" | "fs.mkdtemp" | "fs.native" | "fs.open" | "fs.openAsBlob" | "fs.opendir" | "fs.read" | "fs.readdir" | "fs.readFile" | "fs.readlink" | "fs.readv" | "fs.realpath" | "fs.realpath.native" | "fs.rename" | "fs.rm" | "fs.rmdir" | "fs.stat" | "fs.statfs" | "fs.symlink" | "fs.truncate" | "fs.unlink" | "fs.unwatchFile" | "fs.utimes" | "fs.watch" | "fs.watchFile" | "fs.write" | "fs.writeFile" | "fs.writev" | "fs.accessSync" | "fs.appendFileSync" | "fs.chmodSync" | "fs.chownSync" | "fs.closeSync" | "fs.copyFileSync" | "fs.cpSync" | "fs.existsSync" | "fs.fchmodSync" | "fs.fchownSync" | "fs.fdatasyncSync" | "fs.fstatSync" | "fs.fsyncSync" | "fs.ftruncateSync" | "fs.futimesSync" | "fs.globSync" | "fs.lchmodSync" | "fs.lchownSync" | "fs.linkSync" | "fs.lstatSync" | "fs.lutimesSync" | "fs.mkdirSync" | "fs.mkdtempSync" | "fs.mkdtempDisposableSync" | "fs.opendirSync" | "fs.openSync" | "fs.readdirSync" | "fs.readFileSync" | "fs.readlinkSync" | "fs.readSync" | "fs.readvSync" | "fs.realpathSync" | "fs.realpathSync.native" | "fs.renameSync" | "fs.rmdirSync" | "fs.rmSync" | "fs.statfsSync" | "fs.statSync" | "fs.symlinkSync" | "fs.truncateSync" | "fs.unlinkSync" | "fs.utimesSync" | "fs.writeFileSync" | "fs.writeSync" | "fs.writevSync" | "fs.constants" | "fs.Dir" | "fs.Dirent" | "fs.FSWatcher" | "fs.StatWatcher" | "fs.ReadStream" | "fs.Stats()" | "new fs.Stats()" | "fs.Stats" | "fs.StatFs" | "fs.WriteStream" | "fs.Utf8Stream" | "fs.common_objects" | "fs/promises" | "fs/promises.FileHandle" | "fs/promises.access" | "fs/promises.appendFile" | "fs/promises.chmod" | "fs/promises.chown" | "fs/promises.constants" | "fs/promises.copyFile" | "fs/promises.cp" | "fs/promises.glob" | "fs/promises.lchmod" | "fs/promises.lchown" | "fs/promises.link" | "fs/promises.lstat" | "fs/promises.lutimes" | "fs/promises.mkdir" | "fs/promises.mkdtemp" | "fs/promises.mkdtempDisposable" | "fs/promises.open" | "fs/promises.opendir" | "fs/promises.readFile" | "fs/promises.readdir" | "fs/promises.readlink" | "fs/promises.realpath" | "fs/promises.rename" | "fs/promises.rm" | "fs/promises.rmdir" | "fs/promises.stat" | "fs/promises.statfs" | "fs/promises.symlink" | "fs/promises.truncate" | "fs/promises.unlink" | "fs/promises.utimes" | "fs/promises.watch" | "fs/promises.writeFile" | "http2" | "http2.constants" | "http2.sensitiveHeaders" | "http2.createServer" | "http2.createSecureServer" | "http2.connect" | "http2.getDefaultSettings" | "http2.getPackedSettings" | "http2.getUnpackedSettings" | "http2.performServerHandshake" | "http2.Http2Session" | "http2.ServerHttp2Session" | "http2.ClientHttp2Session" | "http2.Http2Stream" | "http2.ClientHttp2Stream" | "http2.ServerHttp2Stream" | "http2.Http2Server" | "http2.Http2SecureServer" | "http2.Http2ServerRequest" | "http2.Http2ServerResponse" | "http" | "http.METHODS" | "http.STATUS_CODES" | "http.globalAgent" | "http.maxHeaderSize" | "http.createServer" | "http.get" | "http.request" | "http.validateHeaderName" | "http.validateHeaderValue" | "http.setMaxIdleHTTPParsers" | "http.Agent()" | "http.Agent" | "http.ClientRequest()" | "http.ClientRequest" | "http.Server()" | "http.Server" | "http.ServerResponse()" | "http.ServerResponse" | "http.IncomingMessage()" | "http.IncomingMessage" | "http.OutgoingMessage()" | "http.OutgoingMessage" | "http.WebSocket()" | "http.WebSocket" | "_http_agent" | "_http_client" | "_http_common" | "_http_incoming" | "_http_outgoing" | "_http_server" | "https" | "https.globalAgent" | "https.createServer" | "https.get" | "https.request" | "https.Agent" | "https.Server" | "inspector" | "inspector.Session" | "inspector.Network.dataReceived" | "inspector.Network.dataSent" | "inspector.Network.loadingFailed" | "inspector.Network.loadingFinished" | "inspector.Network.requestWillBeSent" | "inspector.Network.responseReceived" | "inspector.Network.webSocketCreated" | "inspector.Network.webSocketHandshakeResponseReceived" | "inspector.Network.webSocketClosed" | "inspector.NetworkResources.put" | "inspector.console" | "inspector.close" | "inspector.open" | "inspector.url" | "inspector.waitForDebugger" | "inspector/promises" | "inspector/promises.Session" | "inspector/promises.Network.dataReceived" | "inspector/promises.Network.dataSent" | "inspector/promises.Network.loadingFailed" | "inspector/promises.Network.loadingFinished" | "inspector/promises.Network.requestWillBeSent" | "inspector/promises.Network.responseReceived" | "inspector/promises.Network.webSocketCreated" | "inspector/promises.Network.webSocketHandshakeResponseReceived" | "inspector/promises.Network.webSocketClosed" | "inspector/promises.NetworkResources.put" | "inspector/promises.console" | "inspector/promises.close" | "inspector/promises.open" | "inspector/promises.url" | "inspector/promises.waitForDebugger" | "module.builtinModules" | "module.constants.compileCacheStatus" | "module.createRequire" | "module.createRequireFromPath" | "module.enableCompileCache" | "module.findPackageJSON" | "module.flushCompileCache" | "module.getCompileCacheDir" | "module.getSourceMapsSupport" | "module.isBuiltin" | "module.registerHooks" | "module.register" | "module.setSourceMapsSupport" | "module.stripTypeScriptTypes" | "module.syncBuiltinESMExports" | "module.findSourceMap" | "module.SourceMap" | "module.Module.builtinModules" | "module.Module.createRequire" | "module.Module.createRequireFromPath" | "module.Module.enableCompileCache" | "module.Module.findPackageJSON" | "module.Module.flushCompileCache" | "module.Module.getCompileCacheDir" | "module.Module.getSourceMapsSupport" | "module.Module.isBuiltin" | "module.Module.registerHooks" | "module.Module.register" | "module.Module.setSourceMapsSupport" | "module.Module.stripTypeScriptTypes" | "module.Module.syncBuiltinESMExports" | "module.Module.findSourceMap" | "module.Module.SourceMap" | "net" | "net.connect" | "net.createConnection" | "net.createServer" | "net.getDefaultAutoSelectFamily" | "net.setDefaultAutoSelectFamily" | "net.getDefaultAutoSelectFamilyAttemptTimeout" | "net.setDefaultAutoSelectFamilyAttemptTimeout" | "net.isIP" | "net.isIPv4" | "net.isIPv6" | "net.BlockList" | "net.BlockList.isBlockList" | "net.SocketAddress" | "net.SocketAddress.parse" | "net.Server" | "net.Socket" | "os" | "os.EOL" | "os.constants" | "os.constants.priority" | "os.devNull" | "os.availableParallelism" | "os.arch" | "os.cpus" | "os.endianness" | "os.freemem" | "os.getPriority" | "os.homedir" | "os.hostname" | "os.loadavg" | "os.machine" | "os.networkInterfaces" | "os.platform" | "os.release" | "os.setPriority" | "os.tmpdir" | "os.totalmem" | "os.type" | "os.uptime" | "os.userInfo" | "os.version" | "path" | "path.posix" | "path.posix.delimiter" | "path.posix.sep" | "path.posix.basename" | "path.posix.dirname" | "path.posix.extname" | "path.posix.format" | "path.posix.matchesGlob" | "path.posix.isAbsolute" | "path.posix.join" | "path.posix.normalize" | "path.posix.parse" | "path.posix.relative" | "path.posix.resolve" | "path.posix.toNamespacedPath" | "path.win32" | "path.win32.delimiter" | "path.win32.sep" | "path.win32.basename" | "path.win32.dirname" | "path.win32.extname" | "path.win32.format" | "path.win32.matchesGlob" | "path.win32.isAbsolute" | "path.win32.join" | "path.win32.normalize" | "path.win32.parse" | "path.win32.relative" | "path.win32.resolve" | "path.win32.toNamespacedPath" | "path.delimiter" | "path.sep" | "path.basename" | "path.dirname" | "path.extname" | "path.format" | "path.matchesGlob" | "path.isAbsolute" | "path.join" | "path.normalize" | "path.parse" | "path.relative" | "path.resolve" | "path.toNamespacedPath" | "path/posix" | "path/posix.delimiter" | "path/posix.sep" | "path/posix.basename" | "path/posix.dirname" | "path/posix.extname" | "path/posix.format" | "path/posix.matchesGlob" | "path/posix.isAbsolute" | "path/posix.join" | "path/posix.normalize" | "path/posix.parse" | "path/posix.relative" | "path/posix.resolve" | "path/posix.toNamespacedPath" | "path/win32" | "path/win32.delimiter" | "path/win32.sep" | "path/win32.basename" | "path/win32.dirname" | "path/win32.extname" | "path/win32.format" | "path/win32.matchesGlob" | "path/win32.isAbsolute" | "path/win32.join" | "path/win32.normalize" | "path/win32.parse" | "path/win32.relative" | "path/win32.resolve" | "path/win32.toNamespacedPath" | "perf_hooks" | "perf_hooks.performance" | "perf_hooks.performance.clearMarks" | "perf_hooks.performance.clearMeasures" | "perf_hooks.performance.clearResourceTimings" | "perf_hooks.performance.eventLoopUtilization" | "perf_hooks.performance.getEntries" | "perf_hooks.performance.getEntriesByName" | "perf_hooks.performance.getEntriesByType" | "perf_hooks.performance.mark" | "perf_hooks.performance.markResourceTiming" | "perf_hooks.performance.measure" | "perf_hooks.performance.nodeTiming" | "perf_hooks.performance.nodeTiming.bootstrapComplete" | "perf_hooks.performance.nodeTiming.environment" | "perf_hooks.performance.nodeTiming.idleTime" | "perf_hooks.performance.nodeTiming.loopExit" | "perf_hooks.performance.nodeTiming.loopStart" | "perf_hooks.performance.nodeTiming.nodeStart" | "perf_hooks.performance.nodeTiming.uvMetricsInfo" | "perf_hooks.performance.nodeTiming.v8Start" | "perf_hooks.performance.now" | "perf_hooks.performance.onresourcetimingbufferfull" | "perf_hooks.performance.setResourceTimingBufferSize" | "perf_hooks.performance.timeOrigin" | "perf_hooks.performance.timerify" | "perf_hooks.performance.toJSON" | "perf_hooks.createHistogram" | "perf_hooks.eventLoopUtilization" | "perf_hooks.timerify" | "perf_hooks.monitorEventLoopDelay" | "perf_hooks.PerformanceEntry" | "perf_hooks.PerformanceMark" | "perf_hooks.PerformanceMeasure" | "perf_hooks.PerformanceNodeEntry" | "perf_hooks.PerformanceNodeTiming" | "perf_hooks.PerformanceResourceTiming" | "perf_hooks.PerformanceObserver" | "perf_hooks.PerformanceObserverEntryList" | "perf_hooks.Histogram" | "perf_hooks.IntervalHistogram" | "perf_hooks.RecordableHistogram" | "punycode" | "punycode.ucs2" | "punycode.version" | "punycode.decode" | "punycode.encode" | "punycode.toASCII" | "punycode.toUnicode" | "querystring" | "querystring.decode" | "querystring.encode" | "querystring.escape" | "querystring.parse" | "querystring.stringify" | "querystring.unescape" | "readline" | "readline.promises" | "readline.promises.createInterface" | "readline.promises.Interface" | "readline.promises.Readline" | "readline.clearLine" | "readline.clearScreenDown" | "readline.createInterface" | "readline.cursorTo" | "readline.moveCursor" | "readline.Interface" | "readline.emitKeypressEvents" | "readline.InterfaceConstructor" | "readline/promises" | "readline/promises.createInterface" | "readline/promises.Interface" | "readline/promises.Readline" | "repl" | "repl.start" | "repl.writer" | "repl.REPLServer()" | "repl.REPLServer" | "repl.REPL_MODE_MAGIC" | "repl.REPL_MODE_SLOPPY" | "repl.REPL_MODE_STRICT" | "repl.Recoverable()" | "repl.Recoverable" | "repl.builtinModules" | "sea" | "sea.isSea" | "sea.getAsset" | "sea.getAssetAsBlob" | "sea.getAssetKeys" | "sea.getRawAsset" | "sea.sea.isSea" | "sea.sea.getAsset" | "sea.sea.getAssetAsBlob" | "sea.sea.getAssetKeys" | "sea.sea.getRawAsset" | "stream" | "stream.promises" | "stream.promises.pipeline" | "stream.promises.finished" | "stream.finished" | "stream.pipeline" | "stream.compose" | "stream.duplexPair" | "stream.Readable" | "stream.Readable.from" | "stream.Readable.isDisturbed" | "stream.Readable.fromWeb" | "stream.Readable.toWeb" | "stream.Writable" | "stream.Writable.fromWeb" | "stream.Writable.toWeb" | "stream.Duplex" | "stream.Duplex.from" | "stream.Duplex.fromWeb" | "stream.Duplex.toWeb" | "stream.Transform" | "stream.isErrored" | "stream.isReadable" | "stream.addAbortSignal" | "stream.getDefaultHighWaterMark" | "stream.setDefaultHighWaterMark" | "stream/promises.pipeline" | "stream/promises.finished" | "stream/web" | "stream/web.ReadableStream" | "stream/web.ReadableStream.from" | "stream/web.ReadableStreamDefaultReader" | "stream/web.ReadableStreamBYOBReader" | "stream/web.ReadableStreamDefaultController" | "stream/web.ReadableByteStreamController" | "stream/web.ReadableStreamBYOBRequest" | "stream/web.WritableStream" | "stream/web.WritableStreamDefaultWriter" | "stream/web.WritableStreamDefaultController" | "stream/web.TransformStream" | "stream/web.TransformStreamDefaultController" | "stream/web.ByteLengthQueuingStrategy" | "stream/web.CountQueuingStrategy" | "stream/web.TextEncoderStream" | "stream/web.TextDecoderStream" | "stream/web.CompressionStream" | "stream/web.DecompressionStream" | "stream/consumers" | "stream/consumers.arrayBuffer" | "stream/consumers.blob" | "stream/consumers.buffer" | "stream/consumers.json" | "stream/consumers.text" | "_stream_duplex" | "_stream_passthrough" | "_stream_readable" | "_stream_transform" | "_stream_wrap" | "_stream_writable" | "string_decoder" | "string_decoder.StringDecoder" | "sqlite" | "sqlite.constants" | "sqlite.constants.SQLITE_CHANGESET_OMIT" | "sqlite.constants.SQLITE_CHANGESET_REPLACE" | "sqlite.constants.SQLITE_CHANGESET_ABORT" | "sqlite.backup" | "sqlite.DatabaseSync" | "sqlite.Session" | "sqlite.StatementSync" | "sqlite.SQLITE_CHANGESET_OMIT" | "sqlite.SQLITE_CHANGESET_REPLACE" | "sqlite.SQLITE_CHANGESET_ABORT" | "test" | "test.after" | "test.afterEach" | "test.assert" | "test.assert.register" | "test.before" | "test.beforeEach" | "test.describe" | "test.describe.only" | "test.describe.skip" | "test.describe.todo" | "test.it" | "test.it.only" | "test.it.skip" | "test.it.todo" | "test.mock" | "test.mock.fn" | "test.mock.getter" | "test.mock.method" | "test.mock.module" | "test.mock.property" | "test.mock.reset" | "test.mock.restoreAll" | "test.mock.setter" | "test.mock.timers" | "test.mock.timers.enable" | "test.mock.timers.reset" | "test.mock.timers.tick" | "test.only" | "test.run" | "test.snapshot" | "test.snapshot.setDefaultSnapshotSerializers" | "test.snapshot.setResolveSnapshotPath" | "test.skip" | "test.suite" | "test.test" | "test.test.only" | "test.test.skip" | "test.test.todo" | "test.todo" | "timers" | "timers.Immediate" | "timers.Timeout" | "timers.setImmediate" | "timers.clearImmediate" | "timers.setInterval" | "timers.clearInterval" | "timers.setTimeout" | "timers.clearTimeout" | "timers.promises" | "timers.promises.setTimeout" | "timers.promises.setImmediate" | "timers.promises.setInterval" | "timers.promises.scheduler.wait" | "timers.promises.scheduler.yield" | "timers/promises" | "timers/promises.setTimeout" | "timers/promises.setImmediate" | "timers/promises.setInterval" | "timers/promises.scheduler.wait" | "timers/promises.scheduler.yield" | "tls" | "tls.checkServerIdentity" | "tls.connect" | "tls.createSecureContext" | "tls.createSecurePair" | "tls.createServer" | "tls.CryptoStream" | "tls.DEFAULT_CIPHERS" | "tls.DEFAULT_ECDH_CURVE" | "tls.DEFAULT_MAX_VERSION" | "tls.DEFAULT_MIN_VERSION" | "tls.getCACertificates" | "tls.getCiphers" | "tls.rootCertificates" | "tls.SecureContext" | "tls.SecurePair" | "tls.Server" | "tls.setDefaultCACertificates" | "tls.TLSSocket" | "_tls_common" | "_tls_wrap" | "trace_events" | "trace_events.createTracing" | "trace_events.getEnabledCategories" | "tty" | "tty.isatty" | "tty.ReadStream" | "tty.WriteStream" | "url" | "url.domainToASCII" | "url.domainToUnicode" | "url.fileURLToPath" | "url.format" | "url.pathToFileURL" | "url.urlToHttpOptions" | "url.URL" | "url.URL.canParse" | "url.URL.createObjectURL" | "url.URL.revokeObjectURL" | "url.URLPattern" | "url.URLSearchParams" | "url.Url" | "util.promisify" | "util.promisify.custom" | "util.callbackify" | "util.debuglog" | "util.debug" | "util.deprecate" | "util.diff" | "util.format" | "util.formatWithOptions" | "util.getCallSite" | "util.getCallSites" | "util.getSystemErrorName" | "util.getSystemErrorMap" | "util.getSystemErrorMessage" | "util.inherits" | "util.inspect" | "util.inspect.custom" | "util.inspect.defaultOptions" | "util.inspect.replDefaults" | "util.isDeepStrictEqual" | "util.parseArgs" | "util.parseEnv" | "util.setTraceSigInt" | "util.stripVTControlCharacters" | "util.styleText" | "util.toUSVString" | "util.transferableAbortController" | "util.transferableAbortSignal" | "util.aborted" | "util.MIMEType" | "util.MIMEParams" | "util.TextDecoder" | "util.TextEncoder" | "util.types" | "util.types.isExternal" | "util.types.isDate" | "util.types.isArgumentsObject" | "util.types.isBigIntObject" | "util.types.isBooleanObject" | "util.types.isNumberObject" | "util.types.isStringObject" | "util.types.isSymbolObject" | "util.types.isNativeError" | "util.types.isRegExp" | "util.types.isAsyncFunction" | "util.types.isGeneratorFunction" | "util.types.isGeneratorObject" | "util.types.isPromise" | "util.types.isMap" | "util.types.isSet" | "util.types.isMapIterator" | "util.types.isSetIterator" | "util.types.isWeakMap" | "util.types.isWeakSet" | "util.types.isArrayBuffer" | "util.types.isDataView" | "util.types.isSharedArrayBuffer" | "util.types.isProxy" | "util.types.isModuleNamespaceObject" | "util.types.isAnyArrayBuffer" | "util.types.isBoxedPrimitive" | "util.types.isArrayBufferView" | "util.types.isTypedArray" | "util.types.isUint8Array" | "util.types.isUint8ClampedArray" | "util.types.isUint16Array" | "util.types.isUint32Array" | "util.types.isInt8Array" | "util.types.isInt16Array" | "util.types.isInt32Array" | "util.types.isFloat16Array" | "util.types.isFloat32Array" | "util.types.isFloat64Array" | "util.types.isBigInt64Array" | "util.types.isBigUint64Array" | "util.types.isKeyObject" | "util.types.isCryptoKey" | "util.types.isWebAssemblyCompiledModule" | "util._extend" | "util.isArray" | "util.isBoolean" | "util.isBuffer" | "util.isDate" | "util.isError" | "util.isFunction" | "util.isNull" | "util.isNullOrUndefined" | "util.isNumber" | "util.isObject" | "util.isPrimitive" | "util.isRegExp" | "util.isString" | "util.isSymbol" | "util.isUndefined" | "util.log" | "util" | "util/types" | "util/types.isExternal" | "util/types.isDate" | "util/types.isArgumentsObject" | "util/types.isBigIntObject" | "util/types.isBooleanObject" | "util/types.isNumberObject" | "util/types.isStringObject" | "util/types.isSymbolObject" | "util/types.isNativeError" | "util/types.isRegExp" | "util/types.isAsyncFunction" | "util/types.isGeneratorFunction" | "util/types.isGeneratorObject" | "util/types.isPromise" | "util/types.isMap" | "util/types.isSet" | "util/types.isMapIterator" | "util/types.isSetIterator" | "util/types.isWeakMap" | "util/types.isWeakSet" | "util/types.isArrayBuffer" | "util/types.isDataView" | "util/types.isSharedArrayBuffer" | "util/types.isProxy" | "util/types.isModuleNamespaceObject" | "util/types.isAnyArrayBuffer" | "util/types.isBoxedPrimitive" | "util/types.isArrayBufferView" | "util/types.isTypedArray" | "util/types.isUint8Array" | "util/types.isUint8ClampedArray" | "util/types.isUint16Array" | "util/types.isUint32Array" | "util/types.isInt8Array" | "util/types.isInt16Array" | "util/types.isInt32Array" | "util/types.isFloat16Array" | "util/types.isFloat32Array" | "util/types.isFloat64Array" | "util/types.isBigInt64Array" | "util/types.isBigUint64Array" | "util/types.isKeyObject" | "util/types.isCryptoKey" | "util/types.isWebAssemblyCompiledModule" | "v8" | "v8.serialize" | "v8.deserialize" | "v8.Serializer" | "v8.Deserializer" | "v8.DefaultSerializer" | "v8.DefaultDeserializer" | "v8.promiseHooks" | "v8.promiseHooks.onInit" | "v8.promiseHooks.onSettled" | "v8.promiseHooks.onBefore" | "v8.promiseHooks.onAfter" | "v8.promiseHooks.createHook" | "v8.startupSnapshot" | "v8.startupSnapshot.addSerializeCallback" | "v8.startupSnapshot.addDeserializeCallback" | "v8.startupSnapshot.setDeserializeMainFunction" | "v8.startupSnapshot.isBuildingSnapshot" | "v8.cachedDataVersionTag" | "v8.getHeapCodeStatistics" | "v8.getHeapSnapshot" | "v8.getHeapSpaceStatistics" | "v8.getHeapStatistics" | "v8.isStringOneByteRepresentation" | "v8.queryObjects" | "v8.setFlagsFromString" | "v8.stopCoverage" | "v8.takeCoverage" | "v8.writeHeapSnapshot" | "v8.setHeapSnapshotNearHeapLimit" | "v8.GCProfiler" | "v8.startCpuProfile" | "vm.constants" | "vm.compileFunction" | "vm.createContext" | "vm.isContext" | "vm.measureMemory" | "vm.runInContext" | "vm.runInNewContext" | "vm.runInThisContext" | "vm.Script" | "vm.Module" | "vm.SourceTextModule" | "vm.SyntheticModule" | "vm" | "wasi.WASI" | "wasi" | "worker_threads" | "worker_threads.parentPort" | "worker_threads.resourceLimits" | "worker_threads.SHARE_ENV" | "worker_threads.threadId" | "worker_threads.threadName" | "worker_threads.workerData" | "worker_threads.getEnvironmentData" | "worker_threads.getHeapStatistics" | "worker_threads.markAsUncloneable" | "worker_threads.markAsUntransferable" | "worker_threads.isInternalThread" | "worker_threads.isMainThread" | "worker_threads.isMarkedAsUntransferable" | "worker_threads.locks" | "worker_threads.locks.request" | "worker_threads.locks.query" | "worker_threads.moveMessagePortToContext" | "worker_threads.postMessageToThread" | "worker_threads.receiveMessageOnPort" | "worker_threads.setEnvironmentData" | "worker_threads.BroadcastChannel" | "worker_threads.MessageChannel" | "worker_threads.MessagePort" | "worker_threads.Worker" | "zlib.brotliCompress" | "zlib.brotliCompressSync" | "zlib.brotliDecompress" | "zlib.brotliDecompressSync" | "zlib.constants" | "zlib.constants.ZSTD_e_continue" | "zlib.constants.ZSTD_e_flush" | "zlib.constants.ZSTD_e_end" | "zlib.constants.ZSTD_fast" | "zlib.constants.ZSTD_dfast" | "zlib.constants.ZSTD_greedy" | "zlib.constants.ZSTD_lazy" | "zlib.constants.ZSTD_lazy2" | "zlib.constants.ZSTD_btlazy2" | "zlib.constants.ZSTD_btopt" | "zlib.constants.ZSTD_btultra" | "zlib.constants.ZSTD_btultra2" | "zlib.constants.ZSTD_c_compressionLevel" | "zlib.constants.ZSTD_c_windowLog" | "zlib.constants.ZSTD_c_hashLog" | "zlib.constants.ZSTD_c_chainLog" | "zlib.constants.ZSTD_c_searchLog" | "zlib.constants.ZSTD_c_minMatch" | "zlib.constants.ZSTD_c_targetLength" | "zlib.constants.ZSTD_c_strategy" | "zlib.constants.ZSTD_c_enableLongDistanceMatching" | "zlib.constants.ZSTD_c_ldmHashLog" | "zlib.constants.ZSTD_c_ldmMinMatch" | "zlib.constants.ZSTD_c_ldmBucketSizeLog" | "zlib.constants.ZSTD_c_ldmHashRateLog" | "zlib.constants.ZSTD_c_contentSizeFlag" | "zlib.constants.ZSTD_c_checksumFlag" | "zlib.constants.ZSTD_c_dictIDFlag" | "zlib.constants.ZSTD_c_nbWorkers" | "zlib.constants.ZSTD_c_jobSize" | "zlib.constants.ZSTD_c_overlapLog" | "zlib.constants.ZSTD_d_windowLogMax" | "zlib.constants.ZSTD_CLEVEL_DEFAULT" | "zlib.constants.ZSTD_error_no_error" | "zlib.constants.ZSTD_error_GENERIC" | "zlib.constants.ZSTD_error_prefix_unknown" | "zlib.constants.ZSTD_error_version_unsupported" | "zlib.constants.ZSTD_error_frameParameter_unsupported" | "zlib.constants.ZSTD_error_frameParameter_windowTooLarge" | "zlib.constants.ZSTD_error_corruption_detected" | "zlib.constants.ZSTD_error_checksum_wrong" | "zlib.constants.ZSTD_error_literals_headerWrong" | "zlib.constants.ZSTD_error_dictionary_corrupted" | "zlib.constants.ZSTD_error_dictionary_wrong" | "zlib.constants.ZSTD_error_dictionaryCreation_failed" | "zlib.constants.ZSTD_error_parameter_unsupported" | "zlib.constants.ZSTD_error_parameter_combination_unsupported" | "zlib.constants.ZSTD_error_parameter_outOfBound" | "zlib.constants.ZSTD_error_tableLog_tooLarge" | "zlib.constants.ZSTD_error_maxSymbolValue_tooLarge" | "zlib.constants.ZSTD_error_maxSymbolValue_tooSmall" | "zlib.constants.ZSTD_error_stabilityCondition_notRespected" | "zlib.constants.ZSTD_error_stage_wrong" | "zlib.constants.ZSTD_error_init_missing" | "zlib.constants.ZSTD_error_memory_allocation" | "zlib.constants.ZSTD_error_workSpace_tooSmall" | "zlib.constants.ZSTD_error_dstSize_tooSmall" | "zlib.constants.ZSTD_error_srcSize_wrong" | "zlib.constants.ZSTD_error_dstBuffer_null" | "zlib.constants.ZSTD_error_noForwardProgress_destFull" | "zlib.constants.ZSTD_error_noForwardProgress_inputEmpty" | "zlib.crc32" | "zlib.createBrotliCompress" | "zlib.createBrotliDecompress" | "zlib.createDeflate" | "zlib.createDeflateRaw" | "zlib.createGunzip" | "zlib.createGzip" | "zlib.createInflate" | "zlib.createInflateRaw" | "zlib.createUnzip" | "zlib.createZstdCompress" | "zlib.createZstdDecompress" | "zlib.deflate" | "zlib.deflateRaw" | "zlib.deflateRawSync" | "zlib.deflateSync" | "zlib.gunzip" | "zlib.gunzipSync" | "zlib.gzip" | "zlib.gzipSync" | "zlib.inflate" | "zlib.inflateRaw" | "zlib.inflateRawSync" | "zlib.inflateSync" | "zlib.unzip" | "zlib.unzipSync" | "zlib.zstdCompress" | "zlib.zstdCompressSync" | "zlib.zstdDecompress" | "zlib.zstdDecompressSync" | "zlib.BrotliCompress()" | "zlib.BrotliCompress" | "zlib.BrotliDecompress()" | "zlib.BrotliDecompress" | "zlib.Deflate()" | "zlib.Deflate" | "zlib.DeflateRaw()" | "zlib.DeflateRaw" | "zlib.Gunzip()" | "zlib.Gunzip" | "zlib.Gzip()" | "zlib.Gzip" | "zlib.Inflate()" | "zlib.Inflate" | "zlib.InflateRaw()" | "zlib.InflateRaw" | "zlib.Unzip()" | "zlib.Unzip" | "zlib.ZstdCompress" | "zlib.ZstdDecompress" | "zlib.ZstdOptions" | "zlib" | "import.meta.resolve" | "import.meta.dirname" | "import.meta.filename" | "import.meta.main")[];
8474
8493
  }]; // ----- node/prefer-global/buffer -----
8475
8494
  type NodePreferGlobalBuffer = [] | [("always" | "never")]; // ----- node/prefer-global/console -----
8476
8495
  type NodePreferGlobalConsole = [] | [("always" | "never")]; // ----- node/prefer-global/crypto -----
@@ -17123,7 +17142,7 @@ interface OptionsComponentExts {
17123
17142
  /**
17124
17143
  * Additional extensions for components.
17125
17144
  *
17126
- * @example ['vue']
17145
+ * @example ['svelte']
17127
17146
  * @default []
17128
17147
  */
17129
17148
  componentExts?: string[];
@@ -17211,7 +17230,28 @@ interface OptionsHasTailwindCSS extends OptionsOverrides {
17211
17230
  interface TailwindCSSOptions {
17212
17231
  entryPoint?: string;
17213
17232
  printWidth?: number;
17214
- cwd?: string;
17233
+ /**
17234
+ * Working directory used by `eslint-plugin-better-tailwindcss` to resolve
17235
+ * the Tailwind CSS config file relative to the project root.
17236
+ *
17237
+ * Pass a **string array** (or an array of simple glob patterns ending with
17238
+ * `/*`) to support multiple packages in a monorepo. Each resolved directory
17239
+ * gets its own ESLint config block with the corresponding `cwd` setting, and
17240
+ * the linted `files` are automatically scoped to each subtree so the blocks
17241
+ * do not conflict.
17242
+ *
17243
+ * @example Single project
17244
+ * cwd: '.'
17245
+ *
17246
+ * @example Explicit monorepo paths
17247
+ * cwd: ['./apps/web', './apps/admin']
17248
+ *
17249
+ * @example Glob expansion (all immediate subdirectories)
17250
+ * cwd: ['./apps/*', './packages/*']
17251
+ *
17252
+ * @default '.'
17253
+ */
17254
+ cwd?: string | string[];
17215
17255
  }
17216
17256
  interface OptionsOverrides {
17217
17257
  overrides?: TypedFlatConfigItem['rules'];
@@ -17602,11 +17642,11 @@ declare function combine(...configs: Awaitable<TypedFlatConfigItem | TypedFlatCo
17602
17642
  */
17603
17643
  declare function rename_rules(rules: Record<string, any>, map: Record<string, string>): Record<string, any>;
17604
17644
  /**
17605
- * Rename plugin names a flat configs array
17645
+ * Rename plugin names in a flat configs array.
17606
17646
  *
17607
17647
  * @example
17608
17648
  * ```ts
17609
- * import { rename_plugin_in_configs } from '@antfu/eslint-config'
17649
+ * import { rename_plugin_in_configs } from '@ariel-salgado/eslint-config'
17610
17650
  * import someConfigs from './some-configs'
17611
17651
  *
17612
17652
  * export default rename_plugin_in_configs(someConfigs, {
@@ -17622,5 +17662,19 @@ declare function interop_default<T>(m: Awaitable<T>): Promise<T extends {
17622
17662
  } ? U : T>;
17623
17663
  declare function is_package_in_scope(name: string): boolean;
17624
17664
  declare function ensure_packages(packages: (string | undefined)[]): Promise<void>;
17665
+ /**
17666
+ * Expand a single cwd pattern to concrete directory paths.
17667
+ *
17668
+ * Patterns containing `*` (e.g. `apps/*`, `./packages/**`) are expanded by
17669
+ * listing all immediate subdirectories of the base segment that precedes the
17670
+ * first `*`. This mirrors the monorepo convention where every direct child of
17671
+ * `apps/` or `packages/` is an independent project.
17672
+ */
17673
+ declare function expand_cwd_globs(pattern: string): string[];
17674
+ /**
17675
+ * Normalise a `cwd` value (string or array, with optional glob patterns) to a
17676
+ * flat list of concrete directory paths, all using forward slashes.
17677
+ */
17678
+ declare function resolve_cwd_list(cwd: string | string[]): string[];
17625
17679
  //#endregion
17626
- export { Awaitable, type ConfigNames, GLOB_ALL_SRC, GLOB_CSS, GLOB_EXCLUDE, GLOB_HTML, GLOB_JS, GLOB_JSON, GLOB_JSON5, GLOB_JSONC, GLOB_LESS, GLOB_MARKDOWN, GLOB_MARKDOWN_CODE, GLOB_MARKDOWN_IN_MARKDOWN, GLOB_POSTCSS, GLOB_SCSS, GLOB_SRC, GLOB_SRC_EXT, GLOB_STYLE, GLOB_SVELTE, GLOB_SVG, GLOB_TESTS, GLOB_TOML, GLOB_TS, GLOB_XML, GLOB_YAML, OptionsComponentExts, OptionsConfig, OptionsE18e, OptionsFiles, OptionsHasTailwindCSS, OptionsHasTypeScript, OptionsMarkdown, OptionsOverrides, OptionsPnpm, OptionsProjectType, OptionsRegExp, OptionsStylistic, OptionsTypeScriptErasableOnly, OptionsTypeScriptParserOptions, OptionsTypeScriptWithTypes, OptionsTypescript, OptionsUnicorn, PRESET_FULL_OFF, PRESET_FULL_ON, ResolvedOptions, type RuleOptions, Rules, StylisticConfig, StylisticConfigDefaults, TailwindCSSOptions, TypedFlatConfigItem, combine, comments, defineConfig as default, defineConfig, default_plugin_renaming, disables, e18e, ensure_packages, get_overrides, ignores, imports, interop_default, is_package_in_scope, javascript, jsdoc, jsonc, markdown, morgan, node, parser_plain, perfectionist, pnpm, regexp, rename_plugin_in_configs, rename_rules, resolve_sub_options, sort_package_json, sort_ts_config, stylistic, svelte, tailwindcss, test, to_array, toml, typescript, unicorn, yaml };
17680
+ export { Awaitable, type ConfigNames, GLOB_ALL_SRC, GLOB_CSS, GLOB_EXCLUDE, GLOB_HTML, GLOB_JS, GLOB_JSON, GLOB_JSON5, GLOB_JSONC, GLOB_LESS, GLOB_MARKDOWN, GLOB_MARKDOWN_CODE, GLOB_MARKDOWN_IN_MARKDOWN, GLOB_POSTCSS, GLOB_SCSS, GLOB_SRC, GLOB_SRC_EXT, GLOB_STYLE, GLOB_SVELTE, GLOB_SVG, GLOB_TESTS, GLOB_TOML, GLOB_TS, GLOB_XML, GLOB_YAML, OptionsComponentExts, OptionsConfig, OptionsE18e, OptionsFiles, OptionsHasTailwindCSS, OptionsHasTypeScript, OptionsMarkdown, OptionsOverrides, OptionsPnpm, OptionsProjectType, OptionsRegExp, OptionsStylistic, OptionsTypeScriptErasableOnly, OptionsTypeScriptParserOptions, OptionsTypeScriptWithTypes, OptionsTypescript, OptionsUnicorn, PRESET_FULL_OFF, PRESET_FULL_ON, ResolvedOptions, type RuleOptions, Rules, StylisticConfig, StylisticConfigDefaults, TailwindCSSOptions, TypedFlatConfigItem, combine, comments, defineConfig as default, defineConfig, default_plugin_renaming, disables, e18e, ensure_packages, expand_cwd_globs, get_overrides, ignores, imports, interop_default, is_package_in_scope, javascript, jsdoc, jsonc, markdown, morgan, node, parser_plain, perfectionist, pnpm, regexp, rename_plugin_in_configs, rename_rules, resolve_cwd_list, resolve_sub_options, sort_package_json, sort_ts_config, stylistic, svelte, tailwindcss, test, to_array, toml, typescript, unicorn, yaml };
package/dist/index.mjs CHANGED
@@ -1,5 +1,4 @@
1
1
  import { FlatConfigComposer } from "eslint-flat-config-utils";
2
- import { findUp } from "find-up-simple";
3
2
  import plugin_e18e from "@e18e/eslint-plugin";
4
3
  import plugin_comments from "@eslint-community/eslint-plugin-eslint-comments";
5
4
  import "eslint-config-flat-gitignore";
@@ -13,8 +12,12 @@ import plugin_unicorn from "eslint-plugin-unicorn";
13
12
  import plugin_unused_imports from "eslint-plugin-unused-imports";
14
13
  import process from "node:process";
15
14
  import { readFile } from "node:fs/promises";
15
+ import { findUp } from "find-up-simple";
16
16
  import { isPackageExists } from "local-pkg";
17
17
  import globals from "globals";
18
+ import { readdirSync } from "node:fs";
19
+ import { createInterface } from "node:readline";
20
+ import { isatty } from "node:tty";
18
21
  import { fileURLToPath } from "node:url";
19
22
  import { mergeProcessors, processorPassThrough } from "eslint-merge-processors";
20
23
  //#region src/configs/comments.ts
@@ -152,6 +155,9 @@ async function has_pnpm_catalogs() {
152
155
  const yaml = await readFile(workspace_file, "utf8");
153
156
  return yaml.includes("catalog:") || yaml.includes("catalogs:");
154
157
  }
158
+ function is_in_turbo() {
159
+ return Boolean(process.env.TURBO_HASH);
160
+ }
155
161
  function is_in_git_hooks_or_lint_staged() {
156
162
  return !!(process.env.GIT_PARAMS || process.env.VSCODE_GIT_COMMAND || process.env.npm_lifecycle_script?.startsWith("lint-staged"));
157
163
  }
@@ -498,11 +504,11 @@ function rename_rules(rules, map) {
498
504
  }));
499
505
  }
500
506
  /**
501
- * Rename plugin names a flat configs array
507
+ * Rename plugin names in a flat configs array.
502
508
  *
503
509
  * @example
504
510
  * ```ts
505
- * import { rename_plugin_in_configs } from '@antfu/eslint-config'
511
+ * import { rename_plugin_in_configs } from '@ariel-salgado/eslint-config'
506
512
  * import someConfigs from './some-configs'
507
513
  *
508
514
  * export default rename_plugin_in_configs(someConfigs, {
@@ -532,11 +538,70 @@ async function interop_default(m) {
532
538
  function is_package_in_scope(name) {
533
539
  return isPackageExists(name, { paths: [scope_url] });
534
540
  }
541
+ /**
542
+ * Reliable TTY detection for both Node.js and Bun.
543
+ * Bun returns `undefined` (not `false`) for `process.stdout.isTTY`, so the
544
+ * old `=== false` guard silently skipped the check. `tty.isatty(1)` is the
545
+ * correct cross-runtime approach.
546
+ */
547
+ function is_interactive() {
548
+ try {
549
+ return isatty(1);
550
+ } catch {
551
+ return !!process.stdout.isTTY;
552
+ }
553
+ }
554
+ /**
555
+ * Prompt the user with a yes/no question via node:readline.
556
+ * Replaces @clack/prompts which has known broken behaviour on Bun
557
+ */
558
+ async function prompt_confirm(message) {
559
+ return new Promise((resolve) => {
560
+ const rl = createInterface({
561
+ input: process.stdin,
562
+ output: process.stdout
563
+ });
564
+ rl.question(`\n◆ ${message} (y/N) `, (answer) => {
565
+ rl.close();
566
+ resolve(answer.trim().toLowerCase() === "y" || answer.trim().toLowerCase() === "yes");
567
+ });
568
+ });
569
+ }
535
570
  async function ensure_packages(packages) {
536
- if (process.env.CI || process.stdout.isTTY === false || is_cwd_in_scope === false) return;
537
- const non_existing_packages = packages.filter((i) => i && !is_package_in_scope(i));
538
- if (non_existing_packages.length === 0) return;
539
- if (await (await import("@clack/prompts")).confirm({ message: `${non_existing_packages.length === 1 ? "Package is" : "Packages are"} required for this config: ${non_existing_packages.join(", ")}. Do you want to install them?` })) await import("@antfu/install-pkg").then((i) => i.installPackage(non_existing_packages, { dev: true }));
571
+ if (process.env.CI || !is_interactive() || is_cwd_in_scope === false) return;
572
+ const non_existing = packages.filter((p) => p && !is_package_in_scope(p));
573
+ if (non_existing.length === 0) return;
574
+ const msg = `${non_existing.length === 1 ? "Package is" : "Packages are"} required for this config: ${non_existing.join(", ")}. Do you want to install them?`;
575
+ try {
576
+ if (await prompt_confirm(msg)) await import("@antfu/install-pkg").then((i) => i.installPackage(non_existing, { dev: true }));
577
+ } catch {
578
+ process.stderr.write(`\n[eslint-config] Could not prompt for missing packages. Install manually: ${non_existing.join(", ")}\n\n`);
579
+ }
580
+ }
581
+ /**
582
+ * Expand a single cwd pattern to concrete directory paths.
583
+ *
584
+ * Patterns containing `*` (e.g. `apps/*`, `./packages/**`) are expanded by
585
+ * listing all immediate subdirectories of the base segment that precedes the
586
+ * first `*`. This mirrors the monorepo convention where every direct child of
587
+ * `apps/` or `packages/` is an independent project.
588
+ */
589
+ function expand_cwd_globs(pattern) {
590
+ const p = pattern.replace(/\\/g, "/");
591
+ if (!p.includes("*")) return [p];
592
+ const base = p.slice(0, p.indexOf("*")).replace(/\/$/, "") || ".";
593
+ try {
594
+ return readdirSync(base, { withFileTypes: true }).filter((e) => e.isDirectory()).map((e) => `${base}/${e.name}`);
595
+ } catch {
596
+ return [];
597
+ }
598
+ }
599
+ /**
600
+ * Normalise a `cwd` value (string or array, with optional glob patterns) to a
601
+ * flat list of concrete directory paths, all using forward slashes.
602
+ */
603
+ function resolve_cwd_list(cwd) {
604
+ return to_array(cwd).flat().flatMap(expand_cwd_globs);
540
605
  }
541
606
  //#endregion
542
607
  //#region src/configs/jsdoc.ts
@@ -1309,6 +1374,14 @@ async function stylistic(options = {}) {
1309
1374
  },
1310
1375
  rules: {
1311
1376
  ...config.rules,
1377
+ "style/quotes": [
1378
+ "error",
1379
+ quotes ?? "single",
1380
+ {
1381
+ avoidEscape: true,
1382
+ allowTemplateLiterals: "never"
1383
+ }
1384
+ ],
1312
1385
  ...experimental ? {} : { "ariel/consistent-list-newline": "error" },
1313
1386
  "ariel/consistent-chaining": "error",
1314
1387
  "ariel/curly": "error",
@@ -1342,7 +1415,7 @@ async function svelte(options = {}) {
1342
1415
  parser: parser_svelte,
1343
1416
  parserOptions: {
1344
1417
  extraFileExtensions: [".svelte"],
1345
- parser: options.typescript ? await interop_default(import("@typescript-eslint/parser")) : null
1418
+ ...options.typescript && { parser: await interop_default(import("@typescript-eslint/parser")) }
1346
1419
  }
1347
1420
  },
1348
1421
  name: "ariel/svelte/rules",
@@ -1396,32 +1469,34 @@ async function tailwindcss(options = {}) {
1396
1469
  await ensure_packages(packages_to_ensure);
1397
1470
  const plugin_tailwindcss = await interop_default(import("eslint-plugin-better-tailwindcss"));
1398
1471
  const svelte_eslint_parser = has_svelte() ? await interop_default(import("svelte-eslint-parser")) : null;
1472
+ const cwds = resolve_cwd_list(cwd);
1473
+ const rules = {
1474
+ ...plugin_tailwindcss.configs.recommended.rules,
1475
+ "tailwindcss/enforce-consistent-line-wrapping": ["error", {
1476
+ indent: typeof indent === "number" ? indent : indent === "tab" ? "tab" : 2,
1477
+ printWidth,
1478
+ preferSingleLine: true
1479
+ }],
1480
+ "tailwindcss/enforce-consistent-important-position": "error",
1481
+ "tailwindcss/enforce-shorthand-classes": "error",
1482
+ "tailwindcss/no-deprecated-classes": "error",
1483
+ "tailwindcss/no-unknown-classes": ["error", { detectComponentClasses: true }],
1484
+ "tailwindcss/enforce-consistent-variant-order": "error",
1485
+ ...overrides
1486
+ };
1399
1487
  return [{
1400
1488
  name: "ariel/tailwindcss/setup",
1401
1489
  plugins: { tailwindcss: plugin_tailwindcss }
1402
- }, {
1490
+ }, ...cwds.map((path, i) => ({
1403
1491
  files,
1404
- name: "ariel/tailwindcss/rules",
1492
+ name: cwds.length > 1 ? `ariel/tailwindcss/rules/workspace-${i + 1}` : "ariel/tailwindcss/rules",
1405
1493
  ...has_svelte() && { languageOptions: { parser: svelte_eslint_parser } },
1406
- rules: {
1407
- ...plugin_tailwindcss.configs.recommended.rules,
1408
- "tailwindcss/enforce-consistent-line-wrapping": ["error", {
1409
- indent: typeof indent === "number" ? indent : indent === "tab" ? "tab" : 2,
1410
- printWidth,
1411
- preferSingleLine: true
1412
- }],
1413
- "tailwindcss/enforce-consistent-important-position": "error",
1414
- "tailwindcss/enforce-shorthand-classes": "error",
1415
- "tailwindcss/no-deprecated-classes": "error",
1416
- "tailwindcss/no-unknown-classes": ["error", { detectComponentClasses: true }],
1417
- "tailwindcss/enforce-consistent-variant-order": "error",
1418
- ...overrides
1419
- },
1494
+ rules,
1420
1495
  settings: { "better-tailwindcss": {
1421
1496
  entryPoint,
1422
- cwd
1497
+ cwd: is_in_turbo() ? "." : path
1423
1498
  } }
1424
- }];
1499
+ }))];
1425
1500
  }
1426
1501
  //#endregion
1427
1502
  //#region src/configs/test.ts
@@ -1571,12 +1646,13 @@ async function typescript(options = {}) {
1571
1646
  files,
1572
1647
  name: "ariel/typescript/rules",
1573
1648
  rules: {
1574
- ...rename_rules(plugin_ts.configs["eslint-recommended"].overrides[0].rules, { "@typescript-eslint": "ts" }),
1649
+ ...rename_rules(plugin_ts.configs["eslint-recommended"].overrides?.[0]?.rules ?? plugin_ts.configs["eslint-recommended"].rules ?? {}, { "@typescript-eslint": "ts" }),
1575
1650
  ...rename_rules(plugin_ts.configs.strict.rules, { "@typescript-eslint": "ts" }),
1576
1651
  "no-dupe-class-members": "off",
1577
1652
  "no-redeclare": "off",
1578
1653
  "no-use-before-define": "off",
1579
1654
  "no-useless-constructor": "off",
1655
+ "ts/quotes": "off",
1580
1656
  "ts/ban-ts-comment": ["error", { "ts-expect-error": "allow-with-description" }],
1581
1657
  "ts/consistent-type-definitions": ["error", "interface"],
1582
1658
  "ts/consistent-type-imports": ["error", {
@@ -1629,7 +1705,7 @@ async function typescript(options = {}) {
1629
1705
  }] : [],
1630
1706
  ...erasableOnly ? [{
1631
1707
  name: "ariel/typescript/erasable-syntax-only",
1632
- plugins: { "erasable-syntax-only": await interop_default(import("./lib-Dbi8MGGA.mjs")) },
1708
+ plugins: { "erasable-syntax-only": await interop_default(import("./lib-Zws18UTk.mjs")) },
1633
1709
  rules: {
1634
1710
  "erasable-syntax-only/enums": "error",
1635
1711
  "erasable-syntax-only/import-aliases": "error",
@@ -1740,7 +1816,7 @@ const default_plugin_renaming = {
1740
1816
  * The merged ESLint configurations.
1741
1817
  */
1742
1818
  function defineConfig(options = {}, ...userConfigs) {
1743
- const { autoRenamePlugins = true, componentExts = [], e18e: enableE18e = true, gitignore: enableGitignore = true, ignores: userIgnores = [], imports: enableImports = true, jsdoc: enableJsdoc = true, node: enableNode = true, pnpm: enableCatalogs = !!findUp("pnpm-workspace.yaml"), regexp: enableRegexp = true, svelte: enableSvelte = has_svelte(), tailwindcss: enableTailwindcss = has_tailwindcss(), type: appType = "app", typescript: enableTypeScript = has_typescript(), unicorn: enableUnicorn = true } = options;
1819
+ const { autoRenamePlugins = true, componentExts = [], e18e: enableE18e = true, gitignore: enableGitignore = true, ignores: userIgnores = [], imports: enableImports = true, jsdoc: enableJsdoc = true, node: enableNode = true, pnpm: enableCatalogs = false, regexp: enableRegexp = true, svelte: enableSvelte = has_svelte(), tailwindcss: enableTailwindcss = has_tailwindcss(), type: appType = "app", typescript: enableTypeScript = has_typescript(), unicorn: enableUnicorn = true } = options;
1744
1820
  const is_in_editor = is_in_editor_env();
1745
1821
  const stylistic_options = options.stylistic === false ? false : typeof options.stylistic === "object" ? options.stylistic : {};
1746
1822
  const configs = [];
@@ -1780,6 +1856,7 @@ function defineConfig(options = {}, ...userConfigs) {
1780
1856
  typescript: !!enableTypeScript
1781
1857
  }));
1782
1858
  if (enableTailwindcss) configs.push(tailwindcss({
1859
+ ...typeof enableTailwindcss === "object" ? enableTailwindcss : {},
1783
1860
  overrides: get_overrides(options, "tailwindcss"),
1784
1861
  stylistic: stylistic_options
1785
1862
  }));
@@ -1879,4 +1956,4 @@ const PRESET_FULL_OFF = {
1879
1956
  //#region src/index.ts
1880
1957
  var src_default = defineConfig;
1881
1958
  //#endregion
1882
- export { GLOB_ALL_SRC, GLOB_CSS, GLOB_EXCLUDE, GLOB_HTML, GLOB_JS, GLOB_JSON, GLOB_JSON5, GLOB_JSONC, GLOB_LESS, GLOB_MARKDOWN, GLOB_MARKDOWN_CODE, GLOB_MARKDOWN_IN_MARKDOWN, GLOB_POSTCSS, GLOB_SCSS, GLOB_SRC, GLOB_SRC_EXT, GLOB_STYLE, GLOB_SVELTE, GLOB_SVG, GLOB_TESTS, GLOB_TOML, GLOB_TS, GLOB_XML, GLOB_YAML, PRESET_FULL_OFF, PRESET_FULL_ON, StylisticConfigDefaults, combine, comments, src_default as default, default_plugin_renaming, defineConfig, disables, e18e, ensure_packages, get_overrides, ignores, imports, interop_default, is_package_in_scope, javascript, jsdoc, jsonc, markdown, morgan, node, parser_plain, perfectionist, pnpm, regexp, rename_plugin_in_configs, rename_rules, resolve_sub_options, sort_package_json, sort_ts_config, stylistic, svelte, tailwindcss, test, to_array, toml, typescript, unicorn, yaml };
1959
+ export { GLOB_ALL_SRC, GLOB_CSS, GLOB_EXCLUDE, GLOB_HTML, GLOB_JS, GLOB_JSON, GLOB_JSON5, GLOB_JSONC, GLOB_LESS, GLOB_MARKDOWN, GLOB_MARKDOWN_CODE, GLOB_MARKDOWN_IN_MARKDOWN, GLOB_POSTCSS, GLOB_SCSS, GLOB_SRC, GLOB_SRC_EXT, GLOB_STYLE, GLOB_SVELTE, GLOB_SVG, GLOB_TESTS, GLOB_TOML, GLOB_TS, GLOB_XML, GLOB_YAML, PRESET_FULL_OFF, PRESET_FULL_ON, StylisticConfigDefaults, combine, comments, src_default as default, default_plugin_renaming, defineConfig, disables, e18e, ensure_packages, expand_cwd_globs, get_overrides, ignores, imports, interop_default, is_package_in_scope, javascript, jsdoc, jsonc, markdown, morgan, node, parser_plain, perfectionist, pnpm, regexp, rename_plugin_in_configs, rename_rules, resolve_cwd_list, resolve_sub_options, sort_package_json, sort_ts_config, stylistic, svelte, tailwindcss, test, to_array, toml, typescript, unicorn, yaml };
@@ -205,7 +205,7 @@ var require_eslint_visitor_keys$1 = /* @__PURE__ */ __commonJSMin(((exports) =>
205
205
  exports.unionWith = unionWith;
206
206
  }));
207
207
  //#endregion
208
- //#region node_modules/.bun/@eslint-community+eslint-utils@4.9.1+a386b63b4286b9c6/node_modules/@eslint-community/eslint-utils/index.js
208
+ //#region node_modules/.bun/@eslint-community+eslint-utils@4.9.1+1dc07548d78c5cf2/node_modules/@eslint-community/eslint-utils/index.js
209
209
  var require_eslint_utils$2 = /* @__PURE__ */ __commonJSMin(((exports) => {
210
210
  Object.defineProperty(exports, "__esModule", { value: true });
211
211
  var eslintVisitorKeys = require_eslint_visitor_keys$1();
@@ -1944,7 +1944,7 @@ var require_eslint_utils$2 = /* @__PURE__ */ __commonJSMin(((exports) => {
1944
1944
  exports.isSemicolonToken = isSemicolonToken;
1945
1945
  }));
1946
1946
  //#endregion
1947
- //#region node_modules/.bun/@typescript-eslint+utils@8.59.1+046359a6efbb307b/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/astUtilities.js
1947
+ //#region node_modules/.bun/@typescript-eslint+utils@8.59.1+67e40c82a7a9cb66/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/astUtilities.js
1948
1948
  var require_astUtilities = /* @__PURE__ */ __commonJSMin(((exports) => {
1949
1949
  var __createBinding = exports && exports.__createBinding || (Object.create ? (function(o, m, k, k2) {
1950
1950
  if (k2 === void 0) k2 = k;
@@ -2056,7 +2056,7 @@ var require_astUtilities = /* @__PURE__ */ __commonJSMin(((exports) => {
2056
2056
  exports.isParenthesized = eslintUtils.isParenthesized;
2057
2057
  }));
2058
2058
  //#endregion
2059
- //#region node_modules/.bun/@typescript-eslint+utils@8.59.1+046359a6efbb307b/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/PatternMatcher.js
2059
+ //#region node_modules/.bun/@typescript-eslint+utils@8.59.1+67e40c82a7a9cb66/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/PatternMatcher.js
2060
2060
  var require_PatternMatcher = /* @__PURE__ */ __commonJSMin(((exports) => {
2061
2061
  var __createBinding = exports && exports.__createBinding || (Object.create ? (function(o, m, k, k2) {
2062
2062
  if (k2 === void 0) k2 = k;
@@ -2110,7 +2110,7 @@ var require_PatternMatcher = /* @__PURE__ */ __commonJSMin(((exports) => {
2110
2110
  exports.PatternMatcher = __importStar(require_eslint_utils$2()).PatternMatcher;
2111
2111
  }));
2112
2112
  //#endregion
2113
- //#region node_modules/.bun/@typescript-eslint+utils@8.59.1+046359a6efbb307b/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/predicates.js
2113
+ //#region node_modules/.bun/@typescript-eslint+utils@8.59.1+67e40c82a7a9cb66/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/predicates.js
2114
2114
  var require_predicates$1 = /* @__PURE__ */ __commonJSMin(((exports) => {
2115
2115
  var __createBinding = exports && exports.__createBinding || (Object.create ? (function(o, m, k, k2) {
2116
2116
  if (k2 === void 0) k2 = k;
@@ -2180,7 +2180,7 @@ var require_predicates$1 = /* @__PURE__ */ __commonJSMin(((exports) => {
2180
2180
  exports.isNotSemicolonToken = eslintUtils.isNotSemicolonToken;
2181
2181
  }));
2182
2182
  //#endregion
2183
- //#region node_modules/.bun/@typescript-eslint+utils@8.59.1+046359a6efbb307b/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/ReferenceTracker.js
2183
+ //#region node_modules/.bun/@typescript-eslint+utils@8.59.1+67e40c82a7a9cb66/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/ReferenceTracker.js
2184
2184
  var require_ReferenceTracker = /* @__PURE__ */ __commonJSMin(((exports) => {
2185
2185
  var __createBinding = exports && exports.__createBinding || (Object.create ? (function(o, m, k, k2) {
2186
2186
  if (k2 === void 0) k2 = k;
@@ -2238,7 +2238,7 @@ var require_ReferenceTracker = /* @__PURE__ */ __commonJSMin(((exports) => {
2238
2238
  exports.ReferenceTracker = eslintUtils.ReferenceTracker;
2239
2239
  }));
2240
2240
  //#endregion
2241
- //#region node_modules/.bun/@typescript-eslint+utils@8.59.1+046359a6efbb307b/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/scopeAnalysis.js
2241
+ //#region node_modules/.bun/@typescript-eslint+utils@8.59.1+67e40c82a7a9cb66/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/scopeAnalysis.js
2242
2242
  var require_scopeAnalysis = /* @__PURE__ */ __commonJSMin(((exports) => {
2243
2243
  var __createBinding = exports && exports.__createBinding || (Object.create ? (function(o, m, k, k2) {
2244
2244
  if (k2 === void 0) k2 = k;
@@ -2300,7 +2300,7 @@ var require_scopeAnalysis = /* @__PURE__ */ __commonJSMin(((exports) => {
2300
2300
  exports.getInnermostScope = eslintUtils.getInnermostScope;
2301
2301
  }));
2302
2302
  //#endregion
2303
- //#region node_modules/.bun/@typescript-eslint+utils@8.59.1+046359a6efbb307b/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/index.js
2303
+ //#region node_modules/.bun/@typescript-eslint+utils@8.59.1+67e40c82a7a9cb66/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/index.js
2304
2304
  var require_eslint_utils$1 = /* @__PURE__ */ __commonJSMin(((exports) => {
2305
2305
  var __createBinding = exports && exports.__createBinding || (Object.create ? (function(o, m, k, k2) {
2306
2306
  if (k2 === void 0) k2 = k;
@@ -2327,7 +2327,7 @@ var require_eslint_utils$1 = /* @__PURE__ */ __commonJSMin(((exports) => {
2327
2327
  __exportStar(require_scopeAnalysis(), exports);
2328
2328
  }));
2329
2329
  //#endregion
2330
- //#region node_modules/.bun/@typescript-eslint+utils@8.59.1+046359a6efbb307b/node_modules/@typescript-eslint/utils/dist/ast-utils/helpers.js
2330
+ //#region node_modules/.bun/@typescript-eslint+utils@8.59.1+67e40c82a7a9cb66/node_modules/@typescript-eslint/utils/dist/ast-utils/helpers.js
2331
2331
  var require_helpers = /* @__PURE__ */ __commonJSMin(((exports) => {
2332
2332
  Object.defineProperty(exports, "__esModule", { value: true });
2333
2333
  exports.isNotTokenOfTypeWithConditions = exports.isTokenOfTypeWithConditions = exports.isNodeOfTypeWithConditions = exports.isNodeOfTypes = exports.isNodeOfType = void 0;
@@ -2349,7 +2349,7 @@ var require_helpers = /* @__PURE__ */ __commonJSMin(((exports) => {
2349
2349
  exports.isNotTokenOfTypeWithConditions = isNotTokenOfTypeWithConditions;
2350
2350
  }));
2351
2351
  //#endregion
2352
- //#region node_modules/.bun/@typescript-eslint+utils@8.59.1+046359a6efbb307b/node_modules/@typescript-eslint/utils/dist/ast-utils/misc.js
2352
+ //#region node_modules/.bun/@typescript-eslint+utils@8.59.1+67e40c82a7a9cb66/node_modules/@typescript-eslint/utils/dist/ast-utils/misc.js
2353
2353
  var require_misc = /* @__PURE__ */ __commonJSMin(((exports) => {
2354
2354
  Object.defineProperty(exports, "__esModule", { value: true });
2355
2355
  exports.LINEBREAK_MATCHER = void 0;
@@ -2663,7 +2663,7 @@ var require_dist$3 = /* @__PURE__ */ __commonJSMin(((exports) => {
2663
2663
  __exportStar(require_ts_estree$1(), exports);
2664
2664
  }));
2665
2665
  //#endregion
2666
- //#region node_modules/.bun/@typescript-eslint+utils@8.59.1+046359a6efbb307b/node_modules/@typescript-eslint/utils/dist/ts-estree.js
2666
+ //#region node_modules/.bun/@typescript-eslint+utils@8.59.1+67e40c82a7a9cb66/node_modules/@typescript-eslint/utils/dist/ts-estree.js
2667
2667
  var require_ts_estree = /* @__PURE__ */ __commonJSMin(((exports) => {
2668
2668
  Object.defineProperty(exports, "__esModule", { value: true });
2669
2669
  exports.TSESTree = exports.AST_TOKEN_TYPES = exports.AST_NODE_TYPES = void 0;
@@ -2688,7 +2688,7 @@ var require_ts_estree = /* @__PURE__ */ __commonJSMin(((exports) => {
2688
2688
  });
2689
2689
  }));
2690
2690
  //#endregion
2691
- //#region node_modules/.bun/@typescript-eslint+utils@8.59.1+046359a6efbb307b/node_modules/@typescript-eslint/utils/dist/ast-utils/predicates.js
2691
+ //#region node_modules/.bun/@typescript-eslint+utils@8.59.1+67e40c82a7a9cb66/node_modules/@typescript-eslint/utils/dist/ast-utils/predicates.js
2692
2692
  var require_predicates = /* @__PURE__ */ __commonJSMin(((exports) => {
2693
2693
  Object.defineProperty(exports, "__esModule", { value: true });
2694
2694
  exports.isLoop = exports.isImportKeyword = exports.isTypeKeyword = exports.isAwaitKeyword = exports.isAwaitExpression = exports.isIdentifier = exports.isConstructor = exports.isClassOrTypeElement = exports.isTSConstructorType = exports.isTSFunctionType = exports.isFunctionOrFunctionType = exports.isFunctionType = exports.isFunction = exports.isVariableDeclarator = exports.isTypeAssertion = exports.isLogicalOrOperator = exports.isOptionalCallExpression = exports.isNotNonNullAssertionPunctuator = exports.isNonNullAssertionPunctuator = exports.isNotOptionalChainPunctuator = exports.isOptionalChainPunctuator = void 0;
@@ -2784,7 +2784,7 @@ var require_predicates = /* @__PURE__ */ __commonJSMin(((exports) => {
2784
2784
  ]);
2785
2785
  }));
2786
2786
  //#endregion
2787
- //#region node_modules/.bun/@typescript-eslint+utils@8.59.1+046359a6efbb307b/node_modules/@typescript-eslint/utils/dist/ast-utils/index.js
2787
+ //#region node_modules/.bun/@typescript-eslint+utils@8.59.1+67e40c82a7a9cb66/node_modules/@typescript-eslint/utils/dist/ast-utils/index.js
2788
2788
  var require_ast_utils = /* @__PURE__ */ __commonJSMin(((exports) => {
2789
2789
  var __createBinding = exports && exports.__createBinding || (Object.create ? (function(o, m, k, k2) {
2790
2790
  if (k2 === void 0) k2 = k;
@@ -2810,7 +2810,7 @@ var require_ast_utils = /* @__PURE__ */ __commonJSMin(((exports) => {
2810
2810
  __exportStar(require_predicates(), exports);
2811
2811
  }));
2812
2812
  //#endregion
2813
- //#region node_modules/.bun/@typescript-eslint+utils@8.59.1+046359a6efbb307b/node_modules/@typescript-eslint/utils/dist/eslint-utils/deepMerge.js
2813
+ //#region node_modules/.bun/@typescript-eslint+utils@8.59.1+67e40c82a7a9cb66/node_modules/@typescript-eslint/utils/dist/eslint-utils/deepMerge.js
2814
2814
  var require_deepMerge = /* @__PURE__ */ __commonJSMin(((exports) => {
2815
2815
  Object.defineProperty(exports, "__esModule", { value: true });
2816
2816
  exports.isObjectNotArray = isObjectNotArray;
@@ -2846,7 +2846,7 @@ var require_deepMerge = /* @__PURE__ */ __commonJSMin(((exports) => {
2846
2846
  }
2847
2847
  }));
2848
2848
  //#endregion
2849
- //#region node_modules/.bun/@typescript-eslint+utils@8.59.1+046359a6efbb307b/node_modules/@typescript-eslint/utils/dist/eslint-utils/applyDefault.js
2849
+ //#region node_modules/.bun/@typescript-eslint+utils@8.59.1+67e40c82a7a9cb66/node_modules/@typescript-eslint/utils/dist/eslint-utils/applyDefault.js
2850
2850
  var require_applyDefault = /* @__PURE__ */ __commonJSMin(((exports) => {
2851
2851
  Object.defineProperty(exports, "__esModule", { value: true });
2852
2852
  exports.applyDefault = applyDefault;
@@ -2872,7 +2872,7 @@ var require_applyDefault = /* @__PURE__ */ __commonJSMin(((exports) => {
2872
2872
  }
2873
2873
  }));
2874
2874
  //#endregion
2875
- //#region node_modules/.bun/@typescript-eslint+utils@8.59.1+046359a6efbb307b/node_modules/@typescript-eslint/utils/dist/eslint-utils/parserSeemsToBeTSESLint.js
2875
+ //#region node_modules/.bun/@typescript-eslint+utils@8.59.1+67e40c82a7a9cb66/node_modules/@typescript-eslint/utils/dist/eslint-utils/parserSeemsToBeTSESLint.js
2876
2876
  var require_parserSeemsToBeTSESLint = /* @__PURE__ */ __commonJSMin(((exports) => {
2877
2877
  Object.defineProperty(exports, "__esModule", { value: true });
2878
2878
  exports.parserSeemsToBeTSESLint = parserSeemsToBeTSESLint;
@@ -2881,7 +2881,7 @@ var require_parserSeemsToBeTSESLint = /* @__PURE__ */ __commonJSMin(((exports) =
2881
2881
  }
2882
2882
  }));
2883
2883
  //#endregion
2884
- //#region node_modules/.bun/@typescript-eslint+utils@8.59.1+046359a6efbb307b/node_modules/@typescript-eslint/utils/dist/eslint-utils/getParserServices.js
2884
+ //#region node_modules/.bun/@typescript-eslint+utils@8.59.1+67e40c82a7a9cb66/node_modules/@typescript-eslint/utils/dist/eslint-utils/getParserServices.js
2885
2885
  var require_getParserServices = /* @__PURE__ */ __commonJSMin(((exports) => {
2886
2886
  Object.defineProperty(exports, "__esModule", { value: true });
2887
2887
  exports.getParserServices = getParserServices;
@@ -2904,12 +2904,12 @@ var require_getParserServices = /* @__PURE__ */ __commonJSMin(((exports) => {
2904
2904
  }
2905
2905
  }));
2906
2906
  //#endregion
2907
- //#region node_modules/.bun/@typescript-eslint+utils@8.59.1+046359a6efbb307b/node_modules/@typescript-eslint/utils/dist/eslint-utils/InferTypesFromRule.js
2907
+ //#region node_modules/.bun/@typescript-eslint+utils@8.59.1+67e40c82a7a9cb66/node_modules/@typescript-eslint/utils/dist/eslint-utils/InferTypesFromRule.js
2908
2908
  var require_InferTypesFromRule = /* @__PURE__ */ __commonJSMin(((exports) => {
2909
2909
  Object.defineProperty(exports, "__esModule", { value: true });
2910
2910
  }));
2911
2911
  //#endregion
2912
- //#region node_modules/.bun/@typescript-eslint+utils@8.59.1+046359a6efbb307b/node_modules/@typescript-eslint/utils/dist/eslint-utils/nullThrows.js
2912
+ //#region node_modules/.bun/@typescript-eslint+utils@8.59.1+67e40c82a7a9cb66/node_modules/@typescript-eslint/utils/dist/eslint-utils/nullThrows.js
2913
2913
  var require_nullThrows = /* @__PURE__ */ __commonJSMin(((exports) => {
2914
2914
  Object.defineProperty(exports, "__esModule", { value: true });
2915
2915
  exports.NullThrowsReasons = void 0;
@@ -2931,7 +2931,7 @@ var require_nullThrows = /* @__PURE__ */ __commonJSMin(((exports) => {
2931
2931
  }
2932
2932
  }));
2933
2933
  //#endregion
2934
- //#region node_modules/.bun/@typescript-eslint+utils@8.59.1+046359a6efbb307b/node_modules/@typescript-eslint/utils/dist/eslint-utils/RuleCreator.js
2934
+ //#region node_modules/.bun/@typescript-eslint+utils@8.59.1+67e40c82a7a9cb66/node_modules/@typescript-eslint/utils/dist/eslint-utils/RuleCreator.js
2935
2935
  var require_RuleCreator = /* @__PURE__ */ __commonJSMin(((exports) => {
2936
2936
  Object.defineProperty(exports, "__esModule", { value: true });
2937
2937
  exports.RuleCreator = RuleCreator;
@@ -2979,7 +2979,7 @@ var require_RuleCreator = /* @__PURE__ */ __commonJSMin(((exports) => {
2979
2979
  };
2980
2980
  }));
2981
2981
  //#endregion
2982
- //#region node_modules/.bun/@typescript-eslint+utils@8.59.1+046359a6efbb307b/node_modules/@typescript-eslint/utils/dist/eslint-utils/index.js
2982
+ //#region node_modules/.bun/@typescript-eslint+utils@8.59.1+67e40c82a7a9cb66/node_modules/@typescript-eslint/utils/dist/eslint-utils/index.js
2983
2983
  var require_eslint_utils = /* @__PURE__ */ __commonJSMin(((exports) => {
2984
2984
  var __createBinding = exports && exports.__createBinding || (Object.create ? (function(o, m, k, k2) {
2985
2985
  if (k2 === void 0) k2 = k;
@@ -3007,7 +3007,7 @@ var require_eslint_utils = /* @__PURE__ */ __commonJSMin(((exports) => {
3007
3007
  __exportStar(require_RuleCreator(), exports);
3008
3008
  }));
3009
3009
  //#endregion
3010
- //#region node_modules/.bun/@typescript-eslint+utils@8.59.1+046359a6efbb307b/node_modules/@typescript-eslint/utils/dist/json-schema.js
3010
+ //#region node_modules/.bun/@typescript-eslint+utils@8.59.1+67e40c82a7a9cb66/node_modules/@typescript-eslint/utils/dist/json-schema.js
3011
3011
  var require_json_schema = /* @__PURE__ */ __commonJSMin(((exports) => {
3012
3012
  /**
3013
3013
  * This is a fork of https://github.com/DefinitelyTyped/DefinitelyTyped/blob/13f63c2eb8d7479caf01ab8d72f9e3683368a8f5/types/json-schema/index.d.ts
@@ -3018,17 +3018,17 @@ var require_json_schema = /* @__PURE__ */ __commonJSMin(((exports) => {
3018
3018
  Object.defineProperty(exports, "__esModule", { value: true });
3019
3019
  }));
3020
3020
  //#endregion
3021
- //#region node_modules/.bun/@typescript-eslint+utils@8.59.1+046359a6efbb307b/node_modules/@typescript-eslint/utils/dist/ts-eslint/AST.js
3021
+ //#region node_modules/.bun/@typescript-eslint+utils@8.59.1+67e40c82a7a9cb66/node_modules/@typescript-eslint/utils/dist/ts-eslint/AST.js
3022
3022
  var require_AST = /* @__PURE__ */ __commonJSMin(((exports) => {
3023
3023
  Object.defineProperty(exports, "__esModule", { value: true });
3024
3024
  }));
3025
3025
  //#endregion
3026
- //#region node_modules/.bun/@typescript-eslint+utils@8.59.1+046359a6efbb307b/node_modules/@typescript-eslint/utils/dist/ts-eslint/Config.js
3026
+ //#region node_modules/.bun/@typescript-eslint+utils@8.59.1+67e40c82a7a9cb66/node_modules/@typescript-eslint/utils/dist/ts-eslint/Config.js
3027
3027
  var require_Config = /* @__PURE__ */ __commonJSMin(((exports) => {
3028
3028
  Object.defineProperty(exports, "__esModule", { value: true });
3029
3029
  }));
3030
3030
  //#endregion
3031
- //#region node_modules/.bun/@typescript-eslint+utils@8.59.1+046359a6efbb307b/node_modules/@typescript-eslint/utils/dist/ts-eslint/eslint/FlatESLint.js
3031
+ //#region node_modules/.bun/@typescript-eslint+utils@8.59.1+67e40c82a7a9cb66/node_modules/@typescript-eslint/utils/dist/ts-eslint/eslint/FlatESLint.js
3032
3032
  var require_FlatESLint = /* @__PURE__ */ __commonJSMin(((exports) => {
3033
3033
  var __importDefault = exports && exports.__importDefault || function(mod) {
3034
3034
  return mod && mod.__esModule ? mod : { "default": mod };
@@ -3047,7 +3047,7 @@ var require_FlatESLint = /* @__PURE__ */ __commonJSMin(((exports) => {
3047
3047
  exports.FlatESLint = FlatESLint;
3048
3048
  }));
3049
3049
  //#endregion
3050
- //#region node_modules/.bun/@typescript-eslint+utils@8.59.1+046359a6efbb307b/node_modules/@typescript-eslint/utils/dist/ts-eslint/eslint/LegacyESLint.js
3050
+ //#region node_modules/.bun/@typescript-eslint+utils@8.59.1+67e40c82a7a9cb66/node_modules/@typescript-eslint/utils/dist/ts-eslint/eslint/LegacyESLint.js
3051
3051
  var require_LegacyESLint = /* @__PURE__ */ __commonJSMin(((exports) => {
3052
3052
  var __importDefault = exports && exports.__importDefault || function(mod) {
3053
3053
  return mod && mod.__esModule ? mod : { "default": mod };
@@ -3082,7 +3082,7 @@ var require_LegacyESLint = /* @__PURE__ */ __commonJSMin(((exports) => {
3082
3082
  exports.LegacyESLint = LegacyESLint;
3083
3083
  }));
3084
3084
  //#endregion
3085
- //#region node_modules/.bun/@typescript-eslint+utils@8.59.1+046359a6efbb307b/node_modules/@typescript-eslint/utils/dist/ts-eslint/ESLint.js
3085
+ //#region node_modules/.bun/@typescript-eslint+utils@8.59.1+67e40c82a7a9cb66/node_modules/@typescript-eslint/utils/dist/ts-eslint/ESLint.js
3086
3086
  var require_ESLint = /* @__PURE__ */ __commonJSMin(((exports) => {
3087
3087
  Object.defineProperty(exports, "__esModule", { value: true });
3088
3088
  exports.LegacyESLint = exports.ESLint = exports.FlatESLint = void 0;
@@ -3112,7 +3112,7 @@ var require_ESLint = /* @__PURE__ */ __commonJSMin(((exports) => {
3112
3112
  });
3113
3113
  }));
3114
3114
  //#endregion
3115
- //#region node_modules/.bun/@typescript-eslint+utils@8.59.1+046359a6efbb307b/node_modules/@typescript-eslint/utils/dist/ts-eslint/Linter.js
3115
+ //#region node_modules/.bun/@typescript-eslint+utils@8.59.1+67e40c82a7a9cb66/node_modules/@typescript-eslint/utils/dist/ts-eslint/Linter.js
3116
3116
  var require_Linter = /* @__PURE__ */ __commonJSMin(((exports) => {
3117
3117
  Object.defineProperty(exports, "__esModule", { value: true });
3118
3118
  exports.Linter = void 0;
@@ -3126,27 +3126,27 @@ var require_Linter = /* @__PURE__ */ __commonJSMin(((exports) => {
3126
3126
  exports.Linter = Linter;
3127
3127
  }));
3128
3128
  //#endregion
3129
- //#region node_modules/.bun/@typescript-eslint+utils@8.59.1+046359a6efbb307b/node_modules/@typescript-eslint/utils/dist/ts-eslint/Parser.js
3129
+ //#region node_modules/.bun/@typescript-eslint+utils@8.59.1+67e40c82a7a9cb66/node_modules/@typescript-eslint/utils/dist/ts-eslint/Parser.js
3130
3130
  var require_Parser = /* @__PURE__ */ __commonJSMin(((exports) => {
3131
3131
  Object.defineProperty(exports, "__esModule", { value: true });
3132
3132
  }));
3133
3133
  //#endregion
3134
- //#region node_modules/.bun/@typescript-eslint+utils@8.59.1+046359a6efbb307b/node_modules/@typescript-eslint/utils/dist/ts-eslint/ParserOptions.js
3134
+ //#region node_modules/.bun/@typescript-eslint+utils@8.59.1+67e40c82a7a9cb66/node_modules/@typescript-eslint/utils/dist/ts-eslint/ParserOptions.js
3135
3135
  var require_ParserOptions = /* @__PURE__ */ __commonJSMin(((exports) => {
3136
3136
  Object.defineProperty(exports, "__esModule", { value: true });
3137
3137
  }));
3138
3138
  //#endregion
3139
- //#region node_modules/.bun/@typescript-eslint+utils@8.59.1+046359a6efbb307b/node_modules/@typescript-eslint/utils/dist/ts-eslint/Processor.js
3139
+ //#region node_modules/.bun/@typescript-eslint+utils@8.59.1+67e40c82a7a9cb66/node_modules/@typescript-eslint/utils/dist/ts-eslint/Processor.js
3140
3140
  var require_Processor = /* @__PURE__ */ __commonJSMin(((exports) => {
3141
3141
  Object.defineProperty(exports, "__esModule", { value: true });
3142
3142
  }));
3143
3143
  //#endregion
3144
- //#region node_modules/.bun/@typescript-eslint+utils@8.59.1+046359a6efbb307b/node_modules/@typescript-eslint/utils/dist/ts-eslint/Rule.js
3144
+ //#region node_modules/.bun/@typescript-eslint+utils@8.59.1+67e40c82a7a9cb66/node_modules/@typescript-eslint/utils/dist/ts-eslint/Rule.js
3145
3145
  var require_Rule = /* @__PURE__ */ __commonJSMin(((exports) => {
3146
3146
  Object.defineProperty(exports, "__esModule", { value: true });
3147
3147
  }));
3148
3148
  //#endregion
3149
- //#region node_modules/.bun/@typescript-eslint+utils@8.59.1+046359a6efbb307b/node_modules/@typescript-eslint/utils/dist/ts-eslint/RuleTester.js
3149
+ //#region node_modules/.bun/@typescript-eslint+utils@8.59.1+67e40c82a7a9cb66/node_modules/@typescript-eslint/utils/dist/ts-eslint/RuleTester.js
3150
3150
  var require_RuleTester = /* @__PURE__ */ __commonJSMin(((exports) => {
3151
3151
  Object.defineProperty(exports, "__esModule", { value: true });
3152
3152
  exports.RuleTester = void 0;
@@ -11048,7 +11048,7 @@ var require_dist$1 = /* @__PURE__ */ __commonJSMin(((exports) => {
11048
11048
  __exportStar(require_variable(), exports);
11049
11049
  }));
11050
11050
  //#endregion
11051
- //#region node_modules/.bun/@typescript-eslint+utils@8.59.1+046359a6efbb307b/node_modules/@typescript-eslint/utils/dist/ts-eslint/Scope.js
11051
+ //#region node_modules/.bun/@typescript-eslint+utils@8.59.1+67e40c82a7a9cb66/node_modules/@typescript-eslint/utils/dist/ts-eslint/Scope.js
11052
11052
  var require_Scope = /* @__PURE__ */ __commonJSMin(((exports) => {
11053
11053
  var __createBinding = exports && exports.__createBinding || (Object.create ? (function(o, m, k, k2) {
11054
11054
  if (k2 === void 0) k2 = k;
@@ -11101,7 +11101,7 @@ var require_Scope = /* @__PURE__ */ __commonJSMin(((exports) => {
11101
11101
  })(Scope || (exports.Scope = Scope = {}));
11102
11102
  }));
11103
11103
  //#endregion
11104
- //#region node_modules/.bun/@typescript-eslint+utils@8.59.1+046359a6efbb307b/node_modules/@typescript-eslint/utils/dist/ts-eslint/SourceCode.js
11104
+ //#region node_modules/.bun/@typescript-eslint+utils@8.59.1+67e40c82a7a9cb66/node_modules/@typescript-eslint/utils/dist/ts-eslint/SourceCode.js
11105
11105
  var require_SourceCode = /* @__PURE__ */ __commonJSMin(((exports) => {
11106
11106
  Object.defineProperty(exports, "__esModule", { value: true });
11107
11107
  exports.SourceCode = void 0;
@@ -11110,7 +11110,7 @@ var require_SourceCode = /* @__PURE__ */ __commonJSMin(((exports) => {
11110
11110
  exports.SourceCode = SourceCode;
11111
11111
  }));
11112
11112
  //#endregion
11113
- //#region node_modules/.bun/@typescript-eslint+utils@8.59.1+046359a6efbb307b/node_modules/@typescript-eslint/utils/dist/ts-eslint/index.js
11113
+ //#region node_modules/.bun/@typescript-eslint+utils@8.59.1+67e40c82a7a9cb66/node_modules/@typescript-eslint/utils/dist/ts-eslint/index.js
11114
11114
  var require_ts_eslint = /* @__PURE__ */ __commonJSMin(((exports) => {
11115
11115
  var __createBinding = exports && exports.__createBinding || (Object.create ? (function(o, m, k, k2) {
11116
11116
  if (k2 === void 0) k2 = k;
@@ -11143,7 +11143,7 @@ var require_ts_eslint = /* @__PURE__ */ __commonJSMin(((exports) => {
11143
11143
  __exportStar(require_SourceCode(), exports);
11144
11144
  }));
11145
11145
  //#endregion
11146
- //#region node_modules/.bun/@typescript-eslint+utils@8.59.1+046359a6efbb307b/node_modules/@typescript-eslint/utils/dist/ts-utils/isArray.js
11146
+ //#region node_modules/.bun/@typescript-eslint+utils@8.59.1+67e40c82a7a9cb66/node_modules/@typescript-eslint/utils/dist/ts-utils/isArray.js
11147
11147
  var require_isArray = /* @__PURE__ */ __commonJSMin(((exports) => {
11148
11148
  Object.defineProperty(exports, "__esModule", { value: true });
11149
11149
  exports.isArray = isArray;
@@ -11152,12 +11152,12 @@ var require_isArray = /* @__PURE__ */ __commonJSMin(((exports) => {
11152
11152
  }
11153
11153
  }));
11154
11154
  //#endregion
11155
- //#region node_modules/.bun/@typescript-eslint+utils@8.59.1+046359a6efbb307b/node_modules/@typescript-eslint/utils/dist/ts-utils/NoInfer.js
11155
+ //#region node_modules/.bun/@typescript-eslint+utils@8.59.1+67e40c82a7a9cb66/node_modules/@typescript-eslint/utils/dist/ts-utils/NoInfer.js
11156
11156
  var require_NoInfer = /* @__PURE__ */ __commonJSMin(((exports) => {
11157
11157
  Object.defineProperty(exports, "__esModule", { value: true });
11158
11158
  }));
11159
11159
  //#endregion
11160
- //#region node_modules/.bun/@typescript-eslint+utils@8.59.1+046359a6efbb307b/node_modules/@typescript-eslint/utils/dist/ts-utils/index.js
11160
+ //#region node_modules/.bun/@typescript-eslint+utils@8.59.1+67e40c82a7a9cb66/node_modules/@typescript-eslint/utils/dist/ts-utils/index.js
11161
11161
  var require_ts_utils = /* @__PURE__ */ __commonJSMin(((exports) => {
11162
11162
  var __createBinding = exports && exports.__createBinding || (Object.create ? (function(o, m, k, k2) {
11163
11163
  if (k2 === void 0) k2 = k;
@@ -11181,7 +11181,7 @@ var require_ts_utils = /* @__PURE__ */ __commonJSMin(((exports) => {
11181
11181
  __exportStar(require_NoInfer(), exports);
11182
11182
  }));
11183
11183
  //#endregion
11184
- //#region node_modules/.bun/eslint-plugin-erasable-syntax-only@0.4.1+95a4b2df260e29fa/node_modules/eslint-plugin-erasable-syntax-only/lib/utils.js
11184
+ //#region node_modules/.bun/eslint-plugin-erasable-syntax-only@0.4.1+fab88b9bae3ca7f9/node_modules/eslint-plugin-erasable-syntax-only/lib/utils.js
11185
11185
  var import_dist = (/* @__PURE__ */ __commonJSMin(((exports) => {
11186
11186
  var __createBinding = exports && exports.__createBinding || (Object.create ? (function(o, m, k, k2) {
11187
11187
  if (k2 === void 0) k2 = k;
@@ -11238,7 +11238,7 @@ var import_dist = (/* @__PURE__ */ __commonJSMin(((exports) => {
11238
11238
  })))();
11239
11239
  const createRule = import_dist.ESLintUtils.RuleCreator((name) => `https://github.com/JoshuaKGoldberg/eslint-plugin-erasable-syntax-only/blob/main/docs/rules/${name}.md`);
11240
11240
  //#endregion
11241
- //#region node_modules/.bun/eslint-plugin-erasable-syntax-only@0.4.1+95a4b2df260e29fa/node_modules/eslint-plugin-erasable-syntax-only/lib/rules/enums.js
11241
+ //#region node_modules/.bun/eslint-plugin-erasable-syntax-only@0.4.1+fab88b9bae3ca7f9/node_modules/eslint-plugin-erasable-syntax-only/lib/rules/enums.js
11242
11242
  const rule$3 = createRule({
11243
11243
  create(context) {
11244
11244
  return { TSEnumDeclaration(node) {
@@ -11296,7 +11296,7 @@ const rule$3 = createRule({
11296
11296
  name: "enums"
11297
11297
  });
11298
11298
  //#endregion
11299
- //#region node_modules/.bun/eslint-plugin-erasable-syntax-only@0.4.1+95a4b2df260e29fa/node_modules/eslint-plugin-erasable-syntax-only/lib/rules/import-aliases.js
11299
+ //#region node_modules/.bun/eslint-plugin-erasable-syntax-only@0.4.1+fab88b9bae3ca7f9/node_modules/eslint-plugin-erasable-syntax-only/lib/rules/import-aliases.js
11300
11300
  const rule$2 = createRule({
11301
11301
  create(context) {
11302
11302
  return { TSImportEqualsDeclaration(node) {
@@ -11358,7 +11358,7 @@ var CachedFactory = class {
11358
11358
  }
11359
11359
  };
11360
11360
  //#endregion
11361
- //#region node_modules/.bun/eslint-plugin-erasable-syntax-only@0.4.1+95a4b2df260e29fa/node_modules/eslint-plugin-erasable-syntax-only/lib/rules/namespaces.js
11361
+ //#region node_modules/.bun/eslint-plugin-erasable-syntax-only@0.4.1+fab88b9bae3ca7f9/node_modules/eslint-plugin-erasable-syntax-only/lib/rules/namespaces.js
11362
11362
  function skipExportParent(node) {
11363
11363
  return node.parent.type == import_dist.AST_NODE_TYPES.ExportNamedDeclaration ? node.parent : node;
11364
11364
  }
@@ -11366,7 +11366,7 @@ function skipModuleParent(node) {
11366
11366
  return node.parent.type === import_dist.AST_NODE_TYPES.TSModuleDeclaration ? node.parent : node;
11367
11367
  }
11368
11368
  //#endregion
11369
- //#region node_modules/.bun/eslint-plugin-erasable-syntax-only@0.4.1+95a4b2df260e29fa/node_modules/eslint-plugin-erasable-syntax-only/lib/rules/index.js
11369
+ //#region node_modules/.bun/eslint-plugin-erasable-syntax-only@0.4.1+fab88b9bae3ca7f9/node_modules/eslint-plugin-erasable-syntax-only/lib/rules/index.js
11370
11370
  const rules = {
11371
11371
  enums: rule$3,
11372
11372
  "import-aliases": rule$2,
@@ -11418,7 +11418,7 @@ const rules = {
11418
11418
  })
11419
11419
  };
11420
11420
  //#endregion
11421
- //#region node_modules/.bun/eslint-plugin-erasable-syntax-only@0.4.1+95a4b2df260e29fa/node_modules/eslint-plugin-erasable-syntax-only/lib/index.js
11421
+ //#region node_modules/.bun/eslint-plugin-erasable-syntax-only@0.4.1+fab88b9bae3ca7f9/node_modules/eslint-plugin-erasable-syntax-only/lib/index.js
11422
11422
  const { name, version } = Module.createRequire(import.meta.url)("../package.json");
11423
11423
  const plugin = {
11424
11424
  configs: { get recommended() {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ariel-salgado/eslint-config",
3
3
  "type": "module",
4
- "version": "1.0.1",
4
+ "version": "1.0.3",
5
5
  "description": "Eslint config for @ariel-salgado.",
6
6
  "author": "Ariel Salgado <ariel.salgado.acevedo@gmail.com> (https://github.com/ariel-salgado/)",
7
7
  "license": "MIT",
@@ -43,23 +43,23 @@
43
43
  },
44
44
  "dependencies": {
45
45
  "@antfu/install-pkg": "1.1.0",
46
- "@clack/prompts": "1.3.0",
47
- "@e18e/eslint-plugin": "0.4.1",
46
+ "@clack/prompts": "1.4.0",
47
+ "@e18e/eslint-plugin": "0.5.0",
48
48
  "@eslint-community/eslint-plugin-eslint-comments": "4.7.1",
49
49
  "@eslint/markdown": "8.0.1",
50
50
  "@stylistic/eslint-plugin": "5.10.0",
51
- "@typescript-eslint/eslint-plugin": "8.59.1",
52
- "@typescript-eslint/parser": "8.59.1",
53
- "@vitest/eslint-plugin": "1.6.16",
51
+ "@typescript-eslint/eslint-plugin": "8.59.3",
52
+ "@typescript-eslint/parser": "8.59.3",
53
+ "@vitest/eslint-plugin": "1.6.17",
54
54
  "eslint-config-flat-gitignore": "2.3.0",
55
55
  "eslint-flat-config-utils": "3.2.0",
56
56
  "eslint-merge-processors": "2.0.0",
57
57
  "eslint-plugin-ariel": "0.1.2",
58
- "eslint-plugin-de-morgan": "2.1.1",
58
+ "eslint-plugin-de-morgan": "2.1.2",
59
59
  "eslint-plugin-import-lite": "0.6.0",
60
60
  "eslint-plugin-jsdoc": "62.9.0",
61
61
  "eslint-plugin-jsonc": "3.1.2",
62
- "eslint-plugin-n": "17.24.0",
62
+ "eslint-plugin-n": "18.0.1",
63
63
  "eslint-plugin-no-only-tests": "3.4.0",
64
64
  "eslint-plugin-perfectionist": "5.9.0",
65
65
  "eslint-plugin-pnpm": "1.6.0",
@@ -76,21 +76,21 @@
76
76
  },
77
77
  "devDependencies": {
78
78
  "@arethetypeswrong/core": "0.18.2",
79
- "@types/node": "25.6.0",
80
- "@typescript/native-preview": "7.0.0-dev.20260502.1",
81
- "bumpp": "11.0.1",
82
- "eslint": "10.3.0",
79
+ "@types/node": "25.8.0",
80
+ "@typescript/native-preview": "7.0.0-dev.20260515.1",
81
+ "bumpp": "11.1.0",
82
+ "eslint": "10.4.0",
83
83
  "eslint-plugin-better-tailwindcss": "4.5.0",
84
84
  "eslint-plugin-erasable-syntax-only": "0.4.1",
85
85
  "eslint-plugin-svelte": "3.17.1",
86
86
  "eslint-typegen": "2.3.1",
87
- "lint-staged": "16.4.0",
88
- "publint": "0.3.18",
87
+ "lint-staged": "17.0.4",
88
+ "publint": "0.3.21",
89
89
  "simple-git-hooks": "2.13.1",
90
- "svelte": "5.55.5",
91
- "svelte-eslint-parser": "1.6.0",
92
- "tailwindcss": "4.2.4",
93
- "tsdown": "0.21.10",
90
+ "svelte": "5.55.7",
91
+ "svelte-eslint-parser": "1.6.1",
92
+ "tailwindcss": "4.3.0",
93
+ "tsdown": "0.22.0",
94
94
  "typescript": "6.0.3"
95
95
  },
96
96
  "simple-git-hooks": {