@rslint/core 0.3.4 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/rslint.cjs +5 -2
- package/dist/browser.js +2 -2
- package/dist/cli.d.ts.map +1 -1
- package/dist/cli.js +11 -5
- package/dist/configs/javascript.js +13 -13
- package/dist/configs/typescript.js +16 -16
- package/dist/node.js +1 -1
- package/dist/service.js +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/dist/utils/args.d.ts.map +1 -1
- package/dist/utils/args.js +27 -7
- package/dist/utils/config-discovery.d.ts +16 -0
- package/dist/utils/config-discovery.d.ts.map +1 -1
- package/dist/utils/config-discovery.js +130 -0
- package/package.json +13 -9
package/bin/rslint.cjs
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
const startTime = Date.now();
|
|
3
3
|
const path = require('node:path');
|
|
4
|
+
const { pathToFileURL } = require('node:url');
|
|
4
5
|
const os = require('node:os');
|
|
5
6
|
const fs = require('node:fs');
|
|
6
7
|
|
|
@@ -20,12 +21,14 @@ function getBinPath() {
|
|
|
20
21
|
|
|
21
22
|
async function main() {
|
|
22
23
|
const binPath = getBinPath();
|
|
23
|
-
const { run } = await import(
|
|
24
|
+
const { run } = await import(
|
|
25
|
+
pathToFileURL(path.resolve(__dirname, '../dist/cli.js')).href
|
|
26
|
+
);
|
|
24
27
|
const exitCode = await run(binPath, process.argv.slice(2), startTime);
|
|
25
28
|
process.exit(exitCode);
|
|
26
29
|
}
|
|
27
30
|
|
|
28
|
-
main().catch(err => {
|
|
31
|
+
main().catch((err) => {
|
|
29
32
|
process.stderr.write(`rslint: ${err}\n`);
|
|
30
33
|
process.exit(1);
|
|
31
34
|
});
|
package/dist/browser.js
CHANGED
|
@@ -26,10 +26,10 @@ export class BrowserRslintService {
|
|
|
26
26
|
async ensureWorker(wasmUrl) {
|
|
27
27
|
if (!this.worker) {
|
|
28
28
|
this.worker = new Worker(this.workerUrl, { name: 'rslint-worker.js' });
|
|
29
|
-
this.worker.onmessage = event => {
|
|
29
|
+
this.worker.onmessage = (event) => {
|
|
30
30
|
this.handlePacket(event.data);
|
|
31
31
|
};
|
|
32
|
-
this.worker.onerror = error => {
|
|
32
|
+
this.worker.onerror = (error) => {
|
|
33
33
|
console.error('Worker error:', error);
|
|
34
34
|
// Reject all pending messages
|
|
35
35
|
for (const [id, pending] of this.pendingMessages) {
|
package/dist/cli.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cli.d.ts","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"cli.d.ts","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":"AA8GA,wBAAsB,GAAG,CACvB,OAAO,EAAE,MAAM,EACf,IAAI,EAAE,MAAM,EAAE,EACd,SAAS,EAAE,MAAM,GAChB,OAAO,CAAC,MAAM,CAAC,CAkDjB"}
|
package/dist/cli.js
CHANGED
|
@@ -3,7 +3,7 @@ import fs from 'node:fs';
|
|
|
3
3
|
import { execFileSync } from 'node:child_process';
|
|
4
4
|
import { loadConfigFile, normalizeConfig } from './config-loader.js';
|
|
5
5
|
import { parseArgs, classifyArgs, isJSConfigFile } from './utils/args.js';
|
|
6
|
-
import { discoverConfigs } from './utils/config-discovery.js';
|
|
6
|
+
import { discoverConfigs, filterConfigsByParentIgnores, } from './utils/config-discovery.js';
|
|
7
7
|
/**
|
|
8
8
|
* Pass-through execution of the Go binary with stdio inherited.
|
|
9
9
|
*/
|
|
@@ -66,7 +66,12 @@ async function runWithJSConfigs(binPath, configs, goArgs, cwd) {
|
|
|
66
66
|
if (configEntries.length === 0) {
|
|
67
67
|
return execBinary(binPath, goArgs);
|
|
68
68
|
}
|
|
69
|
-
|
|
69
|
+
// Filter out nested configs whose directory is covered by a parent config's
|
|
70
|
+
// global ignores. This aligns with ESLint v10 behavior: when walking the
|
|
71
|
+
// directory tree, global ignores prevent entering directories, so nested
|
|
72
|
+
// configs in ignored directories are never discovered.
|
|
73
|
+
const filteredEntries = filterConfigsByParentIgnores(configEntries);
|
|
74
|
+
const payload = JSON.stringify({ configs: filteredEntries });
|
|
70
75
|
try {
|
|
71
76
|
execFileSync(binPath, ['--config-stdin', ...goArgs], {
|
|
72
77
|
input: payload,
|
|
@@ -97,9 +102,10 @@ export async function run(binPath, argv, startTime) {
|
|
|
97
102
|
return 1;
|
|
98
103
|
}
|
|
99
104
|
}
|
|
100
|
-
// Build Go args:
|
|
101
|
-
//
|
|
102
|
-
|
|
105
|
+
// Build Go args: start-time flag BEFORE positional args, because Go's
|
|
106
|
+
// flag.Parse stops at the first positional argument. If --start-time comes
|
|
107
|
+
// after positionals, it gets treated as a file path.
|
|
108
|
+
const goArgs = [`--start-time=${startTime}`, ...args.rest];
|
|
103
109
|
// Classify positional arguments into files and directories
|
|
104
110
|
const { files, dirs } = classifyArgs(args.positionals, cwd);
|
|
105
111
|
// Discover JS/TS configs
|
|
@@ -8,34 +8,34 @@ const recommended = {
|
|
|
8
8
|
// 'no-delete-var': 'error', // not implemented
|
|
9
9
|
// 'no-dupe-class-members': 'error', // not implemented
|
|
10
10
|
// 'no-dupe-else-if': 'error', // not implemented
|
|
11
|
-
|
|
11
|
+
'no-empty-character-class': 'error',
|
|
12
12
|
// 'no-empty-static-block': 'error', // not implemented
|
|
13
|
-
|
|
13
|
+
'no-ex-assign': 'error',
|
|
14
14
|
// 'no-extra-boolean-cast': 'error', // not implemented
|
|
15
15
|
// 'no-fallthrough': 'error', // not implemented
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
16
|
+
'no-func-assign': 'error',
|
|
17
|
+
'no-global-assign': 'error',
|
|
18
|
+
'no-import-assign': 'error',
|
|
19
|
+
'no-invalid-regexp': 'error',
|
|
20
20
|
// 'no-irregular-whitespace': 'error', // not implemented
|
|
21
21
|
// 'no-misleading-character-class': 'error', // not implemented
|
|
22
22
|
// 'no-new-native-nonconstructor': 'error', // not implemented
|
|
23
23
|
// 'no-new-symbol': 'error', // not implemented (deprecated, use no-new-native-nonconstructor)
|
|
24
24
|
// 'no-nonoctal-decimal-escape': 'error', // not implemented
|
|
25
|
-
|
|
25
|
+
'no-obj-calls': 'error',
|
|
26
26
|
// 'no-octal': 'error', // not implemented
|
|
27
27
|
// 'no-prototype-builtins': 'error', // not implemented
|
|
28
28
|
// 'no-redeclare': 'error', // not implemented
|
|
29
29
|
// 'no-regex-spaces': 'error', // not implemented
|
|
30
|
-
|
|
31
|
-
|
|
30
|
+
'no-self-assign': 'error',
|
|
31
|
+
'no-setter-return': 'error',
|
|
32
32
|
// 'no-shadow-restricted-names': 'error', // not implemented
|
|
33
|
-
|
|
34
|
-
|
|
33
|
+
'no-this-before-super': 'error',
|
|
34
|
+
'no-undef': 'error',
|
|
35
35
|
// 'no-unexpected-multiline': 'error', // not implemented
|
|
36
36
|
// 'no-unreachable': 'error', // not implemented
|
|
37
37
|
// 'no-unsafe-finally': 'error', // not implemented
|
|
38
|
-
|
|
38
|
+
'no-unsafe-negation': 'error',
|
|
39
39
|
// 'no-unsafe-optional-chaining': 'error', // not implemented
|
|
40
40
|
// 'no-unused-labels': 'error', // not implemented
|
|
41
41
|
// 'no-unused-private-class-members': 'error', // not implemented
|
|
@@ -48,7 +48,7 @@ const recommended = {
|
|
|
48
48
|
// 'no-with': 'error', // not implemented
|
|
49
49
|
// 'preserve-caught-error': 'error', // not implemented
|
|
50
50
|
// 'require-yield': 'error', // not implemented
|
|
51
|
-
|
|
51
|
+
'use-isnan': 'error',
|
|
52
52
|
// 'valid-typeof': 'error', // not implemented
|
|
53
53
|
'for-direction': 'error',
|
|
54
54
|
'getter-return': 'error',
|
|
@@ -21,41 +21,41 @@ const recommended = {
|
|
|
21
21
|
'no-dupe-args': 'off',
|
|
22
22
|
// 'no-dupe-class-members': 'off', // not implemented
|
|
23
23
|
'no-dupe-keys': 'off',
|
|
24
|
-
|
|
25
|
-
|
|
24
|
+
'no-func-assign': 'off',
|
|
25
|
+
'no-import-assign': 'off',
|
|
26
26
|
// 'no-new-native-nonconstructor': 'off', // not implemented
|
|
27
27
|
// 'no-new-symbol': 'off', // not implemented (deprecated, use no-new-native-nonconstructor)
|
|
28
|
-
|
|
28
|
+
'no-obj-calls': 'off',
|
|
29
29
|
// 'no-redeclare': 'off', // not implemented
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
30
|
+
'no-setter-return': 'off',
|
|
31
|
+
'no-this-before-super': 'off',
|
|
32
|
+
'no-undef': 'off',
|
|
33
33
|
// 'no-unreachable': 'off', // not implemented
|
|
34
|
-
|
|
34
|
+
'no-unsafe-negation': 'off',
|
|
35
35
|
// 'no-with': 'off', // not implemented
|
|
36
36
|
// TS-beneficial rules enabled by eslint-recommended override
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
37
|
+
'no-var': 'error',
|
|
38
|
+
'prefer-const': 'error',
|
|
39
|
+
'prefer-rest-params': 'error',
|
|
40
40
|
// 'prefer-spread': 'error', // not implemented
|
|
41
41
|
// Remaining eslint:recommended rules (not turned off by TS)
|
|
42
42
|
// 'no-control-regex': 'error', // not implemented
|
|
43
43
|
// 'no-delete-var': 'error', // not implemented
|
|
44
44
|
// 'no-dupe-else-if': 'error', // not implemented
|
|
45
|
-
|
|
45
|
+
'no-empty-character-class': 'error',
|
|
46
46
|
// 'no-empty-static-block': 'error', // not implemented
|
|
47
|
-
|
|
47
|
+
'no-ex-assign': 'error',
|
|
48
48
|
// 'no-extra-boolean-cast': 'error', // not implemented
|
|
49
49
|
// 'no-fallthrough': 'error', // not implemented
|
|
50
|
-
|
|
51
|
-
|
|
50
|
+
'no-global-assign': 'error',
|
|
51
|
+
'no-invalid-regexp': 'error',
|
|
52
52
|
// 'no-irregular-whitespace': 'error', // not implemented
|
|
53
53
|
// 'no-misleading-character-class': 'error', // not implemented
|
|
54
54
|
// 'no-nonoctal-decimal-escape': 'error', // not implemented
|
|
55
55
|
// 'no-octal': 'error', // not implemented
|
|
56
56
|
// 'no-prototype-builtins': 'error', // not implemented
|
|
57
57
|
// 'no-regex-spaces': 'error', // not implemented
|
|
58
|
-
|
|
58
|
+
'no-self-assign': 'error',
|
|
59
59
|
// 'no-shadow-restricted-names': 'error', // not implemented
|
|
60
60
|
// 'no-unexpected-multiline': 'error', // not implemented
|
|
61
61
|
// 'no-unsafe-finally': 'error', // not implemented
|
|
@@ -69,7 +69,7 @@ const recommended = {
|
|
|
69
69
|
// 'no-useless-escape': 'error', // not implemented
|
|
70
70
|
// 'preserve-caught-error': 'error', // not implemented
|
|
71
71
|
// 'require-yield': 'error', // not implemented
|
|
72
|
-
|
|
72
|
+
'use-isnan': 'error',
|
|
73
73
|
// 'valid-typeof': 'error', // not implemented
|
|
74
74
|
'for-direction': 'error',
|
|
75
75
|
'no-async-promise-executor': 'error',
|
package/dist/node.js
CHANGED
package/dist/service.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":"7.0.0-dev.20250904.1","root":[[61,63],[66,78]],"fileNames":["lib.es5.d.ts","lib.es2015.d.ts","lib.es2016.d.ts","lib.es2017.d.ts","lib.es2018.d.ts","lib.es2019.d.ts","lib.es2020.d.ts","lib.es2021.d.ts","lib.es2022.d.ts","lib.webworker.d.ts","lib.es2015.core.d.ts","lib.es2015.collection.d.ts","lib.es2015.generator.d.ts","lib.es2015.iterable.d.ts","lib.es2015.promise.d.ts","lib.es2015.proxy.d.ts","lib.es2015.reflect.d.ts","lib.es2015.symbol.d.ts","lib.es2015.symbol.wellknown.d.ts","lib.es2016.array.include.d.ts","lib.es2016.intl.d.ts","lib.es2017.arraybuffer.d.ts","lib.es2017.date.d.ts","lib.es2017.object.d.ts","lib.es2017.sharedmemory.d.ts","lib.es2017.string.d.ts","lib.es2017.intl.d.ts","lib.es2017.typedarrays.d.ts","lib.es2018.asyncgenerator.d.ts","lib.es2018.asynciterable.d.ts","lib.es2018.intl.d.ts","lib.es2018.promise.d.ts","lib.es2018.regexp.d.ts","lib.es2019.array.d.ts","lib.es2019.object.d.ts","lib.es2019.string.d.ts","lib.es2019.symbol.d.ts","lib.es2019.intl.d.ts","lib.es2020.bigint.d.ts","lib.es2020.date.d.ts","lib.es2020.promise.d.ts","lib.es2020.sharedmemory.d.ts","lib.es2020.string.d.ts","lib.es2020.symbol.wellknown.d.ts","lib.es2020.intl.d.ts","lib.es2020.number.d.ts","lib.es2021.promise.d.ts","lib.es2021.string.d.ts","lib.es2021.weakref.d.ts","lib.es2021.intl.d.ts","lib.es2022.array.d.ts","lib.es2022.error.d.ts","lib.es2022.intl.d.ts","lib.es2022.object.d.ts","lib.es2022.string.d.ts","lib.es2022.regexp.d.ts","lib.esnext.disposable.d.ts","lib.esnext.float16.d.ts","lib.decorators.d.ts","lib.decorators.legacy.d.ts","../src/types.ts","../src/browser.ts","../src/utils/config-discovery.ts","../../../node_modules/.pnpm/jiti@2.6.1/node_modules/jiti/lib/types.d.ts","../../../node_modules/.pnpm/jiti@2.6.1/node_modules/jiti/lib/jiti.d.mts","../src/config-loader.ts","../src/utils/args.ts","../src/cli.ts","../src/define-config.ts","../src/node.ts","../src/service.ts","../src/configs/typescript.ts","../src/configs/javascript.ts","../src/configs/react.ts","../src/configs/import.ts","../src/configs/index.ts","../src/index.ts","../src/worker.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/.pnpm/buffer@6.0.3/node_modules/buffer/index.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/utility.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/header.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/readable.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/fetch.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/formdata.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/connector.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/client.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/errors.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/global-origin.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/pool-stats.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/pool.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/handlers.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/h2c-client.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/agent.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/mock-call-history.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/mock-agent.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/mock-client.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/mock-pool.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/mock-errors.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/retry-handler.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/retry-agent.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/api.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/cache-interceptor.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/interceptors.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/util.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/cookies.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/patch.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/websocket.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/eventsource.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/content-type.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/cache.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/index.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/globals.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/assert.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/assert/strict.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/async_hooks.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/buffer.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/child_process.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/cluster.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/console.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/constants.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/crypto.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/dgram.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/dns.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/dns/promises.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/domain.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/dom-events.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/events.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/fs.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/fs/promises.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/http.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/http2.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/https.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/inspector.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/module.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/net.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/os.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/path.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/process.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/punycode.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/querystring.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/readline.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/readline/promises.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/repl.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/sea.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/sqlite.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/stream.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/stream/promises.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/stream/web.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/string_decoder.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/test.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/timers.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/timers/promises.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/tls.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/trace_events.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/tty.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/url.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/util.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/v8.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/vm.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/wasi.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/worker_threads.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/zlib.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/index.d.ts","../../../node_modules/.pnpm/@types+react@19.1.9/node_modules/@types/react/global.d.ts","../../../node_modules/.pnpm/csstype@3.1.3/node_modules/csstype/index.d.ts","../../../node_modules/.pnpm/@types+react@19.1.9/node_modules/@types/react/index.d.ts"],"fileInfos":[{"version":"58b8dc4da260b41be8de1be2d876a1e6","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"24660545bd04f64286946ca58f9461fc","impliedNodeFormat":99},{"version":"006807822602069b83b496ad7e25e6ca","impliedNodeFormat":99},{"version":"4d9b146f28d6be2c3542b08b595febfe","impliedNodeFormat":99},{"version":"455ea9b314b4d327c535fb65bd954959","impliedNodeFormat":99},{"version":"c079fccc6ede08aa4f8ca702c3ba328e","impliedNodeFormat":99},{"version":"c349310240662575d10e855fb8cff0b9","impliedNodeFormat":99},{"version":"4ccba7d48aa8b5a54b56f9a48b076496","impliedNodeFormat":99},{"version":"92ef9b8df31d3a08512928a3066d8fa9","impliedNodeFormat":99},{"version":"73d4a4cb6c1409e4d75f0d308704b7f8","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"751a26973b059fed1d0ecc4b02a0aa43","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"be28f9bf546cb528601aaa04d7034fc8","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"3bc4e9a53ee556f3dc15abc1179278dd","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"2c63fa39e2cdd849306f21679fdac8b1","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"e1a9f024b1a69565194afcdb4b57ef1d","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"9fa1fffd5b2b67d8d8c33e295cb91a9f","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"4d8ab857b044eaa0661bd0aebebc038b","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"748df784ad0b12a20c5f5ce011418c3c","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"62abf648b001aa05585b5d0e71cd96d7","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"d901677b09e934598f913e2c05f827b0","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"ab7a40e3c7854c54c6f329376cf3f9b6","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"00ece0060faf280c5873f3cfe62d7d19","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"cf5a418e3fbdb27a784c5fc37be6797a","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"a73a6f599fda19ffee929d4386bab691","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"c043f4221acd9d8470d6bc087cd455ba","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"fbae9331a88fa1a8a336fe90253cbbc7","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"d4124f01474cfa693099d8be321979e4","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"e3e80cf65ee855fd4a5813ea19701f93","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"cd8650f4caf8166f19fd93217907da21","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"c39604220a24016cb90fe3094a6b4b56","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"2652c52b1c748791681ca0a4d751b09b","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"9540816cf2a3418a9254e43f1055e767","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"f9616d828e6afe0f8146e9ac3b33fa59","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"4f00a6f131995907fe9b0faf4dbabc18","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"47f85dd672027fda65064cbfee6b2d71","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"8adddec358b9acfa3d65fd4d2013ac84","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"8170fe225cf3b8b74c06f1fe8913924f","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"c9dbd0e301b2bd8fc6d5dcb75dc61ec4","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"3a64170086e7ddb980f07478f95f7c49","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"a804e69080dc542b8de4079fdde7ebef","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"783d6e41b4c30cc983d131b2f413044a","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"11b11ae792c173835b03d064a0853462","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"4cdc220ae24b55dcc69d30252c36ce9d","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"36fd93eca51199e9dfee76d7dbbf2719","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"7fc46463d5c6871146e3aac105f21a2d","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"21ed16210f33f30f1e2df6dd5bc584d9","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"b2d1055a33f1612669aed4b1c06ab438","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"6779bb060769fcc1b3063d7d6dacca83","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"5de91aed11cf11bbf79c2323600f2a28","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"2843d76b135201d1ba75d56f45238760","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"98afe632d712655c371691bc02dd15f8","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"e33a3b1212a9f61f3d7229e068573681","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"79a0167d7b98b654dbb97ec62ff1fca9","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"045bc80bcb8ba75cf56e2c9af4636a06","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"5c327c3a580ef35777e7f2b97b6b23e4","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"9965653fed0cc40aff9f23e6250e449a","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"6ff13a1f4d84ba0dfb73813250150f0a","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"5562f148cf1dda444e2284f3a3d39eeb","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"45c91c5f844a9ee1df11d1b71c484b0e","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"39e009135c77d60baa790854b51d2195","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"7d376e054f2b7d36aa0f0917c4214bb6","signature":"31a6509be21121ef7ed470a1f1b9d7ca","impliedNodeFormat":99},{"version":"cb992ecb4223d49eea754f36b58479c8","signature":"6ed78de782fc6139dcd62c85e4b65b70","impliedNodeFormat":99},{"version":"b27fadbcbd601641f23942ea87918d91","signature":"465c45243759ede09bad18d33df87ab5","impliedNodeFormat":99},{"version":"2cb26cf8b77feeaaaea39a5ded665113","impliedNodeFormat":99},{"version":"d12f934b02b80930fae26957ad4738b6","impliedNodeFormat":99},{"version":"a0bfc511a737d8bd0bc86399299ce465","signature":"73d7ca12ec64e36b7d852bb682e49b6c","impliedNodeFormat":99},{"version":"128656bd2598019454ae1a3bef8f2536","signature":"6293fbe336c340a8402cc469e50ded06","impliedNodeFormat":99},{"version":"9edcb63c638b2b9f4692425ba81e9ced","signature":"407e5c2bc8aeeb90d36e1066c32c207a","impliedNodeFormat":99},{"version":"27f095ab5b3c7f289f4fcb5fed34e8ba","signature":"f59be21f04f1a5f66cee16a39c6a99a9","impliedNodeFormat":99},{"version":"9ae8874a8d5279fb8753aa278b0cb00e","signature":"394df24b68eef539282144022f1f8183","impliedNodeFormat":99},{"version":"f5e1e8cf6c6a99d0ea73d509e5f3b350","signature":"01d98ec74c3936c42c8a4e436060fa97","impliedNodeFormat":99},{"version":"c59b8d02cf50776ab41e4695866dd2c8","signature":"e9f70542c87d6dcbb341b6209f1e3ca1","impliedNodeFormat":99},{"version":"0549a1ea939157cfd6e3306cb8fd4928","signature":"68a183df97d577eacc25a14ad92e60fb","impliedNodeFormat":99},{"version":"e3ce4544365f52f37af0f2756a37fefc","signature":"ef59ad486c11d739f17e1e1fa52d41fb","impliedNodeFormat":99},{"version":"f19aa610319291e92f1e009825f85399","signature":"3bc9387c52d40323151c43848934a5d8","impliedNodeFormat":99},{"version":"36fd701114b613dbdfef49228ab19aa8","signature":"e20190f8541ae0b7321d36b9f7e79fae","impliedNodeFormat":99},{"version":"a2124d5bd7dd6f5248cb660ae17eb36f","signature":"629f6aafff87d0ebb477f8c50e199a68","impliedNodeFormat":99},{"version":"2b21b89eb43988d7b83a9a961c1a5a70","signature":"abe7d9981d6018efb6b2b794f40a1607","impliedNodeFormat":99},{"version":"2514e9a2749c0fc18d2f478e9e1e641e","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"f652e5dd19482f44f9387406574bdd0a","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"ecdcb80604ca736ed275e4330a3acd50","affectsGlobalScope":true,"impliedNodeFormat":1},"8e91e7228778516936913f666d057c19","49133c0dfbc32ab95668c3443dea49e5","85c2cf74d24d4069fac4686501a2d7e3","83f416ded62bb31c035580c3b5a8d334","88a476e1b17b513ec388c48b5303e010","60c67c092ae78d2e7858ca0a88f54659","9508c917bd7e458745e222a82dd24ef0","51ce48cc1d85b4b7ee13109b40c46114","a86a959071e855285f470f2e08ec2dde","fc4e8bd86f6f1ae68685f44445eff81d","705645fe223430c696f47b708d592ca8","28d57c837c94adb42add03d499793cab","8c01a9bbae8449be21b3e018d59a74ac","992c18b758ab50d188485348a313e8fd","f7b846e3f5d3a1678a27a534636e598d","16f740a706028e841b09fb8b1aa8faaf","bf260ba87c1928b60b6117029e99d559","07badf3415d0d61eb51e65c2c1d249ab","0aecf0586f33c1d2ea2e05c358afca16","c2364011a80b6a9e3cc0e77895bad577","f018ff75d70f3ff81fd5023da7d4ad2e","72524fc4b9ab31a174530a065dff4b92","ccfd1f92db55955e84384676feef9ffb","69c7bb9c3befe9ae37eed0e6a6310fee","31341fcd52f68f78c0c340480c086c98","2f4f6e701620e6564bb5c438f964578e","064761901f4de9ed88371873855b170d","b438b08b2f0ed94a95a75c8990d9021b","771a77c9bec862600c95f7a563871b5e","c665284a9cb3dd886b14663cd04742e0","4b7366a70853ae20881a6b4b893d93d3","0468c0ccd0ec7770b76481b165564d62","188234d616a4f50ed9b14c8f84a39f33","4c116bcf0a47ea8fbf4072f380925fa7","3070cd51aa46e2f00275e034f80f6b59","865aea1c3209e31b076cb6fe780e769e","63eec4dc4789376da114ec591bd56923","b744265d8ad12b7d4d5c5dc35d18d44e","eff32168b8348b822afeed9cbf61afa7","26d101efae9b618449dd3da6aebd45d4",{"version":"568750d32ee42158f0ac66c5672ed609","affectsGlobalScope":true,"impliedNodeFormat":1},"910ef6148943e1ad967fc9f4d0ef5ca0","7deced3ef46e082f97d49bb71622526a","f81aa09811fa65ac6f354ab0018d3c38",{"version":"cfc105b6759d0b72e9ac9a0abe059527","affectsGlobalScope":true,"impliedNodeFormat":1},"4106e18ac4fb5b98fba76cdff9204262","1c1f3f0469723ebc30f86bfe21521c8d",{"version":"a3a2391a0ca69d8577a52d3884d90530","affectsGlobalScope":true,"impliedNodeFormat":1},"b2b472cd0bf0f8d5f022e00ca1c401f4",{"version":"afed1ada3f247602f1f29e5762a10e0a","affectsGlobalScope":true,"impliedNodeFormat":1},"bd1865e459f8177364554d1f3176f5ed","1c66af6e8e63eae9cce90083d361d33f","e36efb6c9794e0b9f8e23392ecccd577","fbe31979333ec391d8b59e8f42236e8e","6f97553fd1690f568365155d4c51a3b5",{"version":"cb0b77b9a8e6edb694cd6c637486ffef","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"9edcdd7198740984c99907c129978973","affectsGlobalScope":true,"impliedNodeFormat":1},"d717441a3debece5417ad2e73aed07cc","a5dbfd17f706283f910baa96366eb920","4be5f10797f9ebb28f7721cfd8e8da34","912f20b1d68b38b9acf57e0849ec5469","629beb9ea955f1997cf64adf439c6133","32683d58e587fd4c25b8bc30682f6241",{"version":"8e6dc5ac3fcff4495b0625c591514b1e","affectsGlobalScope":true,"impliedNodeFormat":1},"9ea7cd0d0018e0421207b0970b559b8f","873f0ec733a52118af83f3a1239dfd7f","bf912705027b3eabad67f9d8ce7d89be",{"version":"c9036cfa0a4d2d7f1ae99178866fdb70","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"bc34984f238f2130864bd1049109f77b","affectsGlobalScope":true,"impliedNodeFormat":1},"6b26581aa2587701d570206a0db8c9ee","88a29e2aac8082c0910733950159e1ca","609d3ac6ba921e6e83c5da182c204fb8","ce949e2c34044d515bf85beb4192d138","a1238e436cba0b0db07f1555ef0df5fa","99a1d15196a239e65bf993ce6e128427","8dee16e0f918e98afc0fec4f8a15e189","3efc335bc8a8f6887d58767e1662717a","c8206d568b54e5ea06131963eecd576a","141101b35aa85ab5ae3d1836f602d9c2",{"version":"2ed70491374f27b7d4ff5db624057a07","affectsGlobalScope":true,"impliedNodeFormat":1},"743c944bc937ca1c8bf2b1a8ba09970d","8f029b5de1a7b5a20352d323c965cd81",{"version":"51c771bc7fc6bbfbaffba6c393b8fc14","affectsGlobalScope":true,"impliedNodeFormat":1},"4bc8f13c472858fb74f77388c0c5d885","36f02bde868b36543678fc59bf849ea7","c72d2516d1e8910caca33c4dff75fcd4","f0231f36cb7117fbe9271ff19ef0f5f4",{"version":"9d3c373f38f202a3a5cf984fa41309ee","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"a4f60f1f5d6d26c39233e18e7e4c40e2","affectsGlobalScope":true,"impliedNodeFormat":1},"ae6587532652a398ed932c2658ac3d4e","8c173387961bce1166d3e05b129fb108","010116401a82e1f466c580307f045f71",{"version":"3a4d7c89c2f2f9af5b2ea4b28ed492fc","affectsGlobalScope":true,"impliedNodeFormat":1},"422542e3616e997a247dfae35b486617","92ac071eabd0a4c11d987698355e5dfe",{"version":"755636ad6f32b63f262ec9940496a366","affectsGlobalScope":true,"impliedNodeFormat":1},"fdca13c9e1b0225fe2ea7411fc134684","fb08c88c0d1f2cb7075a104a660c7933"],"fileIdsList":[[81,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175],[81,123,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175],[81,123,124,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175],[123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175],[81,123,124,125,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175],[81,123,124,125,126,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175],[81,123,124,125,126,127,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175],[81,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175],[81,123,124,125,126,127,128,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175],[81,123,124,125,126,127,128,129,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175],[81,123,124,125,126,127,128,129,130,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175],[81,123,124,125,126,127,128,129,130,131,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175],[81,123,124,125,126,127,128,129,130,131,132,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175],[81,123,124,125,126,127,128,129,130,131,132,133,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175],[81,123,124,125,126,127,128,129,130,131,132,133,134,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175],[81,123,124,125,126,127,128,129,130,131,132,133,134,135,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175],[81,123,124,125,126,127,128,129,130,131,132,133,134,135,136,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175],[81,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175],[81,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175],[81,121,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175],[81,121,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175],[81,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175],[81,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175],[79,80,81,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175],[81,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175],[81,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175],[81,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175],[81,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175],[81,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175],[81,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175],[81,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175],[81,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175],[81,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175],[81,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175],[81,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175],[81,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175],[81,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175],[81,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175],[81,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175],[81,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175],[81,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175],[81,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,162,163,164,165,166,167,168,169,170,171,172,173,174,175],[81,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,163,164,165,166,167,168,169,170,171,172,173,174,175],[81,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,164,165,166,167,168,169,170,171,172,173,174,175],[81,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,165,166,167,168,169,170,171,172,173,174,175],[81,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,166,167,168,169,170,171,172,173,174,175],[81,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,167,168,169,170,171,172,173,174,175],[81,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,168,169,170,171,172,173,174,175],[81,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,169,170,171,172,173,174,175],[81,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,170,171,172,173,174,175],[81,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,171,172,173,174,175],[81,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,172,173,174,175],[81,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,173,174,175],[81,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175],[81,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,175],[81,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174],[81,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,177,178],[64,81,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175],[81,91,95,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175],[81,91,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175],[81,86,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175],[81,88,91,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175],[81,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176],[81,86,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176],[81,83,84,85,87,90,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175],[81,91,99,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175],[81,84,89,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175],[81,91,115,116,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175],[81,84,87,91,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176],[81,83,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175],[81,86,87,88,89,90,91,92,93,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,116,117,118,119,120,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175],[81,91,108,111,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175],[81,91,99,100,101,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175],[81,89,91,100,102,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175],[81,90,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175],[81,84,86,91,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175],[81,91,95,100,102,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175],[81,95,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175],[81,89,91,94,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175],[81,84,88,91,99,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175],[81,91,108,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175],[81,86,91,115,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176],[61,81,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175],[63,66,67,81,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175],[63,65,81,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175],[69,81,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175],[69,72,73,74,75,81,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175],[61,69,70,71,76,81,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175]],"options":{"allowJs":false,"allowSyntheticDefaultImports":true,"allowImportingTsExtensions":true,"composite":true,"emitDeclarationOnly":false,"emitDecoratorMetadata":false,"declaration":true,"declarationMap":true,"esModuleInterop":true,"experimentalDecorators":false,"importHelpers":false,"module":199,"noImplicitReturns":true,"noEmitOnError":true,"noImplicitOverride":true,"outDir":"./","removeComments":false,"rewriteRelativeImportExtensions":true,"rootDir":"../src","skipLibCheck":true,"strict":true,"skipDefaultLibCheck":false,"sourceMap":false,"target":9,"tsBuildInfoFile":"./tsconfig.build.tsbuildinfo","verbatimModuleSyntax":false},"referencedMap":[[123,1],[124,2],[125,3],[81,4],[126,5],[127,6],[128,7],[79,8],[129,9],[130,10],[131,11],[132,12],[133,13],[134,14],[135,15],[137,8],[136,16],[138,17],[139,18],[140,19],[122,20],[80,8],[141,21],[142,22],[143,23],[176,24],[144,25],[145,26],[146,27],[147,28],[148,29],[149,30],[150,31],[151,32],[152,33],[153,34],[154,35],[155,36],[156,37],[157,38],[158,39],[160,40],[159,41],[161,42],[162,43],[163,44],[164,45],[165,46],[166,47],[167,48],[168,49],[169,50],[170,51],[171,52],[172,53],[173,54],[174,55],[175,56],[177,8],[179,57],[59,8],[60,8],[12,8],[11,8],[2,8],[13,8],[14,8],[15,8],[16,8],[17,8],[18,8],[19,8],[20,8],[3,8],[21,8],[22,8],[4,8],[23,8],[27,8],[24,8],[25,8],[26,8],[28,8],[29,8],[30,8],[5,8],[31,8],[32,8],[33,8],[34,8],[6,8],[38,8],[35,8],[36,8],[37,8],[39,8],[7,8],[40,8],[45,8],[46,8],[41,8],[42,8],[43,8],[44,8],[8,8],[50,8],[47,8],[48,8],[49,8],[51,8],[9,8],[52,8],[53,8],[54,8],[56,8],[55,8],[1,8],[57,8],[58,8],[10,8],[82,8],[178,8],[65,58],[64,8],[99,59],[110,60],[97,59],[111,8],[120,61],[89,62],[88,8],[119,63],[114,64],[118,62],[91,65],[107,66],[90,67],[117,68],[86,69],[87,64],[92,60],[93,8],[98,62],[96,60],[84,70],[121,71],[112,72],[102,73],[101,60],[103,74],[105,75],[100,76],[104,77],[115,63],[94,78],[95,79],[106,80],[85,8],[109,81],[108,60],[113,8],[83,8],[116,82],[62,83],[68,84],[66,85],[75,86],[76,87],[73,86],[74,86],[72,86],[69,8],[77,88],[70,83],[71,83],[61,8],[67,8],[63,8],[78,8]],"latestChangedDtsFile":"./worker.d.ts"}
|
|
1
|
+
{"version":"7.0.0-dev.20250904.1","root":[[61,62],68,[71,83]],"fileNames":["lib.es5.d.ts","lib.es2015.d.ts","lib.es2016.d.ts","lib.es2017.d.ts","lib.es2018.d.ts","lib.es2019.d.ts","lib.es2020.d.ts","lib.es2021.d.ts","lib.es2022.d.ts","lib.webworker.d.ts","lib.es2015.core.d.ts","lib.es2015.collection.d.ts","lib.es2015.generator.d.ts","lib.es2015.iterable.d.ts","lib.es2015.promise.d.ts","lib.es2015.proxy.d.ts","lib.es2015.reflect.d.ts","lib.es2015.symbol.d.ts","lib.es2015.symbol.wellknown.d.ts","lib.es2016.array.include.d.ts","lib.es2016.intl.d.ts","lib.es2017.arraybuffer.d.ts","lib.es2017.date.d.ts","lib.es2017.object.d.ts","lib.es2017.sharedmemory.d.ts","lib.es2017.string.d.ts","lib.es2017.intl.d.ts","lib.es2017.typedarrays.d.ts","lib.es2018.asyncgenerator.d.ts","lib.es2018.asynciterable.d.ts","lib.es2018.intl.d.ts","lib.es2018.promise.d.ts","lib.es2018.regexp.d.ts","lib.es2019.array.d.ts","lib.es2019.object.d.ts","lib.es2019.string.d.ts","lib.es2019.symbol.d.ts","lib.es2019.intl.d.ts","lib.es2020.bigint.d.ts","lib.es2020.date.d.ts","lib.es2020.promise.d.ts","lib.es2020.sharedmemory.d.ts","lib.es2020.string.d.ts","lib.es2020.symbol.wellknown.d.ts","lib.es2020.intl.d.ts","lib.es2020.number.d.ts","lib.es2021.promise.d.ts","lib.es2021.string.d.ts","lib.es2021.weakref.d.ts","lib.es2021.intl.d.ts","lib.es2022.array.d.ts","lib.es2022.error.d.ts","lib.es2022.intl.d.ts","lib.es2022.object.d.ts","lib.es2022.string.d.ts","lib.es2022.regexp.d.ts","lib.esnext.disposable.d.ts","lib.esnext.float16.d.ts","lib.decorators.d.ts","lib.decorators.legacy.d.ts","../src/types.ts","../src/browser.ts","../../../node_modules/.pnpm/@types+picomatch@4.0.2/node_modules/@types/picomatch/lib/constants.d.ts","../../../node_modules/.pnpm/@types+picomatch@4.0.2/node_modules/@types/picomatch/lib/parse.d.ts","../../../node_modules/.pnpm/@types+picomatch@4.0.2/node_modules/@types/picomatch/lib/scan.d.ts","../../../node_modules/.pnpm/@types+picomatch@4.0.2/node_modules/@types/picomatch/lib/picomatch.d.ts","../../../node_modules/.pnpm/@types+picomatch@4.0.2/node_modules/@types/picomatch/index.d.ts","../src/utils/config-discovery.ts","../../../node_modules/.pnpm/jiti@2.6.1/node_modules/jiti/lib/types.d.ts","../../../node_modules/.pnpm/jiti@2.6.1/node_modules/jiti/lib/jiti.d.mts","../src/config-loader.ts","../src/utils/args.ts","../src/cli.ts","../src/define-config.ts","../src/node.ts","../src/service.ts","../src/configs/typescript.ts","../src/configs/javascript.ts","../src/configs/react.ts","../src/configs/import.ts","../src/configs/index.ts","../src/index.ts","../src/worker.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/.pnpm/buffer@6.0.3/node_modules/buffer/index.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/utility.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/header.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/readable.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/fetch.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/formdata.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/connector.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/client.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/errors.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/global-origin.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/pool-stats.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/pool.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/handlers.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/h2c-client.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/agent.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/mock-call-history.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/mock-agent.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/mock-client.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/mock-pool.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/mock-errors.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/retry-handler.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/retry-agent.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/api.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/cache-interceptor.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/interceptors.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/util.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/cookies.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/patch.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/websocket.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/eventsource.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/content-type.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/cache.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/index.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/globals.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/assert.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/assert/strict.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/async_hooks.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/buffer.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/child_process.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/cluster.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/console.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/constants.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/crypto.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/dgram.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/dns.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/dns/promises.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/domain.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/dom-events.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/events.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/fs.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/fs/promises.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/http.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/http2.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/https.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/inspector.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/module.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/net.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/os.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/path.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/process.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/punycode.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/querystring.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/readline.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/readline/promises.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/repl.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/sea.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/sqlite.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/stream.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/stream/promises.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/stream/web.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/string_decoder.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/test.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/timers.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/timers/promises.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/tls.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/trace_events.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/tty.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/url.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/util.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/v8.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/vm.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/wasi.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/worker_threads.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/zlib.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/index.d.ts","../../../node_modules/.pnpm/@types+react@19.1.9/node_modules/@types/react/global.d.ts","../../../node_modules/.pnpm/csstype@3.1.3/node_modules/csstype/index.d.ts","../../../node_modules/.pnpm/@types+react@19.1.9/node_modules/@types/react/index.d.ts"],"fileInfos":[{"version":"58b8dc4da260b41be8de1be2d876a1e6","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"24660545bd04f64286946ca58f9461fc","impliedNodeFormat":99},{"version":"006807822602069b83b496ad7e25e6ca","impliedNodeFormat":99},{"version":"4d9b146f28d6be2c3542b08b595febfe","impliedNodeFormat":99},{"version":"455ea9b314b4d327c535fb65bd954959","impliedNodeFormat":99},{"version":"c079fccc6ede08aa4f8ca702c3ba328e","impliedNodeFormat":99},{"version":"c349310240662575d10e855fb8cff0b9","impliedNodeFormat":99},{"version":"4ccba7d48aa8b5a54b56f9a48b076496","impliedNodeFormat":99},{"version":"92ef9b8df31d3a08512928a3066d8fa9","impliedNodeFormat":99},{"version":"73d4a4cb6c1409e4d75f0d308704b7f8","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"751a26973b059fed1d0ecc4b02a0aa43","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"be28f9bf546cb528601aaa04d7034fc8","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"3bc4e9a53ee556f3dc15abc1179278dd","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"2c63fa39e2cdd849306f21679fdac8b1","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"e1a9f024b1a69565194afcdb4b57ef1d","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"9fa1fffd5b2b67d8d8c33e295cb91a9f","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"4d8ab857b044eaa0661bd0aebebc038b","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"748df784ad0b12a20c5f5ce011418c3c","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"62abf648b001aa05585b5d0e71cd96d7","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"d901677b09e934598f913e2c05f827b0","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"ab7a40e3c7854c54c6f329376cf3f9b6","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"00ece0060faf280c5873f3cfe62d7d19","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"cf5a418e3fbdb27a784c5fc37be6797a","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"a73a6f599fda19ffee929d4386bab691","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"c043f4221acd9d8470d6bc087cd455ba","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"fbae9331a88fa1a8a336fe90253cbbc7","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"d4124f01474cfa693099d8be321979e4","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"e3e80cf65ee855fd4a5813ea19701f93","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"cd8650f4caf8166f19fd93217907da21","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"c39604220a24016cb90fe3094a6b4b56","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"2652c52b1c748791681ca0a4d751b09b","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"9540816cf2a3418a9254e43f1055e767","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"f9616d828e6afe0f8146e9ac3b33fa59","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"4f00a6f131995907fe9b0faf4dbabc18","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"47f85dd672027fda65064cbfee6b2d71","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"8adddec358b9acfa3d65fd4d2013ac84","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"8170fe225cf3b8b74c06f1fe8913924f","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"c9dbd0e301b2bd8fc6d5dcb75dc61ec4","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"3a64170086e7ddb980f07478f95f7c49","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"a804e69080dc542b8de4079fdde7ebef","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"783d6e41b4c30cc983d131b2f413044a","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"11b11ae792c173835b03d064a0853462","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"4cdc220ae24b55dcc69d30252c36ce9d","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"36fd93eca51199e9dfee76d7dbbf2719","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"7fc46463d5c6871146e3aac105f21a2d","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"21ed16210f33f30f1e2df6dd5bc584d9","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"b2d1055a33f1612669aed4b1c06ab438","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"6779bb060769fcc1b3063d7d6dacca83","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"5de91aed11cf11bbf79c2323600f2a28","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"2843d76b135201d1ba75d56f45238760","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"98afe632d712655c371691bc02dd15f8","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"e33a3b1212a9f61f3d7229e068573681","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"79a0167d7b98b654dbb97ec62ff1fca9","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"045bc80bcb8ba75cf56e2c9af4636a06","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"5c327c3a580ef35777e7f2b97b6b23e4","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"9965653fed0cc40aff9f23e6250e449a","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"6ff13a1f4d84ba0dfb73813250150f0a","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"5562f148cf1dda444e2284f3a3d39eeb","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"45c91c5f844a9ee1df11d1b71c484b0e","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"39e009135c77d60baa790854b51d2195","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"7d376e054f2b7d36aa0f0917c4214bb6","signature":"31a6509be21121ef7ed470a1f1b9d7ca","impliedNodeFormat":99},{"version":"5654217736ae7b8fb69e48951ce8b39b","signature":"6ed78de782fc6139dcd62c85e4b65b70","impliedNodeFormat":99},"9d7a1c0676307f82773dc48ee003c51f","75214e168dea49822a6ff7a19d095f3e","1ce064041f9c19243430811d939818cf","8503cb1a6f13fe32dd8c86ecb8addd4e","ba2d157ec950064af6837b0c9b5ca75b",{"version":"ceb6a9f7b34df1edb3663d6431e66d49","signature":"49021061675e918e35808195e3ccd868","impliedNodeFormat":99},{"version":"2cb26cf8b77feeaaaea39a5ded665113","impliedNodeFormat":99},{"version":"d12f934b02b80930fae26957ad4738b6","impliedNodeFormat":99},{"version":"a0bfc511a737d8bd0bc86399299ce465","signature":"73d7ca12ec64e36b7d852bb682e49b6c","impliedNodeFormat":99},{"version":"378917ee69ea84516f3d6d75e6de0621","signature":"6293fbe336c340a8402cc469e50ded06","impliedNodeFormat":99},{"version":"5dc4ffbe5fc202ea9ec82db2c67d8ca7","signature":"407e5c2bc8aeeb90d36e1066c32c207a","impliedNodeFormat":99},{"version":"27f095ab5b3c7f289f4fcb5fed34e8ba","signature":"f59be21f04f1a5f66cee16a39c6a99a9","impliedNodeFormat":99},{"version":"57c19965b7763d6a1fba3c7f876e4cc5","signature":"394df24b68eef539282144022f1f8183","impliedNodeFormat":99},{"version":"fc6cb0a4156737d4a3ee34d33279bf2a","signature":"01d98ec74c3936c42c8a4e436060fa97","impliedNodeFormat":99},{"version":"a3e8ac0e1ab89467d54394380f2be7cf","signature":"e9f70542c87d6dcbb341b6209f1e3ca1","impliedNodeFormat":99},{"version":"5c349ea4c610f2d822534a5118b7ec43","signature":"68a183df97d577eacc25a14ad92e60fb","impliedNodeFormat":99},{"version":"e3ce4544365f52f37af0f2756a37fefc","signature":"ef59ad486c11d739f17e1e1fa52d41fb","impliedNodeFormat":99},{"version":"f19aa610319291e92f1e009825f85399","signature":"3bc9387c52d40323151c43848934a5d8","impliedNodeFormat":99},{"version":"36fd701114b613dbdfef49228ab19aa8","signature":"e20190f8541ae0b7321d36b9f7e79fae","impliedNodeFormat":99},{"version":"a2124d5bd7dd6f5248cb660ae17eb36f","signature":"629f6aafff87d0ebb477f8c50e199a68","impliedNodeFormat":99},{"version":"2b21b89eb43988d7b83a9a961c1a5a70","signature":"abe7d9981d6018efb6b2b794f40a1607","impliedNodeFormat":99},{"version":"2514e9a2749c0fc18d2f478e9e1e641e","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"f652e5dd19482f44f9387406574bdd0a","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"ecdcb80604ca736ed275e4330a3acd50","affectsGlobalScope":true,"impliedNodeFormat":1},"8e91e7228778516936913f666d057c19","49133c0dfbc32ab95668c3443dea49e5","85c2cf74d24d4069fac4686501a2d7e3","83f416ded62bb31c035580c3b5a8d334","88a476e1b17b513ec388c48b5303e010","60c67c092ae78d2e7858ca0a88f54659","9508c917bd7e458745e222a82dd24ef0","51ce48cc1d85b4b7ee13109b40c46114","a86a959071e855285f470f2e08ec2dde","fc4e8bd86f6f1ae68685f44445eff81d","705645fe223430c696f47b708d592ca8","28d57c837c94adb42add03d499793cab","8c01a9bbae8449be21b3e018d59a74ac","992c18b758ab50d188485348a313e8fd","f7b846e3f5d3a1678a27a534636e598d","16f740a706028e841b09fb8b1aa8faaf","bf260ba87c1928b60b6117029e99d559","07badf3415d0d61eb51e65c2c1d249ab","0aecf0586f33c1d2ea2e05c358afca16","c2364011a80b6a9e3cc0e77895bad577","f018ff75d70f3ff81fd5023da7d4ad2e","72524fc4b9ab31a174530a065dff4b92","ccfd1f92db55955e84384676feef9ffb","69c7bb9c3befe9ae37eed0e6a6310fee","31341fcd52f68f78c0c340480c086c98","2f4f6e701620e6564bb5c438f964578e","064761901f4de9ed88371873855b170d","b438b08b2f0ed94a95a75c8990d9021b","771a77c9bec862600c95f7a563871b5e","c665284a9cb3dd886b14663cd04742e0","4b7366a70853ae20881a6b4b893d93d3","0468c0ccd0ec7770b76481b165564d62","188234d616a4f50ed9b14c8f84a39f33","4c116bcf0a47ea8fbf4072f380925fa7","3070cd51aa46e2f00275e034f80f6b59","865aea1c3209e31b076cb6fe780e769e","63eec4dc4789376da114ec591bd56923","b744265d8ad12b7d4d5c5dc35d18d44e","eff32168b8348b822afeed9cbf61afa7","26d101efae9b618449dd3da6aebd45d4",{"version":"568750d32ee42158f0ac66c5672ed609","affectsGlobalScope":true,"impliedNodeFormat":1},"910ef6148943e1ad967fc9f4d0ef5ca0","7deced3ef46e082f97d49bb71622526a","f81aa09811fa65ac6f354ab0018d3c38",{"version":"cfc105b6759d0b72e9ac9a0abe059527","affectsGlobalScope":true,"impliedNodeFormat":1},"4106e18ac4fb5b98fba76cdff9204262","1c1f3f0469723ebc30f86bfe21521c8d",{"version":"a3a2391a0ca69d8577a52d3884d90530","affectsGlobalScope":true,"impliedNodeFormat":1},"b2b472cd0bf0f8d5f022e00ca1c401f4",{"version":"afed1ada3f247602f1f29e5762a10e0a","affectsGlobalScope":true,"impliedNodeFormat":1},"bd1865e459f8177364554d1f3176f5ed","1c66af6e8e63eae9cce90083d361d33f","e36efb6c9794e0b9f8e23392ecccd577","fbe31979333ec391d8b59e8f42236e8e","6f97553fd1690f568365155d4c51a3b5",{"version":"cb0b77b9a8e6edb694cd6c637486ffef","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"9edcdd7198740984c99907c129978973","affectsGlobalScope":true,"impliedNodeFormat":1},"d717441a3debece5417ad2e73aed07cc","a5dbfd17f706283f910baa96366eb920","4be5f10797f9ebb28f7721cfd8e8da34","912f20b1d68b38b9acf57e0849ec5469","629beb9ea955f1997cf64adf439c6133","32683d58e587fd4c25b8bc30682f6241",{"version":"8e6dc5ac3fcff4495b0625c591514b1e","affectsGlobalScope":true,"impliedNodeFormat":1},"9ea7cd0d0018e0421207b0970b559b8f","873f0ec733a52118af83f3a1239dfd7f","bf912705027b3eabad67f9d8ce7d89be",{"version":"c9036cfa0a4d2d7f1ae99178866fdb70","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"bc34984f238f2130864bd1049109f77b","affectsGlobalScope":true,"impliedNodeFormat":1},"6b26581aa2587701d570206a0db8c9ee","88a29e2aac8082c0910733950159e1ca","609d3ac6ba921e6e83c5da182c204fb8","ce949e2c34044d515bf85beb4192d138","a1238e436cba0b0db07f1555ef0df5fa","99a1d15196a239e65bf993ce6e128427","8dee16e0f918e98afc0fec4f8a15e189","3efc335bc8a8f6887d58767e1662717a","c8206d568b54e5ea06131963eecd576a","141101b35aa85ab5ae3d1836f602d9c2",{"version":"2ed70491374f27b7d4ff5db624057a07","affectsGlobalScope":true,"impliedNodeFormat":1},"743c944bc937ca1c8bf2b1a8ba09970d","8f029b5de1a7b5a20352d323c965cd81",{"version":"51c771bc7fc6bbfbaffba6c393b8fc14","affectsGlobalScope":true,"impliedNodeFormat":1},"4bc8f13c472858fb74f77388c0c5d885","36f02bde868b36543678fc59bf849ea7","c72d2516d1e8910caca33c4dff75fcd4","f0231f36cb7117fbe9271ff19ef0f5f4",{"version":"9d3c373f38f202a3a5cf984fa41309ee","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"a4f60f1f5d6d26c39233e18e7e4c40e2","affectsGlobalScope":true,"impliedNodeFormat":1},"ae6587532652a398ed932c2658ac3d4e","8c173387961bce1166d3e05b129fb108","010116401a82e1f466c580307f045f71",{"version":"3a4d7c89c2f2f9af5b2ea4b28ed492fc","affectsGlobalScope":true,"impliedNodeFormat":1},"422542e3616e997a247dfae35b486617","92ac071eabd0a4c11d987698355e5dfe",{"version":"755636ad6f32b63f262ec9940496a366","affectsGlobalScope":true,"impliedNodeFormat":1},"fdca13c9e1b0225fe2ea7411fc134684","fb08c88c0d1f2cb7075a104a660c7933"],"fileIdsList":[[86,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[86,128,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[86,128,129,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[86,128,129,130,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[86,128,129,130,131,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[86,128,129,130,131,132,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[86,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[86,128,129,130,131,132,133,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[86,128,129,130,131,132,133,134,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[86,128,129,130,131,132,133,134,135,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[86,128,129,130,131,132,133,134,135,136,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[86,128,129,130,131,132,133,134,135,136,137,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[86,128,129,130,131,132,133,134,135,136,137,138,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[86,128,129,130,131,132,133,134,135,136,137,138,139,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[86,128,129,130,131,132,133,134,135,136,137,138,139,140,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[86,128,129,130,131,132,133,134,135,136,137,138,139,140,141,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[86,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[86,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[86,126,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[86,126,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[86,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[86,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[84,85,86,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[86,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[86,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[86,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[86,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[86,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[86,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[86,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[86,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[86,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[86,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[86,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[86,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[86,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[86,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[86,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[86,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[86,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[86,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[86,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,168,169,170,171,172,173,174,175,176,177,178,179,180],[86,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,169,170,171,172,173,174,175,176,177,178,179,180],[86,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,170,171,172,173,174,175,176,177,178,179,180],[86,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,171,172,173,174,175,176,177,178,179,180],[86,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,172,173,174,175,176,177,178,179,180],[86,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,173,174,175,176,177,178,179,180],[86,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180],[86,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,175,176,177,178,179,180],[86,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,176,177,178,179,180],[86,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,177,178,179,180],[86,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,178,179,180],[86,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,179,180],[86,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,180],[86,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179],[66,86,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[63,64,65,86,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[86,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,182,183],[69,86,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[86,96,100,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[86,96,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[86,91,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[86,93,96,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[86,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181],[86,91,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181],[86,88,89,90,92,95,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[86,96,104,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[86,89,94,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[86,96,120,121,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[86,89,92,96,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181],[86,88,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[86,91,92,93,94,95,96,97,98,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,121,122,123,124,125,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[86,96,113,116,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[86,96,104,105,106,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[86,94,96,105,107,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[86,95,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[86,89,91,96,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[86,96,100,105,107,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[86,100,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[86,94,96,99,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[86,89,93,96,104,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[86,96,113,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[86,91,96,120,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181],[61,86,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[68,71,72,86,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[68,70,86,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[74,86,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[74,77,78,79,80,86,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[61,74,75,76,81,86,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[67,86,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180]],"options":{"allowJs":false,"allowSyntheticDefaultImports":true,"allowImportingTsExtensions":true,"composite":true,"emitDeclarationOnly":false,"emitDecoratorMetadata":false,"declaration":true,"declarationMap":true,"esModuleInterop":true,"experimentalDecorators":false,"importHelpers":false,"module":199,"noImplicitReturns":true,"noEmitOnError":true,"noImplicitOverride":true,"outDir":"./","removeComments":false,"rewriteRelativeImportExtensions":true,"rootDir":"../src","skipLibCheck":true,"strict":true,"skipDefaultLibCheck":false,"sourceMap":false,"target":9,"tsBuildInfoFile":"./tsconfig.build.tsbuildinfo","verbatimModuleSyntax":false},"referencedMap":[[128,1],[129,2],[130,3],[86,4],[131,5],[132,6],[133,7],[84,8],[134,9],[135,10],[136,11],[137,12],[138,13],[139,14],[140,15],[142,8],[141,16],[143,17],[144,18],[145,19],[127,20],[85,8],[146,21],[147,22],[148,23],[181,24],[149,25],[150,26],[151,27],[152,28],[153,29],[154,30],[155,31],[156,32],[157,33],[158,34],[159,35],[160,36],[161,37],[162,38],[163,39],[165,40],[164,41],[166,42],[167,43],[168,44],[169,45],[170,46],[171,47],[172,48],[173,49],[174,50],[175,51],[176,52],[177,53],[178,54],[179,55],[180,56],[67,57],[63,8],[64,8],[66,58],[65,8],[182,8],[184,59],[59,8],[60,8],[12,8],[11,8],[2,8],[13,8],[14,8],[15,8],[16,8],[17,8],[18,8],[19,8],[20,8],[3,8],[21,8],[22,8],[4,8],[23,8],[27,8],[24,8],[25,8],[26,8],[28,8],[29,8],[30,8],[5,8],[31,8],[32,8],[33,8],[34,8],[6,8],[38,8],[35,8],[36,8],[37,8],[39,8],[7,8],[40,8],[45,8],[46,8],[41,8],[42,8],[43,8],[44,8],[8,8],[50,8],[47,8],[48,8],[49,8],[51,8],[9,8],[52,8],[53,8],[54,8],[56,8],[55,8],[1,8],[57,8],[58,8],[10,8],[87,8],[183,8],[70,60],[69,8],[104,61],[115,62],[102,61],[116,8],[125,63],[94,64],[93,8],[124,65],[119,66],[123,64],[96,67],[112,68],[95,69],[122,70],[91,71],[92,66],[97,62],[98,8],[103,64],[101,62],[89,72],[126,73],[117,74],[107,75],[106,62],[108,76],[110,77],[105,78],[109,79],[120,65],[99,80],[100,81],[111,82],[90,8],[114,83],[113,62],[118,8],[88,8],[121,84],[62,85],[73,86],[71,87],[80,88],[81,89],[78,88],[79,88],[77,88],[74,8],[82,90],[75,85],[76,85],[61,8],[72,8],[68,91],[83,8]],"latestChangedDtsFile":"./worker.d.ts"}
|
package/dist/utils/args.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"args.d.ts","sourceRoot":"","sources":["../../src/utils/args.ts"],"names":[],"mappings":"AAIA,wBAAgB,cAAc,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAExD;AAED,wBAAgB,SAAS,CAAC,IAAI,EAAE,MAAM,EAAE;;;;;
|
|
1
|
+
{"version":3,"file":"args.d.ts","sourceRoot":"","sources":["../../src/utils/args.ts"],"names":[],"mappings":"AAIA,wBAAgB,cAAc,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAExD;AAED,wBAAgB,SAAS,CAAC,IAAI,EAAE,MAAM,EAAE;;;;;EAmEvC;AAED;;;;GAIG;AACH,wBAAgB,YAAY,CAC1B,WAAW,EAAE,MAAM,EAAE,EACrB,GAAG,EAAE,MAAM,GACV;IAAE,KAAK,EAAE,MAAM,EAAE,CAAC;IAAC,IAAI,EAAE,MAAM,EAAE,CAAA;CAAE,CAkBrC"}
|
package/dist/utils/args.js
CHANGED
|
@@ -16,6 +16,7 @@ export function parseArgs(argv) {
|
|
|
16
16
|
// mistaken for positional file/dir arguments.
|
|
17
17
|
format: { type: 'string' },
|
|
18
18
|
'max-warnings': { type: 'string' },
|
|
19
|
+
rule: { type: 'string', multiple: true },
|
|
19
20
|
trace: { type: 'string' },
|
|
20
21
|
cpuprof: { type: 'string' },
|
|
21
22
|
// Consumed by the JS entry point; must not reach Go from user input.
|
|
@@ -24,26 +25,45 @@ export function parseArgs(argv) {
|
|
|
24
25
|
});
|
|
25
26
|
// Collect args that are not --config or --init for pass-through to Go.
|
|
26
27
|
// positionals collects only true file/dir arguments.
|
|
27
|
-
|
|
28
|
-
|
|
28
|
+
// Flags are emitted before positional args because Go's flag.Parse stops
|
|
29
|
+
// at the first positional argument. Without reordering, a flag like
|
|
30
|
+
// `--rule 'no-console: off'` placed after a file path would be silently
|
|
31
|
+
// ignored by Go.
|
|
32
|
+
//
|
|
33
|
+
// When "--" is present, positionals before it and after it are tracked
|
|
34
|
+
// separately so the rebuilt rest preserves their relative position to "--".
|
|
35
|
+
const flags = [];
|
|
36
|
+
const positionalsBefore = [];
|
|
37
|
+
const positionalsAfter = [];
|
|
38
|
+
let seenTerminator = false;
|
|
29
39
|
for (const token of tokens) {
|
|
30
40
|
if (token.kind === 'option') {
|
|
31
41
|
if (token.name === 'config' ||
|
|
32
42
|
token.name === 'init' ||
|
|
33
43
|
token.name === 'start-time')
|
|
34
44
|
continue;
|
|
35
|
-
|
|
45
|
+
flags.push(token.rawName);
|
|
36
46
|
if (token.value != null)
|
|
37
|
-
|
|
47
|
+
flags.push(token.value);
|
|
38
48
|
}
|
|
39
49
|
else if (token.kind === 'option-terminator') {
|
|
40
|
-
|
|
50
|
+
seenTerminator = true;
|
|
41
51
|
}
|
|
42
52
|
else if (token.kind === 'positional') {
|
|
43
|
-
|
|
44
|
-
|
|
53
|
+
if (seenTerminator) {
|
|
54
|
+
positionalsAfter.push(token.value);
|
|
55
|
+
}
|
|
56
|
+
else {
|
|
57
|
+
positionalsBefore.push(token.value);
|
|
58
|
+
}
|
|
45
59
|
}
|
|
46
60
|
}
|
|
61
|
+
// Rebuild rest: flags first, then positionals that appeared before "--",
|
|
62
|
+
// then "--" (if present), then positionals that appeared after "--".
|
|
63
|
+
const positionals = [...positionalsBefore, ...positionalsAfter];
|
|
64
|
+
const rest = seenTerminator
|
|
65
|
+
? [...flags, ...positionalsBefore, '--', ...positionalsAfter]
|
|
66
|
+
: [...flags, ...positionalsBefore];
|
|
47
67
|
return {
|
|
48
68
|
config: values.config ?? null,
|
|
49
69
|
init: values.init ?? false,
|
|
@@ -24,4 +24,20 @@ export declare function findJSConfigsInDir(startDir: string): string[];
|
|
|
24
24
|
* from the root.
|
|
25
25
|
*/
|
|
26
26
|
export declare function discoverConfigs(files: string[], dirs: string[], cwd: string, explicitConfig: string | null): Map<string, string>;
|
|
27
|
+
interface ConfigEntry {
|
|
28
|
+
configDirectory: string;
|
|
29
|
+
entries: unknown[];
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* Filter out nested configs whose directory is covered by an ancestor config's
|
|
33
|
+
* global ignores. Aligns with ESLint v10 behavior: when traversing directories,
|
|
34
|
+
* global ignores in a parent config prevent entering ignored directories, so
|
|
35
|
+
* nested configs in those directories are never discovered.
|
|
36
|
+
*
|
|
37
|
+
* Example: root config has `{ ignores: ['__tests__/**'] }`.
|
|
38
|
+
* A nested config at `__tests__/fixtures/rslint.config.js` is filtered out
|
|
39
|
+
* because `__tests__/fixtures/` is within the root config's global ignores.
|
|
40
|
+
*/
|
|
41
|
+
export declare function filterConfigsByParentIgnores(configEntries: ConfigEntry[]): ConfigEntry[];
|
|
42
|
+
export {};
|
|
27
43
|
//# sourceMappingURL=config-discovery.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"config-discovery.d.ts","sourceRoot":"","sources":["../../src/utils/config-discovery.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"config-discovery.d.ts","sourceRoot":"","sources":["../../src/utils/config-discovery.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,eAAe,UAK3B,CAAC;AAIF,wBAAgB,YAAY,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAMvD;AAED;;;GAGG;AACH,wBAAgB,cAAc,CAAC,QAAQ,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAS9D;AAED;;;;;GAKG;AACH,wBAAgB,kBAAkB,CAAC,QAAQ,EAAE,MAAM,GAAG,MAAM,EAAE,CAkC7D;AAED;;;;;;;;;;GAUG;AACH,wBAAgB,eAAe,CAC7B,KAAK,EAAE,MAAM,EAAE,EACf,IAAI,EAAE,MAAM,EAAE,EACd,GAAG,EAAE,MAAM,EACX,cAAc,EAAE,MAAM,GAAG,IAAI,GAC5B,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC,CAqDrB;AAoGD,UAAU,WAAW;IACnB,eAAe,EAAE,MAAM,CAAC;IACxB,OAAO,EAAE,OAAO,EAAE,CAAC;CACpB;AAED;;;;;;;;;GASG;AACH,wBAAgB,4BAA4B,CAC1C,aAAa,EAAE,WAAW,EAAE,GAC3B,WAAW,EAAE,CAqDf"}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import fs from 'node:fs';
|
|
2
2
|
import path from 'node:path';
|
|
3
|
+
import picomatch from 'picomatch';
|
|
3
4
|
export const JS_CONFIG_FILES = [
|
|
4
5
|
'rslint.config.js',
|
|
5
6
|
'rslint.config.mjs',
|
|
@@ -129,3 +130,132 @@ export function discoverConfigs(files, dirs, cwd, explicitConfig) {
|
|
|
129
130
|
}
|
|
130
131
|
return configs;
|
|
131
132
|
}
|
|
133
|
+
/**
|
|
134
|
+
* Check if a config entry is a "global ignore" entry — an entry with only
|
|
135
|
+
* `ignores` and no other meaningful fields. Aligns with ESLint flat config
|
|
136
|
+
* semantics where such entries prevent directory traversal.
|
|
137
|
+
*/
|
|
138
|
+
function isGlobalIgnoreEntry(entry) {
|
|
139
|
+
const ignores = entry.ignores;
|
|
140
|
+
if (!Array.isArray(ignores) || ignores.length === 0)
|
|
141
|
+
return false;
|
|
142
|
+
return (entry.files == null &&
|
|
143
|
+
entry.rules == null &&
|
|
144
|
+
entry.plugins == null &&
|
|
145
|
+
entry.languageOptions == null &&
|
|
146
|
+
entry.settings == null);
|
|
147
|
+
}
|
|
148
|
+
/**
|
|
149
|
+
* Extract global ignore patterns from a config's entries.
|
|
150
|
+
*/
|
|
151
|
+
function getGlobalIgnores(entries) {
|
|
152
|
+
const patterns = [];
|
|
153
|
+
for (const entry of entries) {
|
|
154
|
+
if (isGlobalIgnoreEntry(entry)) {
|
|
155
|
+
for (const pattern of entry.ignores) {
|
|
156
|
+
patterns.push(pattern);
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
return patterns;
|
|
161
|
+
}
|
|
162
|
+
/**
|
|
163
|
+
* Check if a directory path is matched by any of the given ignore patterns.
|
|
164
|
+
* Patterns are resolved relative to the parent config's directory.
|
|
165
|
+
* Uses picomatch for full glob support (**, *, {}, etc.).
|
|
166
|
+
*
|
|
167
|
+
* A directory is considered ignored if the pattern matches the directory
|
|
168
|
+
* itself or any of its ancestor paths. For example, pattern `__tests__/**`
|
|
169
|
+
* matches both `__tests__/` and `__tests__/fixtures/`.
|
|
170
|
+
*/
|
|
171
|
+
function isDirIgnoredByPatterns(dirPath, patterns, parentConfigDir) {
|
|
172
|
+
const relDir = path.relative(parentConfigDir, dirPath);
|
|
173
|
+
if (!relDir || relDir.startsWith('..'))
|
|
174
|
+
return false;
|
|
175
|
+
const normalizedRelDir = relDir.split(path.sep).join('/');
|
|
176
|
+
for (const pattern of patterns) {
|
|
177
|
+
// Skip empty or negation patterns.
|
|
178
|
+
if (!pattern || pattern.startsWith('!'))
|
|
179
|
+
continue;
|
|
180
|
+
// Skip file-level patterns (ending with /**/* or /*). These only ignore
|
|
181
|
+
// files inside a directory, NOT the directory itself. ESLint v10's
|
|
182
|
+
// isDirectoryIgnored does not block traversal for file-level patterns,
|
|
183
|
+
// allowing `!` re-include to work for files inside.
|
|
184
|
+
// Only directory-level patterns (ending with /** or /) block traversal.
|
|
185
|
+
if (pattern.endsWith('/**/*') ||
|
|
186
|
+
(pattern.endsWith('/*') && !pattern.endsWith('/**')))
|
|
187
|
+
continue;
|
|
188
|
+
const isMatch = picomatch(pattern, { dot: true });
|
|
189
|
+
// Check if the pattern matches the directory itself or a file inside it.
|
|
190
|
+
// We test: the dir path, dir path + trailing slash, and a synthetic
|
|
191
|
+
// child path to handle patterns like `dir/**`.
|
|
192
|
+
if (isMatch(normalizedRelDir) ||
|
|
193
|
+
isMatch(normalizedRelDir + '/') ||
|
|
194
|
+
isMatch(normalizedRelDir + '/x')) {
|
|
195
|
+
return true;
|
|
196
|
+
}
|
|
197
|
+
// For nested dirs, also check if any parent segment matches.
|
|
198
|
+
// e.g., pattern `__tests__/**` should match `__tests__/fixtures/deep`.
|
|
199
|
+
const segments = normalizedRelDir.split('/');
|
|
200
|
+
for (let i = 1; i < segments.length; i++) {
|
|
201
|
+
const partial = segments.slice(0, i).join('/');
|
|
202
|
+
if (isMatch(partial) ||
|
|
203
|
+
isMatch(partial + '/') ||
|
|
204
|
+
isMatch(partial + '/x')) {
|
|
205
|
+
return true;
|
|
206
|
+
}
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
return false;
|
|
210
|
+
}
|
|
211
|
+
/**
|
|
212
|
+
* Filter out nested configs whose directory is covered by an ancestor config's
|
|
213
|
+
* global ignores. Aligns with ESLint v10 behavior: when traversing directories,
|
|
214
|
+
* global ignores in a parent config prevent entering ignored directories, so
|
|
215
|
+
* nested configs in those directories are never discovered.
|
|
216
|
+
*
|
|
217
|
+
* Example: root config has `{ ignores: ['__tests__/**'] }`.
|
|
218
|
+
* A nested config at `__tests__/fixtures/rslint.config.js` is filtered out
|
|
219
|
+
* because `__tests__/fixtures/` is within the root config's global ignores.
|
|
220
|
+
*/
|
|
221
|
+
export function filterConfigsByParentIgnores(configEntries) {
|
|
222
|
+
if (configEntries.length <= 1)
|
|
223
|
+
return configEntries;
|
|
224
|
+
// Resolve symlinks and normalize trailing slashes for reliable ancestor checks.
|
|
225
|
+
const resolvedDirs = new Map();
|
|
226
|
+
for (const entry of configEntries) {
|
|
227
|
+
let dir = entry.configDirectory.replace(/[/\\]+$/, '');
|
|
228
|
+
try {
|
|
229
|
+
dir = fs.realpathSync(dir);
|
|
230
|
+
}
|
|
231
|
+
catch {
|
|
232
|
+
// Keep the original (stripped) path if realpath fails
|
|
233
|
+
}
|
|
234
|
+
resolvedDirs.set(entry, dir);
|
|
235
|
+
}
|
|
236
|
+
// Sort by directory depth (shallowest first) so parents are processed first
|
|
237
|
+
const sorted = [...configEntries].sort((a, b) => (resolvedDirs.get(a)?.length ?? 0) - (resolvedDirs.get(b)?.length ?? 0));
|
|
238
|
+
const result = [];
|
|
239
|
+
for (const config of sorted) {
|
|
240
|
+
let ignored = false;
|
|
241
|
+
const configDir = resolvedDirs.get(config);
|
|
242
|
+
for (const parent of result) {
|
|
243
|
+
const parentDir = resolvedDirs.get(parent);
|
|
244
|
+
if (!configDir.startsWith(parentDir + path.sep) &&
|
|
245
|
+
configDir !== parentDir) {
|
|
246
|
+
continue;
|
|
247
|
+
}
|
|
248
|
+
const globalIgnores = getGlobalIgnores(parent.entries);
|
|
249
|
+
if (globalIgnores.length === 0)
|
|
250
|
+
continue;
|
|
251
|
+
if (isDirIgnoredByPatterns(configDir, globalIgnores, parentDir)) {
|
|
252
|
+
ignored = true;
|
|
253
|
+
break;
|
|
254
|
+
}
|
|
255
|
+
}
|
|
256
|
+
if (!ignored) {
|
|
257
|
+
result.push(config);
|
|
258
|
+
}
|
|
259
|
+
}
|
|
260
|
+
return result;
|
|
261
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rslint/core",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"exports": {
|
|
5
5
|
".": {
|
|
6
6
|
"@typescript/source": "./src/index.ts",
|
|
@@ -49,9 +49,10 @@
|
|
|
49
49
|
],
|
|
50
50
|
"devDependencies": {
|
|
51
51
|
"@types/node": "24.0.14",
|
|
52
|
-
"
|
|
52
|
+
"@types/picomatch": "4.0.2",
|
|
53
53
|
"@typescript/native-preview": "7.0.0-dev.20250904.1",
|
|
54
|
-
"
|
|
54
|
+
"typescript": "5.9.3",
|
|
55
|
+
"@rslint/api": "0.4.0"
|
|
55
56
|
},
|
|
56
57
|
"peerDependencies": {
|
|
57
58
|
"jiti": "^2.0.0"
|
|
@@ -62,12 +63,15 @@
|
|
|
62
63
|
}
|
|
63
64
|
},
|
|
64
65
|
"optionalDependencies": {
|
|
65
|
-
"@rslint/darwin-arm64": "0.
|
|
66
|
-
"@rslint/
|
|
67
|
-
"@rslint/
|
|
68
|
-
"@rslint/linux-x64": "0.
|
|
69
|
-
"@rslint/win32-arm64": "0.
|
|
70
|
-
"@rslint/win32-x64": "0.
|
|
66
|
+
"@rslint/darwin-arm64": "0.4.0",
|
|
67
|
+
"@rslint/linux-arm64": "0.4.0",
|
|
68
|
+
"@rslint/darwin-x64": "0.4.0",
|
|
69
|
+
"@rslint/linux-x64": "0.4.0",
|
|
70
|
+
"@rslint/win32-arm64": "0.4.0",
|
|
71
|
+
"@rslint/win32-x64": "0.4.0"
|
|
72
|
+
},
|
|
73
|
+
"dependencies": {
|
|
74
|
+
"picomatch": "4.0.4"
|
|
71
75
|
},
|
|
72
76
|
"scripts": {
|
|
73
77
|
"build:bin": "go build -v -o bin/ ../../cmd/rslint",
|