@rslint/core 0.5.0 → 0.5.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/configs/index.d.ts +2 -0
- package/dist/configs/index.d.ts.map +1 -1
- package/dist/configs/index.js +8 -0
- package/dist/configs/jest.d.ts +2 -1
- package/dist/configs/jest.d.ts.map +1 -1
- package/dist/configs/jest.js +12 -4
- package/dist/configs/react-hooks.d.ts +6 -0
- package/dist/configs/react-hooks.d.ts.map +1 -0
- package/dist/configs/react-hooks.js +24 -0
- package/dist/configs/unicorn.d.ts +8 -0
- package/dist/configs/unicorn.d.ts.map +1 -0
- package/dist/configs/unicorn.js +161 -0
- package/dist/define-config.d.ts +101 -13
- package/dist/define-config.d.ts.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/dist/utils/config-discovery.d.ts +6 -2
- package/dist/utils/config-discovery.d.ts.map +1 -1
- package/dist/utils/config-discovery.js +13 -36
- package/package.json +10 -9
package/dist/configs/index.d.ts
CHANGED
|
@@ -7,8 +7,10 @@ interface PluginExport {
|
|
|
7
7
|
export declare const ts: PluginExport;
|
|
8
8
|
export declare const js: PluginExport;
|
|
9
9
|
export declare const reactPlugin: PluginExport;
|
|
10
|
+
export declare const reactHooksPlugin: PluginExport;
|
|
10
11
|
export declare const importPlugin: PluginExport;
|
|
11
12
|
export declare const promisePlugin: PluginExport;
|
|
12
13
|
export declare const jestPlugin: PluginExport;
|
|
14
|
+
export declare const unicornPlugin: PluginExport;
|
|
13
15
|
export {};
|
|
14
16
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/configs/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/configs/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AAU7D,UAAU,YAAY;IACpB,OAAO,EAAE;QAAE,WAAW,EAAE,iBAAiB,CAAA;KAAE,CAAC;CAC7C;AAED,eAAO,MAAM,EAAE,EAAE,YAEhB,CAAC;AAEF,eAAO,MAAM,EAAE,EAAE,YAEhB,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,YAEzB,CAAC;AAEF,eAAO,MAAM,gBAAgB,EAAE,YAE9B,CAAC;AAEF,eAAO,MAAM,YAAY,EAAE,YAE1B,CAAC;AAEF,eAAO,MAAM,aAAa,EAAE,YAE3B,CAAC;AAEF,eAAO,MAAM,UAAU,EAAE,YAExB,CAAC;AAEF,eAAO,MAAM,aAAa,EAAE,YAE3B,CAAC"}
|
package/dist/configs/index.js
CHANGED
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
import { recommended as tsRecommended } from './typescript.js';
|
|
2
2
|
import { recommended as jsRecommended } from './javascript.js';
|
|
3
3
|
import { recommended as reactRecommended } from './react.js';
|
|
4
|
+
import { recommended as reactHooksRecommended } from './react-hooks.js';
|
|
4
5
|
import { recommended as importRecommended } from './import.js';
|
|
5
6
|
import { recommended as promiseRecommended } from './promise.js';
|
|
6
7
|
import { recommended as jestRecommended } from './jest.js';
|
|
8
|
+
import { recommended as unicornRecommended } from './unicorn.js';
|
|
7
9
|
export const ts = {
|
|
8
10
|
configs: { recommended: tsRecommended },
|
|
9
11
|
};
|
|
@@ -13,6 +15,9 @@ export const js = {
|
|
|
13
15
|
export const reactPlugin = {
|
|
14
16
|
configs: { recommended: reactRecommended },
|
|
15
17
|
};
|
|
18
|
+
export const reactHooksPlugin = {
|
|
19
|
+
configs: { recommended: reactHooksRecommended },
|
|
20
|
+
};
|
|
16
21
|
export const importPlugin = {
|
|
17
22
|
configs: { recommended: importRecommended },
|
|
18
23
|
};
|
|
@@ -22,3 +27,6 @@ export const promisePlugin = {
|
|
|
22
27
|
export const jestPlugin = {
|
|
23
28
|
configs: { recommended: jestRecommended },
|
|
24
29
|
};
|
|
30
|
+
export const unicornPlugin = {
|
|
31
|
+
configs: { recommended: unicornRecommended },
|
|
32
|
+
};
|
package/dist/configs/jest.d.ts
CHANGED
|
@@ -2,5 +2,6 @@ import type { RslintConfigEntry } from '../define-config.js';
|
|
|
2
2
|
// Aligned with official eslint-plugin-jest@29.x recommended.
|
|
3
3
|
// Rules commented out with "not implemented" are in the official preset but not yet available.
|
|
4
4
|
declare const recommended: RslintConfigEntry;
|
|
5
|
-
|
|
5
|
+
declare const style: RslintConfigEntry;
|
|
6
|
+
export { recommended, style };
|
|
6
7
|
//# sourceMappingURL=jest.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"jest.d.ts","sourceRoot":"","sources":["../../src/configs/jest.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AAE7D,6DAA6D;AAC7D,+FAA+F;AAC/F,QAAA,MAAM,WAAW,EAAE,iBAuBlB,CAAC;AAEF,OAAO,EAAE,WAAW,EAAE,CAAC"}
|
|
1
|
+
{"version":3,"file":"jest.d.ts","sourceRoot":"","sources":["../../src/configs/jest.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AAE7D,6DAA6D;AAC7D,+FAA+F;AAC/F,QAAA,MAAM,WAAW,EAAE,iBAuBlB,CAAC;AAEF,QAAA,MAAM,KAAK,EAAE,iBAOZ,CAAC;AAEF,OAAO,EAAE,WAAW,EAAE,KAAK,EAAE,CAAC"}
|
package/dist/configs/jest.js
CHANGED
|
@@ -7,15 +7,15 @@ const recommended = {
|
|
|
7
7
|
'jest/no-alias-methods': 'error',
|
|
8
8
|
// 'jest/no-commented-out-tests': 'warn', // not implemented
|
|
9
9
|
// 'jest/no-conditional-expect': 'error', // not implemented
|
|
10
|
-
|
|
10
|
+
'jest/no-deprecated-functions': 'error',
|
|
11
11
|
'jest/no-disabled-tests': 'warn',
|
|
12
|
-
|
|
12
|
+
'jest/no-done-callback': 'error',
|
|
13
13
|
// 'jest/no-export': 'error', // not implemented
|
|
14
14
|
'jest/no-focused-tests': 'error',
|
|
15
15
|
// 'jest/no-identical-title': 'error', // not implemented
|
|
16
16
|
// 'jest/no-interpolation-in-snapshots': 'error', // not implemented
|
|
17
17
|
// 'jest/no-jasmine-globals': 'error', // not implemented
|
|
18
|
-
|
|
18
|
+
'jest/no-mocks-import': 'error',
|
|
19
19
|
// 'jest/no-standalone-expect': 'error', // not implemented
|
|
20
20
|
'jest/no-test-prefixes': 'error',
|
|
21
21
|
'jest/valid-describe-callback': 'error',
|
|
@@ -24,4 +24,12 @@ const recommended = {
|
|
|
24
24
|
// 'jest/valid-title': 'error', // not implemented
|
|
25
25
|
},
|
|
26
26
|
};
|
|
27
|
-
|
|
27
|
+
const style = {
|
|
28
|
+
plugins: ['jest'],
|
|
29
|
+
rules: {
|
|
30
|
+
// 'jest/prefer-to-be': 'error', // not implemented
|
|
31
|
+
'jest/prefer-to-contain': 'error',
|
|
32
|
+
'jest/prefer-to-have-length': 'error',
|
|
33
|
+
},
|
|
34
|
+
};
|
|
35
|
+
export { recommended, style };
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { RslintConfigEntry } from '../define-config.js';
|
|
2
|
+
// Aligned with official eslint-plugin-react-hooks@7.x recommended.
|
|
3
|
+
// Rules commented out with "not implemented" are in the official preset but not yet available.
|
|
4
|
+
declare const recommended: RslintConfigEntry;
|
|
5
|
+
export { recommended };
|
|
6
|
+
//# sourceMappingURL=react-hooks.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"react-hooks.d.ts","sourceRoot":"","sources":["../../src/configs/react-hooks.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AAE7D,mEAAmE;AACnE,+FAA+F;AAC/F,QAAA,MAAM,WAAW,EAAE,iBAoBlB,CAAC;AAEF,OAAO,EAAE,WAAW,EAAE,CAAC"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
// Aligned with official eslint-plugin-react-hooks@7.x recommended.
|
|
2
|
+
// Rules commented out with "not implemented" are in the official preset but not yet available.
|
|
3
|
+
const recommended = {
|
|
4
|
+
plugins: ['react-hooks'],
|
|
5
|
+
rules: {
|
|
6
|
+
'react-hooks/rules-of-hooks': 'error',
|
|
7
|
+
'react-hooks/exhaustive-deps': 'warn',
|
|
8
|
+
// 'react-hooks/config': 'error', // not implemented
|
|
9
|
+
// 'react-hooks/error-boundaries': 'error', // not implemented
|
|
10
|
+
// 'react-hooks/gating': 'error', // not implemented
|
|
11
|
+
// 'react-hooks/globals': 'error', // not implemented
|
|
12
|
+
// 'react-hooks/immutability': 'error', // not implemented
|
|
13
|
+
// 'react-hooks/incompatible-library': 'warn', // not implemented
|
|
14
|
+
// 'react-hooks/preserve-manual-memoization': 'error', // not implemented
|
|
15
|
+
// 'react-hooks/purity': 'error', // not implemented
|
|
16
|
+
// 'react-hooks/refs': 'error', // not implemented
|
|
17
|
+
// 'react-hooks/set-state-in-effect': 'error', // not implemented
|
|
18
|
+
// 'react-hooks/set-state-in-render': 'error', // not implemented
|
|
19
|
+
// 'react-hooks/static-components': 'error', // not implemented
|
|
20
|
+
// 'react-hooks/unsupported-syntax': 'warn', // not implemented
|
|
21
|
+
// 'react-hooks/use-memo': 'error', // not implemented
|
|
22
|
+
},
|
|
23
|
+
};
|
|
24
|
+
export { recommended };
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { RslintConfigEntry } from '../define-config.js';
|
|
2
|
+
// Aligned with official eslint-plugin-unicorn@64.x recommended.
|
|
3
|
+
// Rules commented out with "not implemented" are in the official preset but not yet available.
|
|
4
|
+
// The official preset also injects `languageOptions.globals` (Array, Promise, Map, …);
|
|
5
|
+
// rslint's config entry doesn't expose a `globals` field, so that part is omitted.
|
|
6
|
+
declare const recommended: RslintConfigEntry;
|
|
7
|
+
export { recommended };
|
|
8
|
+
//# sourceMappingURL=unicorn.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"unicorn.d.ts","sourceRoot":"","sources":["../../src/configs/unicorn.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AAE7D,gEAAgE;AAChE,+FAA+F;AAC/F,yFAAuF;AACvF,mFAAmF;AACnF,QAAA,MAAM,WAAW,EAAE,iBA4JlB,CAAC;AAEF,OAAO,EAAE,WAAW,EAAE,CAAC"}
|
|
@@ -0,0 +1,161 @@
|
|
|
1
|
+
// Aligned with official eslint-plugin-unicorn@64.x recommended.
|
|
2
|
+
// Rules commented out with "not implemented" are in the official preset but not yet available.
|
|
3
|
+
// The official preset also injects `languageOptions.globals` (Array, Promise, Map, …);
|
|
4
|
+
// rslint's config entry doesn't expose a `globals` field, so that part is omitted.
|
|
5
|
+
const recommended = {
|
|
6
|
+
plugins: ['unicorn'],
|
|
7
|
+
rules: {
|
|
8
|
+
// Core ESLint rules disabled by upstream once their unicorn equivalents take over.
|
|
9
|
+
// Keep them enabled (i.e. don't override) until the unicorn replacements are implemented,
|
|
10
|
+
// otherwise users would lose all coverage for these patterns.
|
|
11
|
+
// 'no-negated-condition': 'off',
|
|
12
|
+
// 'no-nested-ternary': 'off',
|
|
13
|
+
// 'unicorn/better-regex': 'off', // not implemented
|
|
14
|
+
// 'unicorn/catch-error-name': 'error', // not implemented
|
|
15
|
+
// 'unicorn/consistent-assert': 'error', // not implemented
|
|
16
|
+
// 'unicorn/consistent-date-clone': 'error', // not implemented
|
|
17
|
+
// 'unicorn/consistent-destructuring': 'off', // not implemented
|
|
18
|
+
// 'unicorn/consistent-empty-array-spread': 'error', // not implemented
|
|
19
|
+
// 'unicorn/consistent-existence-index-check': 'error', // not implemented
|
|
20
|
+
// 'unicorn/consistent-function-scoping': 'error', // not implemented
|
|
21
|
+
// 'unicorn/consistent-template-literal-escape': 'error', // not implemented
|
|
22
|
+
// 'unicorn/custom-error-definition': 'off', // not implemented
|
|
23
|
+
// 'unicorn/empty-brace-spaces': 'error', // not implemented
|
|
24
|
+
// 'unicorn/error-message': 'error', // not implemented
|
|
25
|
+
// 'unicorn/escape-case': 'error', // not implemented
|
|
26
|
+
// 'unicorn/expiring-todo-comments': 'error', // not implemented
|
|
27
|
+
// 'unicorn/explicit-length-check': 'error', // not implemented
|
|
28
|
+
'unicorn/filename-case': 'error',
|
|
29
|
+
// 'unicorn/import-style': 'error', // not implemented
|
|
30
|
+
// 'unicorn/isolated-functions': 'error', // not implemented
|
|
31
|
+
// 'unicorn/new-for-builtins': 'error', // not implemented
|
|
32
|
+
// 'unicorn/no-abusive-eslint-disable': 'error', // not implemented
|
|
33
|
+
// 'unicorn/no-accessor-recursion': 'error', // not implemented
|
|
34
|
+
// 'unicorn/no-anonymous-default-export': 'error', // not implemented
|
|
35
|
+
// 'unicorn/no-array-callback-reference': 'error', // not implemented
|
|
36
|
+
// 'unicorn/no-array-for-each': 'error', // not implemented
|
|
37
|
+
// 'unicorn/no-array-method-this-argument': 'error', // not implemented
|
|
38
|
+
// 'unicorn/no-array-reduce': 'error', // not implemented
|
|
39
|
+
// 'unicorn/no-array-reverse': 'error', // not implemented
|
|
40
|
+
// 'unicorn/no-array-sort': 'error', // not implemented
|
|
41
|
+
// 'unicorn/no-await-expression-member': 'error', // not implemented
|
|
42
|
+
// 'unicorn/no-await-in-promise-methods': 'error', // not implemented
|
|
43
|
+
// 'unicorn/no-console-spaces': 'error', // not implemented
|
|
44
|
+
// 'unicorn/no-document-cookie': 'error', // not implemented
|
|
45
|
+
// 'unicorn/no-empty-file': 'error', // not implemented
|
|
46
|
+
// 'unicorn/no-for-loop': 'error', // not implemented
|
|
47
|
+
// 'unicorn/no-hex-escape': 'error', // not implemented
|
|
48
|
+
// 'unicorn/no-immediate-mutation': 'error', // not implemented
|
|
49
|
+
// 'unicorn/no-instanceof-builtins': 'error', // not implemented
|
|
50
|
+
// 'unicorn/no-invalid-fetch-options': 'error', // not implemented
|
|
51
|
+
// 'unicorn/no-invalid-remove-event-listener': 'error', // not implemented
|
|
52
|
+
// 'unicorn/no-keyword-prefix': 'off', // not implemented
|
|
53
|
+
// 'unicorn/no-lonely-if': 'error', // not implemented
|
|
54
|
+
// 'unicorn/no-magic-array-flat-depth': 'error', // not implemented
|
|
55
|
+
// 'unicorn/no-named-default': 'error', // not implemented
|
|
56
|
+
// 'unicorn/no-negated-condition': 'error', // not implemented
|
|
57
|
+
// 'unicorn/no-negation-in-equality-check': 'error', // not implemented
|
|
58
|
+
// 'unicorn/no-nested-ternary': 'error', // not implemented
|
|
59
|
+
// 'unicorn/no-new-array': 'error', // not implemented
|
|
60
|
+
// 'unicorn/no-new-buffer': 'error', // not implemented
|
|
61
|
+
// 'unicorn/no-null': 'error', // not implemented
|
|
62
|
+
// 'unicorn/no-object-as-default-parameter': 'error', // not implemented
|
|
63
|
+
// 'unicorn/no-process-exit': 'error', // not implemented
|
|
64
|
+
// 'unicorn/no-single-promise-in-promise-methods': 'error', // not implemented
|
|
65
|
+
'unicorn/no-static-only-class': 'error',
|
|
66
|
+
// 'unicorn/no-thenable': 'error', // not implemented
|
|
67
|
+
// 'unicorn/no-this-assignment': 'error', // not implemented
|
|
68
|
+
// 'unicorn/no-typeof-undefined': 'error', // not implemented
|
|
69
|
+
// 'unicorn/no-unnecessary-array-flat-depth': 'error', // not implemented
|
|
70
|
+
// 'unicorn/no-unnecessary-array-splice-count': 'error', // not implemented
|
|
71
|
+
// 'unicorn/no-unnecessary-await': 'error', // not implemented
|
|
72
|
+
// 'unicorn/no-unnecessary-polyfills': 'error', // not implemented
|
|
73
|
+
// 'unicorn/no-unnecessary-slice-end': 'error', // not implemented
|
|
74
|
+
// 'unicorn/no-unreadable-array-destructuring': 'error', // not implemented
|
|
75
|
+
// 'unicorn/no-unreadable-iife': 'error', // not implemented
|
|
76
|
+
// 'unicorn/no-unused-properties': 'off', // not implemented
|
|
77
|
+
// 'unicorn/no-useless-collection-argument': 'error', // not implemented
|
|
78
|
+
// 'unicorn/no-useless-error-capture-stack-trace': 'error', // not implemented
|
|
79
|
+
// 'unicorn/no-useless-fallback-in-spread': 'error', // not implemented
|
|
80
|
+
// 'unicorn/no-useless-iterator-to-array': 'error', // not implemented
|
|
81
|
+
// 'unicorn/no-useless-length-check': 'error', // not implemented
|
|
82
|
+
// 'unicorn/no-useless-promise-resolve-reject': 'error', // not implemented
|
|
83
|
+
// 'unicorn/no-useless-spread': 'error', // not implemented
|
|
84
|
+
// 'unicorn/no-useless-switch-case': 'error', // not implemented
|
|
85
|
+
// 'unicorn/no-useless-undefined': 'error', // not implemented
|
|
86
|
+
// 'unicorn/no-zero-fractions': 'error', // not implemented
|
|
87
|
+
// 'unicorn/number-literal-case': 'error', // not implemented
|
|
88
|
+
// 'unicorn/numeric-separators-style': 'error', // not implemented
|
|
89
|
+
// 'unicorn/prefer-add-event-listener': 'error', // not implemented
|
|
90
|
+
// 'unicorn/prefer-array-find': 'error', // not implemented
|
|
91
|
+
// 'unicorn/prefer-array-flat': 'error', // not implemented
|
|
92
|
+
// 'unicorn/prefer-array-flat-map': 'error', // not implemented
|
|
93
|
+
// 'unicorn/prefer-array-index-of': 'error', // not implemented
|
|
94
|
+
// 'unicorn/prefer-array-some': 'error', // not implemented
|
|
95
|
+
// 'unicorn/prefer-at': 'error', // not implemented
|
|
96
|
+
// 'unicorn/prefer-bigint-literals': 'error', // not implemented
|
|
97
|
+
// 'unicorn/prefer-blob-reading-methods': 'error', // not implemented
|
|
98
|
+
// 'unicorn/prefer-class-fields': 'error', // not implemented
|
|
99
|
+
// 'unicorn/prefer-classlist-toggle': 'error', // not implemented
|
|
100
|
+
// 'unicorn/prefer-code-point': 'error', // not implemented
|
|
101
|
+
// 'unicorn/prefer-date-now': 'error', // not implemented
|
|
102
|
+
// 'unicorn/prefer-default-parameters': 'error', // not implemented
|
|
103
|
+
// 'unicorn/prefer-dom-node-append': 'error', // not implemented
|
|
104
|
+
// 'unicorn/prefer-dom-node-dataset': 'error', // not implemented
|
|
105
|
+
// 'unicorn/prefer-dom-node-remove': 'error', // not implemented
|
|
106
|
+
// 'unicorn/prefer-dom-node-text-content': 'error', // not implemented
|
|
107
|
+
// 'unicorn/prefer-event-target': 'error', // not implemented
|
|
108
|
+
// 'unicorn/prefer-export-from': 'error', // not implemented
|
|
109
|
+
// 'unicorn/prefer-global-this': 'error', // not implemented
|
|
110
|
+
// 'unicorn/prefer-import-meta-properties': 'off', // not implemented
|
|
111
|
+
// 'unicorn/prefer-includes': 'error', // not implemented
|
|
112
|
+
// 'unicorn/prefer-json-parse-buffer': 'off', // not implemented
|
|
113
|
+
// 'unicorn/prefer-keyboard-event-key': 'error', // not implemented
|
|
114
|
+
// 'unicorn/prefer-logical-operator-over-ternary': 'error', // not implemented
|
|
115
|
+
// 'unicorn/prefer-math-min-max': 'error', // not implemented
|
|
116
|
+
// 'unicorn/prefer-math-trunc': 'error', // not implemented
|
|
117
|
+
// 'unicorn/prefer-modern-dom-apis': 'error', // not implemented
|
|
118
|
+
// 'unicorn/prefer-modern-math-apis': 'error', // not implemented
|
|
119
|
+
// 'unicorn/prefer-module': 'error', // not implemented
|
|
120
|
+
// 'unicorn/prefer-native-coercion-functions': 'error', // not implemented
|
|
121
|
+
// 'unicorn/prefer-negative-index': 'error', // not implemented
|
|
122
|
+
// 'unicorn/prefer-node-protocol': 'error', // not implemented
|
|
123
|
+
// 'unicorn/prefer-number-properties': 'error', // not implemented
|
|
124
|
+
// 'unicorn/prefer-object-from-entries': 'error', // not implemented
|
|
125
|
+
// 'unicorn/prefer-optional-catch-binding': 'error', // not implemented
|
|
126
|
+
// 'unicorn/prefer-prototype-methods': 'error', // not implemented
|
|
127
|
+
// 'unicorn/prefer-query-selector': 'error', // not implemented
|
|
128
|
+
// 'unicorn/prefer-reflect-apply': 'error', // not implemented
|
|
129
|
+
// 'unicorn/prefer-regexp-test': 'error', // not implemented
|
|
130
|
+
// 'unicorn/prefer-response-static-json': 'error', // not implemented
|
|
131
|
+
// 'unicorn/prefer-set-has': 'error', // not implemented
|
|
132
|
+
// 'unicorn/prefer-set-size': 'error', // not implemented
|
|
133
|
+
// 'unicorn/prefer-simple-condition-first': 'error', // not implemented
|
|
134
|
+
// 'unicorn/prefer-single-call': 'error', // not implemented
|
|
135
|
+
// 'unicorn/prefer-spread': 'error', // not implemented
|
|
136
|
+
// 'unicorn/prefer-string-raw': 'error', // not implemented
|
|
137
|
+
// 'unicorn/prefer-string-replace-all': 'error', // not implemented
|
|
138
|
+
// 'unicorn/prefer-string-slice': 'error', // not implemented
|
|
139
|
+
// 'unicorn/prefer-string-starts-ends-with': 'error', // not implemented
|
|
140
|
+
// 'unicorn/prefer-string-trim-start-end': 'error', // not implemented
|
|
141
|
+
// 'unicorn/prefer-structured-clone': 'error', // not implemented
|
|
142
|
+
// 'unicorn/prefer-switch': 'error', // not implemented
|
|
143
|
+
// 'unicorn/prefer-ternary': 'error', // not implemented
|
|
144
|
+
// 'unicorn/prefer-top-level-await': 'error', // not implemented
|
|
145
|
+
// 'unicorn/prefer-type-error': 'error', // not implemented
|
|
146
|
+
// 'unicorn/prevent-abbreviations': 'error', // not implemented
|
|
147
|
+
// 'unicorn/relative-url-style': 'error', // not implemented
|
|
148
|
+
// 'unicorn/require-array-join-separator': 'error', // not implemented
|
|
149
|
+
// 'unicorn/require-module-attributes': 'error', // not implemented
|
|
150
|
+
// 'unicorn/require-module-specifiers': 'error', // not implemented
|
|
151
|
+
// 'unicorn/require-number-to-fixed-digits-argument': 'error', // not implemented
|
|
152
|
+
// 'unicorn/require-post-message-target-origin': 'off', // not implemented
|
|
153
|
+
// 'unicorn/string-content': 'off', // not implemented
|
|
154
|
+
// 'unicorn/switch-case-braces': 'error', // not implemented
|
|
155
|
+
// 'unicorn/switch-case-break-position': 'error', // not implemented
|
|
156
|
+
// 'unicorn/template-indent': 'error', // not implemented
|
|
157
|
+
// 'unicorn/text-encoding-identifier-case': 'error', // not implemented
|
|
158
|
+
// 'unicorn/throw-new-error': 'error', // not implemented
|
|
159
|
+
},
|
|
160
|
+
};
|
|
161
|
+
export { recommended };
|
package/dist/define-config.d.ts
CHANGED
|
@@ -1,21 +1,109 @@
|
|
|
1
|
-
|
|
1
|
+
/* rslint-disable @typescript-eslint/no-explicit-any */
|
|
2
|
+
/**
|
|
3
|
+
* Severity level for a rule.
|
|
4
|
+
*/
|
|
5
|
+
export type RuleSeverity = 'off' | 'warn' | 'error';
|
|
6
|
+
/**
|
|
7
|
+
* Plugin declaration names recognized by rslint's loader.
|
|
8
|
+
*/
|
|
9
|
+
export type KnownPlugin = '@typescript-eslint' | 'import' | 'jest' | 'promise' | 'react' | 'react-hooks' | 'unicorn';
|
|
10
|
+
/**
|
|
11
|
+
* Rule-specific options object. Each rule defines its own shape; until per-rule
|
|
12
|
+
* types are generated, options are accepted as an open record.
|
|
13
|
+
*/
|
|
14
|
+
export type RuleOptions = Record<string, any>;
|
|
15
|
+
/**
|
|
16
|
+
* Configuration value accepted for a single rule.
|
|
17
|
+
*
|
|
18
|
+
* - `RuleSeverity` — just toggle the rule.
|
|
19
|
+
* - `[RuleSeverity, ...args]` — ESLint-style array form. Most rules take a
|
|
20
|
+
* single options object (`[severity, { ... }]`); some accept positional
|
|
21
|
+
* string/object args (`[severity, "always", { ... }]`).
|
|
22
|
+
* - `{ level, options }` — object form supported by the loader.
|
|
23
|
+
*/
|
|
24
|
+
export type RuleEntry = RuleSeverity | readonly [RuleSeverity, ...any[]] | {
|
|
25
|
+
level: RuleSeverity;
|
|
26
|
+
options?: RuleOptions;
|
|
27
|
+
};
|
|
28
|
+
/**
|
|
29
|
+
* Map of rule name → rule configuration. Rule names are `string` (no
|
|
30
|
+
* enumeration of known rules yet); the value shape is what gives editors
|
|
31
|
+
* hints when typing the array or object form.
|
|
32
|
+
*/
|
|
33
|
+
export type RulesRecord = Record<string, RuleEntry>;
|
|
34
|
+
/**
|
|
35
|
+
* TypeScript parser options. `project` may be a single tsconfig path or a list.
|
|
36
|
+
*/
|
|
37
|
+
export interface ParserOptions {
|
|
38
|
+
/**
|
|
39
|
+
* Enable project service for typed linting (runs the TypeScript language
|
|
40
|
+
* service behind the scenes).
|
|
41
|
+
*/
|
|
42
|
+
projectService?: boolean;
|
|
43
|
+
/**
|
|
44
|
+
* tsconfig.json path(s) used for typed linting. Glob patterns are supported.
|
|
45
|
+
*
|
|
46
|
+
* @example
|
|
47
|
+
* project: './tsconfig.json'
|
|
48
|
+
* @example
|
|
49
|
+
* project: ['./tsconfig.app.json', './tsconfig.node.json']
|
|
50
|
+
* @example
|
|
51
|
+
* project: ['./tsconfig.*.json']
|
|
52
|
+
*/
|
|
53
|
+
project?: string | string[];
|
|
54
|
+
}
|
|
55
|
+
/**
|
|
56
|
+
* Language-specific configuration.
|
|
57
|
+
*/
|
|
58
|
+
export interface LanguageOptions {
|
|
59
|
+
parserOptions?: ParserOptions;
|
|
60
|
+
}
|
|
61
|
+
/**
|
|
62
|
+
* A single entry in an rslint config array. Multiple entries may target
|
|
63
|
+
* different file globs and are merged at lint time.
|
|
64
|
+
*/
|
|
2
65
|
export interface RslintConfigEntry {
|
|
66
|
+
/**
|
|
67
|
+
* Glob patterns for files this entry applies to.
|
|
68
|
+
*
|
|
69
|
+
* @example
|
|
70
|
+
* files: ['src/**', 'tests/**']
|
|
71
|
+
*/
|
|
3
72
|
files?: string[];
|
|
73
|
+
/**
|
|
74
|
+
* Glob patterns excluded from this entry.
|
|
75
|
+
*
|
|
76
|
+
* @example
|
|
77
|
+
* ignores: ['node_modules/**', 'dist/**']
|
|
78
|
+
*/
|
|
4
79
|
ignores?: string[];
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
80
|
+
/** Language-level configuration (parser, etc.). */
|
|
81
|
+
languageOptions?: LanguageOptions;
|
|
82
|
+
/**
|
|
83
|
+
* Plugin names to enable for this entry. Built-in plugins are listed for
|
|
84
|
+
* autocomplete; arbitrary strings are still accepted so future/third-party
|
|
85
|
+
* plugins don't trip the type checker.
|
|
86
|
+
*
|
|
87
|
+
* Each built-in value maps to the original ESLint plugin it ports rules from:
|
|
88
|
+
*
|
|
89
|
+
* - `'@typescript-eslint'` → `@typescript-eslint/eslint-plugin`
|
|
90
|
+
* - `'import'` → `eslint-plugin-import`
|
|
91
|
+
* - `'jest'` → `eslint-plugin-jest`
|
|
92
|
+
* - `'promise'` → `eslint-plugin-promise`
|
|
93
|
+
* - `'react'` → `eslint-plugin-react`
|
|
94
|
+
* - `'react-hooks'` → `eslint-plugin-react-hooks`
|
|
95
|
+
* - `'unicorn'` → `eslint-plugin-unicorn`
|
|
96
|
+
*/
|
|
97
|
+
plugins?: (KnownPlugin | (string & {}))[];
|
|
98
|
+
/** Shared settings accessible to rules. */
|
|
99
|
+
settings?: Record<string, any>;
|
|
100
|
+
/** Rule configuration map. */
|
|
101
|
+
rules?: RulesRecord;
|
|
14
102
|
}
|
|
15
|
-
|
|
103
|
+
/** Top-level rslint config: an array of entries. */
|
|
104
|
+
export type RslintConfig = RslintConfigEntry[];
|
|
16
105
|
/**
|
|
17
106
|
* Type-safe config helper. Returns the config array as-is (identity function).
|
|
18
107
|
*/
|
|
19
|
-
export declare function defineConfig(config:
|
|
20
|
-
export {};
|
|
108
|
+
export declare function defineConfig(config: RslintConfig): RslintConfig;
|
|
21
109
|
//# sourceMappingURL=define-config.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"define-config.d.ts","sourceRoot":"","sources":["../src/define-config.ts"],"names":[],"mappings":"AAAA,
|
|
1
|
+
{"version":3,"file":"define-config.d.ts","sourceRoot":"","sources":["../src/define-config.ts"],"names":[],"mappings":"AAAA,uDAAuD;AACvD;;GAEG;AACH,MAAM,MAAM,YAAY,GAAG,KAAK,GAAG,MAAM,GAAG,OAAO,CAAC;AAEpD;;GAEG;AACH,MAAM,MAAM,WAAW,GACnB,oBAAoB,GACpB,QAAQ,GACR,MAAM,GACN,SAAS,GACT,OAAO,GACP,aAAa,GACb,SAAS,CAAC;AAEd;;;GAGG;AACH,MAAM,MAAM,WAAW,GAAG,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;AAE9C;;;;;;;;GAQG;AACH,MAAM,MAAM,SAAS,GACjB,YAAY,GACZ,SAAS,CAAC,YAAY,EAAE,GAAG,GAAG,EAAE,CAAC,GACjC;IAAE,KAAK,EAAE,YAAY,CAAC;IAAC,OAAO,CAAC,EAAE,WAAW,CAAA;CAAE,CAAC;AAEnD;;;;GAIG;AACH,MAAM,MAAM,WAAW,GAAG,MAAM,CAAC,MAAM,EAAE,SAAS,CAAC,CAAC;AAEpD;;GAEG;AACH,MAAM,WAAW,aAAa;IAC5B;;;OAGG;IACH,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB;;;;;;;;;OASG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,MAAM,EAAE,CAAC;CAC7B;AAED;;GAEG;AACH,MAAM,WAAW,eAAe;IAC9B,aAAa,CAAC,EAAE,aAAa,CAAC;CAC/B;AAED;;;GAGG;AACH,MAAM,WAAW,iBAAiB;IAChC;;;;;OAKG;IACH,KAAK,CAAC,EAAE,MAAM,EAAE,CAAC;IACjB;;;;;OAKG;IACH,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;IACnB,mDAAmD;IACnD,eAAe,CAAC,EAAE,eAAe,CAAC;IAClC;;;;;;;;;;;;;;OAcG;IACH,OAAO,CAAC,EAAE,CAAC,WAAW,GAAG,CAAC,MAAM,GAAG,EAAE,CAAC,CAAC,EAAE,CAAC;IAC1C,2CAA2C;IAC3C,QAAQ,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;IAC/B,8BAA8B;IAC9B,KAAK,CAAC,EAAE,WAAW,CAAC;CACrB;AAED,oDAAoD;AACpD,MAAM,MAAM,YAAY,GAAG,iBAAiB,EAAE,CAAC;AAE/C;;GAEG;AACH,wBAAgB,YAAY,CAAC,MAAM,EAAE,YAAY,GAAG,YAAY,CAE/D"}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { LintOptions, LintResponse, ApplyFixesRequest, ApplyFixesResponse, GetAstInfoRequest, GetAstInfoResponse } from './service.js';
|
|
2
2
|
export { defineConfig } from './define-config.js';
|
|
3
3
|
export type { RslintConfigEntry } from './define-config.js';
|
|
4
|
-
export { ts, js, reactPlugin, importPlugin, promisePlugin, jestPlugin, } from './configs/index.js';
|
|
4
|
+
export { ts, js, reactPlugin, reactHooksPlugin, importPlugin, promisePlugin, jestPlugin, unicornPlugin, } from './configs/index.js';
|
|
5
5
|
// Export the main RSLintService class for direct usage
|
|
6
6
|
export { RSLintService } from './service.js';
|
|
7
7
|
// Export specific implementations for advanced usage
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,OAAO,EACL,WAAW,EACX,YAAY,EAEZ,iBAAiB,EACjB,kBAAkB,EAClB,iBAAiB,EACjB,kBAAkB,EACnB,MAAM,cAAc,CAAC;AAEtB,OAAO,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAClD,YAAY,EAAE,iBAAiB,EAAE,MAAM,oBAAoB,CAAC;AAC5D,OAAO,EACL,EAAE,EACF,EAAE,EACF,WAAW,EACX,YAAY,EACZ,aAAa,EACb,UAAU,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,OAAO,EACL,WAAW,EACX,YAAY,EAEZ,iBAAiB,EACjB,kBAAkB,EAClB,iBAAiB,EACjB,kBAAkB,EACnB,MAAM,cAAc,CAAC;AAEtB,OAAO,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAClD,YAAY,EAAE,iBAAiB,EAAE,MAAM,oBAAoB,CAAC;AAC5D,OAAO,EACL,EAAE,EACF,EAAE,EACF,WAAW,EACX,gBAAgB,EAChB,YAAY,EACZ,aAAa,EACb,UAAU,EACV,aAAa,GACd,MAAM,oBAAoB,CAAC;AAE5B,uDAAuD;AACvD,OAAO,EAAE,aAAa,EAAE,MAAM,cAAc,CAAC;AAE7C,qDAAqD;AACrD,OAAO,EAAE,iBAAiB,EAAE,MAAM,WAAW,CAAC;AAE9C,6CAA6C;AAC7C,wBAAsB,IAAI,CAAC,OAAO,EAAE,WAAW,GAAG,OAAO,CAAC,YAAY,CAAC,CAStE;AAED,0CAA0C;AAC1C,wBAAsB,UAAU,CAC9B,OAAO,EAAE,iBAAiB,GACzB,OAAO,CAAC,kBAAkB,CAAC,CAK7B;AAED,4CAA4C;AAC5C,wBAAsB,UAAU,CAC9B,OAAO,EAAE,iBAAiB,GACzB,OAAO,CAAC,kBAAkB,CAAC,CAK7B;AAED,mBAAmB;AACnB,OAAO,EACL,KAAK,UAAU,EACf,KAAK,WAAW,EAChB,KAAK,YAAY,EACjB,KAAK,iBAAiB,EACtB,KAAK,kBAAkB,EACvB,KAAK,eAAe,EACpB,KAAK,aAAa,EAClB,KAAK,aAAa,EAClB,KAAK,sBAAsB;AAC3B,iBAAiB;AACjB,KAAK,iBAAiB,EACtB,KAAK,kBAAkB,EACvB,KAAK,QAAQ,EACb,KAAK,QAAQ,EACb,KAAK,UAAU,EACf,KAAK,aAAa,EAClB,KAAK,QAAQ,EACb,KAAK,aAAa,EAClB,KAAK,aAAa,EAClB,KAAK,SAAS,EACd,KAAK,iBAAiB,GACvB,MAAM,YAAY,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { NodeRslintService } from './node.js';
|
|
2
2
|
import { RSLintService, } from './service.js';
|
|
3
3
|
export { defineConfig } from './define-config.js';
|
|
4
|
-
export { ts, js, reactPlugin, importPlugin, promisePlugin, jestPlugin, } from './configs/index.js';
|
|
4
|
+
export { ts, js, reactPlugin, reactHooksPlugin, importPlugin, promisePlugin, jestPlugin, unicornPlugin, } from './configs/index.js';
|
|
5
5
|
// Export the main RSLintService class for direct usage
|
|
6
6
|
export { RSLintService } from './service.js';
|
|
7
7
|
// Export specific implementations for advanced usage
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":"7.0.0-dev.20250904.1","root":[[61,62],[68,69],[72,85]],"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/define-config.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/node.ts","../src/service.ts","../src/configs/typescript.ts","../src/configs/javascript.ts","../src/configs/react.ts","../src/configs/import.ts","../src/configs/promise.ts","../src/configs/jest.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"],"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":"c99a5601391cf7e68323e392adab539e","signature":"e12e7d2db2db6cf4e2e8c86719eeaec9","impliedNodeFormat":99},"9d7a1c0676307f82773dc48ee003c51f","75214e168dea49822a6ff7a19d095f3e","1ce064041f9c19243430811d939818cf","8503cb1a6f13fe32dd8c86ecb8addd4e","ba2d157ec950064af6837b0c9b5ca75b",{"version":"27f095ab5b3c7f289f4fcb5fed34e8ba","signature":"f59be21f04f1a5f66cee16a39c6a99a9","impliedNodeFormat":99},{"version":"b9537fe9d9bb657c30c7ff120eae58b1","signature":"e91f4ea5e0d6a1828c17d71edd1d5d72","impliedNodeFormat":99},{"version":"2cb26cf8b77feeaaaea39a5ded665113","impliedNodeFormat":99},{"version":"d12f934b02b80930fae26957ad4738b6","impliedNodeFormat":99},{"version":"a0bfc511a737d8bd0bc86399299ce465","signature":"73d7ca12ec64e36b7d852bb682e49b6c","impliedNodeFormat":99},{"version":"bae2ea5cab0f79bc8f037c1c3afa8c6d","signature":"2a9257f19d6270a4654e60011346c7f2","impliedNodeFormat":99},{"version":"a70b1f108c62b87581067b6602a3c12d","signature":"407e5c2bc8aeeb90d36e1066c32c207a","impliedNodeFormat":99},{"version":"30265e1516d1dcf4c3a1e11c386afe26","signature":"e301ab977d4289eff4cde4a7413ef61a","impliedNodeFormat":99},{"version":"4f0b3daa0f1e301e5fc408c316cb179d","signature":"1c0aee6b41851e9a45a3eb49f83f240c","impliedNodeFormat":99},{"version":"29302e723f5a270b162245203b78357f","signature":"e9f70542c87d6dcbb341b6209f1e3ca1","impliedNodeFormat":99},{"version":"1c302ecd0bae8621b933c0807e762815","signature":"55430910f8ec9a81c21f7e757654c3f6","impliedNodeFormat":99},{"version":"6eebc6aaec3cbaf65c9676fcdc7b71f1","signature":"d89784645c747e5a67bc1363a038d4a0","impliedNodeFormat":99},{"version":"f19aa610319291e92f1e009825f85399","signature":"3bc9387c52d40323151c43848934a5d8","impliedNodeFormat":99},{"version":"1faedb1271cb5c1c9ef6f5cce80d7b53","signature":"5859429d968736ac8382634391724b74","impliedNodeFormat":99},{"version":"d10ed3b377a70afa6b74b416494c8996","signature":"4a24864e5873dfe363d4fe5c4397b737","impliedNodeFormat":99},{"version":"41068f22dc6e6c6f3af91bf0ab43ae12","signature":"a3737109390a05770a691e0f2fb816bc","impliedNodeFormat":99},{"version":"33ac5fafeca87c07f43d862f6f2fb228","signature":"805f30557a3071f3cb28cc814dad4279","impliedNodeFormat":99},{"version":"5d1aba6af7a268e786176b8ef97d42ee","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"],"fileIdsList":[[88,131,132,133,134,135,136,137,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,176,177,178,179,180,181,182],[88,130,132,133,134,135,136,137,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,176,177,178,179,180,181,182],[88,130,131,133,134,135,136,137,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,176,177,178,179,180,181,182],[130,131,132,133,134,135,136,137,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,176,177,178,179,180,181,182],[88,130,131,132,134,135,136,137,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,176,177,178,179,180,181,182],[88,130,131,132,133,135,136,137,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,176,177,178,179,180,181,182],[88,130,131,132,133,134,136,137,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,176,177,178,179,180,181,182],[88,130,131,132,133,134,135,136,137,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,176,177,178,179,180,181,182],[88,130,131,132,133,134,135,137,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,176,177,178,179,180,181,182],[88,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,176,177,178,179,180,181,182],[88,130,131,132,133,134,135,136,137,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,176,177,178,179,180,181,182],[88,130,131,132,133,134,135,136,137,138,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,176,177,178,179,180,181,182],[88,130,131,132,133,134,135,136,137,138,139,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,176,177,178,179,180,181,182],[88,130,131,132,133,134,135,136,137,138,139,140,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,176,177,178,179,180,181,182],[88,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,181,182],[88,130,131,132,133,134,135,136,137,138,139,140,141,142,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,182],[88,130,131,132,133,134,135,136,137,138,139,140,141,142,143,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,182],[88,130,131,132,133,134,135,136,137,138,139,140,141,142,143,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,181,182],[88,130,131,132,133,134,135,136,137,138,139,140,141,142,143,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,181,182],[88,128,130,131,132,133,134,135,136,137,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,176,177,178,179,180,181,182],[88,128,130,131,132,133,134,135,136,137,138,139,140,141,142,143,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,181,182],[88,130,131,132,133,134,135,136,137,138,139,140,141,142,143,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,181,182],[88,130,131,132,133,134,135,136,137,138,139,140,141,142,143,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,181,182],[86,87,88,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,181,182],[88,130,131,132,133,134,135,136,137,138,139,140,141,142,143,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,181,182],[88,130,131,132,133,134,135,136,137,138,139,140,141,142,143,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,181,182],[88,130,131,132,133,134,135,136,137,138,139,140,141,142,143,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,181,182],[88,130,131,132,133,134,135,136,137,138,139,140,141,142,143,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,181,182],[88,130,131,132,133,134,135,136,137,138,139,140,141,142,143,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,181,182],[88,130,131,132,133,134,135,136,137,138,139,140,141,142,143,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,181,182],[88,130,131,132,133,134,135,136,137,138,139,140,141,142,143,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,181,182],[88,130,131,132,133,134,135,136,137,138,139,140,141,142,143,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,181,182],[88,130,131,132,133,134,135,136,137,138,139,140,141,142,143,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,181,182],[88,130,131,132,133,134,135,136,137,138,139,140,141,142,143,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,181,182],[88,130,131,132,133,134,135,136,137,138,139,140,141,142,143,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,181,182],[88,130,131,132,133,134,135,136,137,138,139,140,141,142,143,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,181,182],[88,130,131,132,133,134,135,136,137,138,139,140,141,142,143,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,181,182],[88,130,131,132,133,134,135,136,137,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,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182],[88,130,131,132,133,134,135,136,137,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,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182],[88,130,131,132,133,134,135,136,137,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,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182],[88,130,131,132,133,134,135,136,137,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,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182],[88,130,131,132,133,134,135,136,137,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,169,170,171,172,173,174,175,176,177,178,179,180,181,182],[88,130,131,132,133,134,135,136,137,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,170,171,172,173,174,175,176,177,178,179,180,181,182],[88,130,131,132,133,134,135,136,137,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,171,172,173,174,175,176,177,178,179,180,181,182],[88,130,131,132,133,134,135,136,137,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,172,173,174,175,176,177,178,179,180,181,182],[88,130,131,132,133,134,135,136,137,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,173,174,175,176,177,178,179,180,181,182],[88,130,131,132,133,134,135,136,137,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,174,175,176,177,178,179,180,181,182],[88,130,131,132,133,134,135,136,137,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,175,176,177,178,179,180,181,182],[88,130,131,132,133,134,135,136,137,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,176,177,178,179,180,181,182],[88,130,131,132,133,134,135,136,137,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,177,178,179,180,181,182],[88,130,131,132,133,134,135,136,137,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,176,178,179,180,181,182],[88,130,131,132,133,134,135,136,137,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,176,177,179,180,181,182],[88,130,131,132,133,134,135,136,137,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,176,177,178,180,181,182],[88,130,131,132,133,134,135,136,137,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,176,177,178,179,181,182],[88,130,131,132,133,134,135,136,137,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,176,177,178,179,180,182],[88,130,131,132,133,134,135,136,137,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,176,177,178,179,180,181],[66,88,130,131,132,133,134,135,136,137,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,176,177,178,179,180,181,182],[63,64,65,88,130,131,132,133,134,135,136,137,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,176,177,178,179,180,181,182],[70,88,130,131,132,133,134,135,136,137,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,176,177,178,179,180,181,182],[88,98,102,130,131,132,133,134,135,136,137,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,176,177,178,179,180,181,182],[88,98,130,131,132,133,134,135,136,137,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,176,177,178,179,180,181,182],[88,93,130,131,132,133,134,135,136,137,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,176,177,178,179,180,181,182],[88,95,98,130,131,132,133,134,135,136,137,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,176,177,178,179,180,181,182],[88,130,131,132,133,134,135,136,137,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,176,177,178,179,180,181,182,183],[88,93,130,131,132,133,134,135,136,137,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,176,177,178,179,180,181,182,183],[88,90,91,92,94,97,130,131,132,133,134,135,136,137,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,176,177,178,179,180,181,182],[88,98,106,130,131,132,133,134,135,136,137,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,176,177,178,179,180,181,182],[88,91,96,130,131,132,133,134,135,136,137,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,176,177,178,179,180,181,182],[88,98,122,123,130,131,132,133,134,135,136,137,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,176,177,178,179,180,181,182],[88,91,94,98,130,131,132,133,134,135,136,137,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,176,177,178,179,180,181,182,183],[88,90,130,131,132,133,134,135,136,137,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,176,177,178,179,180,181,182],[88,93,94,95,96,97,98,99,100,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,123,124,125,126,127,130,131,132,133,134,135,136,137,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,176,177,178,179,180,181,182],[88,98,115,118,130,131,132,133,134,135,136,137,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,176,177,178,179,180,181,182],[88,98,106,107,108,130,131,132,133,134,135,136,137,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,176,177,178,179,180,181,182],[88,96,98,107,109,130,131,132,133,134,135,136,137,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,176,177,178,179,180,181,182],[88,97,130,131,132,133,134,135,136,137,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,176,177,178,179,180,181,182],[88,91,93,98,130,131,132,133,134,135,136,137,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,176,177,178,179,180,181,182],[88,98,102,107,109,130,131,132,133,134,135,136,137,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,176,177,178,179,180,181,182],[88,102,130,131,132,133,134,135,136,137,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,176,177,178,179,180,181,182],[88,96,98,101,130,131,132,133,134,135,136,137,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,176,177,178,179,180,181,182],[88,91,95,98,106,130,131,132,133,134,135,136,137,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,176,177,178,179,180,181,182],[88,98,115,130,131,132,133,134,135,136,137,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,176,177,178,179,180,181,182],[88,93,98,122,130,131,132,133,134,135,136,137,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,176,177,178,179,180,181,182,183],[61,88,130,131,132,133,134,135,136,137,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,176,177,178,179,180,181,182],[69,72,73,88,130,131,132,133,134,135,136,137,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,176,177,178,179,180,181,182],[69,71,88,130,131,132,133,134,135,136,137,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,176,177,178,179,180,181,182],[68,88,130,131,132,133,134,135,136,137,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,176,177,178,179,180,181,182],[68,77,78,79,80,81,82,88,130,131,132,133,134,135,136,137,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,176,177,178,179,180,181,182],[61,68,75,76,83,88,130,131,132,133,134,135,136,137,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,176,177,178,179,180,181,182],[67,68,88,130,131,132,133,134,135,136,137,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,176,177,178,179,180,181,182]],"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":[[130,1],[131,2],[132,3],[88,4],[133,5],[134,6],[135,7],[86,8],[136,9],[137,10],[138,11],[139,12],[140,13],[141,14],[142,15],[144,8],[143,16],[145,17],[146,18],[147,19],[129,20],[87,8],[148,21],[149,22],[150,23],[183,24],[151,25],[152,26],[153,27],[154,28],[155,29],[156,30],[157,31],[158,32],[159,33],[160,34],[161,35],[162,36],[163,37],[164,38],[165,39],[167,40],[166,41],[168,42],[169,43],[170,44],[171,45],[172,46],[173,47],[174,48],[175,49],[176,50],[177,51],[178,52],[179,53],[180,54],[181,55],[182,56],[67,57],[63,8],[64,8],[66,58],[65,8],[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],[89,8],[71,59],[70,8],[106,60],[117,61],[104,60],[118,8],[127,62],[96,63],[95,8],[126,64],[121,65],[125,63],[98,66],[114,67],[97,68],[124,69],[93,70],[94,65],[99,61],[100,8],[105,63],[103,61],[91,71],[128,72],[119,73],[109,74],[108,61],[110,75],[112,76],[107,77],[111,78],[122,64],[101,79],[102,80],[113,81],[92,8],[116,82],[115,61],[120,8],[90,8],[123,83],[62,84],[74,85],[72,86],[80,87],[83,88],[78,87],[82,87],[81,87],[79,87],[77,87],[68,8],[84,89],[75,84],[76,84],[61,8],[73,8],[69,90],[85,8]],"latestChangedDtsFile":"./worker.d.ts"}
|
|
1
|
+
{"version":"7.0.0-dev.20250904.1","root":[[61,62],[168,169],[172,187]],"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","../../../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/fdir@6.5.0_picomatch@4.0.4/node_modules/fdir/dist/index.d.mts","../../../node_modules/.pnpm/tinyglobby@0.2.15/node_modules/tinyglobby/dist/index.d.mts","../src/define-config.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/node.ts","../src/service.ts","../src/configs/typescript.ts","../src/configs/javascript.ts","../src/configs/react.ts","../src/configs/react-hooks.ts","../src/configs/import.ts","../src/configs/promise.ts","../src/configs/jest.ts","../src/configs/unicorn.ts","../src/configs/index.ts","../src/index.ts","../src/worker.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":"c99a5601391cf7e68323e392adab539e","signature":"e12e7d2db2db6cf4e2e8c86719eeaec9","impliedNodeFormat":99},"9d7a1c0676307f82773dc48ee003c51f","75214e168dea49822a6ff7a19d095f3e","1ce064041f9c19243430811d939818cf","8503cb1a6f13fe32dd8c86ecb8addd4e","ba2d157ec950064af6837b0c9b5ca75b",{"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":"84ee10666cdaf03dacb2b2872a7b57f5","impliedNodeFormat":99},{"version":"a52d60a33619ebf41549579675218844","impliedNodeFormat":99},{"version":"385fea263972232a4bcacfc3f3ac1ade","signature":"5fddd3d394ad576bdb08823963fa7648","impliedNodeFormat":99},{"version":"1734e960bfba2c015b48b9eda90c4824","signature":"5cd3eca713ebb358bbdee9ebd86c5c39","impliedNodeFormat":99},{"version":"2cb26cf8b77feeaaaea39a5ded665113","impliedNodeFormat":99},{"version":"d12f934b02b80930fae26957ad4738b6","impliedNodeFormat":99},{"version":"a0bfc511a737d8bd0bc86399299ce465","signature":"73d7ca12ec64e36b7d852bb682e49b6c","impliedNodeFormat":99},{"version":"bae2ea5cab0f79bc8f037c1c3afa8c6d","signature":"2a9257f19d6270a4654e60011346c7f2","impliedNodeFormat":99},{"version":"a70b1f108c62b87581067b6602a3c12d","signature":"407e5c2bc8aeeb90d36e1066c32c207a","impliedNodeFormat":99},{"version":"30265e1516d1dcf4c3a1e11c386afe26","signature":"e301ab977d4289eff4cde4a7413ef61a","impliedNodeFormat":99},{"version":"4f0b3daa0f1e301e5fc408c316cb179d","signature":"1c0aee6b41851e9a45a3eb49f83f240c","impliedNodeFormat":99},{"version":"29302e723f5a270b162245203b78357f","signature":"e9f70542c87d6dcbb341b6209f1e3ca1","impliedNodeFormat":99},{"version":"1c302ecd0bae8621b933c0807e762815","signature":"55430910f8ec9a81c21f7e757654c3f6","impliedNodeFormat":99},{"version":"6eebc6aaec3cbaf65c9676fcdc7b71f1","signature":"d89784645c747e5a67bc1363a038d4a0","impliedNodeFormat":99},{"version":"3b25a4b294c31d2c9fc5746b461a6f2b","signature":"54394cd37f7557241cac01666da6ebd1","impliedNodeFormat":99},{"version":"f19aa610319291e92f1e009825f85399","signature":"3bc9387c52d40323151c43848934a5d8","impliedNodeFormat":99},{"version":"1faedb1271cb5c1c9ef6f5cce80d7b53","signature":"5859429d968736ac8382634391724b74","impliedNodeFormat":99},{"version":"fb370402c8a22d422990a4ec699a20c1","signature":"d6fc57bef27415a4f6482d44675fadd1","impliedNodeFormat":99},{"version":"25a5d09dbb00128be3b76d2ffb0e7bee","signature":"0b69de8e2d2de4cce9fc358e333803da","impliedNodeFormat":99},{"version":"1831421db5ffa5c186283025d4eead9e","signature":"f9b13c44dc986ed44cf1d31e114753fb","impliedNodeFormat":99},{"version":"23d614433cd888e02b9f8da135101988","signature":"06bab0ad9369dcdf295310e501442b2e","impliedNodeFormat":99},{"version":"5d1aba6af7a268e786176b8ef97d42ee","signature":"abe7d9981d6018efb6b2b794f40a1607","impliedNodeFormat":99}],"fileIdsList":[[70,113,114,115,116,117,118,119,120,121,122,123,124,125,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],[70,112,114,115,116,117,118,119,120,121,122,123,124,125,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],[70,112,113,115,116,117,118,119,120,121,122,123,124,125,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],[112,113,114,115,116,117,118,119,120,121,122,123,124,125,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],[70,112,113,114,116,117,118,119,120,121,122,123,124,125,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],[70,112,113,114,115,117,118,119,120,121,122,123,124,125,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],[70,112,113,114,115,116,118,119,120,121,122,123,124,125,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],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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],[70,112,113,114,115,116,117,119,120,121,122,123,124,125,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],[70,112,113,114,115,116,117,118,120,121,122,123,124,125,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],[70,112,113,114,115,116,117,118,119,121,122,123,124,125,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],[70,112,113,114,115,116,117,118,119,120,122,123,124,125,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],[70,112,113,114,115,116,117,118,119,120,121,123,124,125,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],[70,112,113,114,115,116,117,118,119,120,121,122,124,125,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],[70,112,113,114,115,116,117,118,119,120,121,122,123,125,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],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,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],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,127,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],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,127,128,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],[70,110,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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],[70,110,112,113,114,115,116,117,118,119,120,121,122,123,124,125,127,128,129,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],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,127,128,129,130,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],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,127,128,129,130,131,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],[68,69,70,111,112,113,114,115,116,117,118,119,120,121,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],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,127,128,129,130,131,132,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],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,127,128,129,130,131,132,133,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],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,127,128,129,130,131,132,133,134,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],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,127,128,129,130,131,132,133,134,135,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],[70,112,113,114,115,116,117,118,119,120,121,122,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],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,127,128,129,130,131,132,133,134,135,136,137,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],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,127,128,129,130,131,132,133,134,135,136,137,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],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,127,128,129,130,131,132,133,134,135,136,137,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],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,127,128,129,130,131,132,133,134,135,136,137,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],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,127,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],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,127,128,129,130,131,132,133,134,135,136,137,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],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,127,128,129,130,131,132,133,134,135,136,137,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],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,127,128,129,130,131,132,133,134,135,136,137,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],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,127,128,129,130,131,132,133,134,135,136,137,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],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,127,128,129,130,131,132,133,134,135,136,137,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],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,127,128,129,130,131,132,133,134,135,136,137,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],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,127,128,129,130,131,132,133,134,135,136,137,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],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,127,128,129,130,131,132,133,134,135,136,137,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],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,127,128,129,130,131,132,133,134,135,136,137,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],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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,153,154,155,156,157,158,159,160,161,162,163,164],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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,154,155,156,157,158,159,160,161,162,163,164],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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,155,156,157,158,159,160,161,162,163,164],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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,156,157,158,159,160,161,162,163,164],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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,157,158,159,160,161,162,163,164],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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,158,159,160,161,162,163,164],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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,159,160,161,162,163,164],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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,160,161,162,163,164],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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,161,162,163,164],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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,162,163,164],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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,163,164],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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,164],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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],[66,70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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],[63,64,65,70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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],[67,70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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,170],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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,166],[70,80,84,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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],[70,80,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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],[70,75,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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],[70,77,80,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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],[70,75,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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],[70,72,73,74,76,79,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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],[70,80,88,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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],[70,73,78,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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],[70,80,104,105,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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],[70,73,76,80,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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],[70,72,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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],[70,75,76,77,78,79,80,81,82,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,105,106,107,108,109,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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],[70,80,97,100,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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],[70,80,88,89,90,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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],[70,78,80,89,91,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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],[70,79,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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],[70,73,75,80,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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],[70,80,84,89,91,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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],[70,84,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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],[70,78,80,83,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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],[70,73,77,80,88,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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],[70,80,97,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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],[70,75,80,104,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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],[61,70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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,169,172,173],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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,169,171],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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,168],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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,168,177,178,179,180,181,182,183,184],[61,70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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,168,175,176,185],[67,70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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,167,168]],"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":[[112,1],[113,2],[114,3],[70,4],[115,5],[116,6],[117,7],[68,8],[118,9],[119,10],[120,11],[121,12],[122,13],[123,14],[124,15],[126,8],[125,16],[127,17],[128,18],[129,19],[111,20],[69,8],[130,21],[131,22],[132,23],[165,24],[133,25],[134,26],[135,27],[136,28],[137,29],[138,30],[139,31],[140,32],[141,33],[142,34],[143,35],[144,36],[145,37],[146,38],[147,39],[149,40],[148,41],[150,42],[151,43],[152,44],[153,45],[154,46],[155,47],[156,48],[157,49],[158,50],[159,51],[160,52],[161,53],[162,54],[163,55],[164,56],[67,57],[63,8],[64,8],[66,58],[65,8],[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],[71,8],[166,59],[171,60],[170,8],[167,61],[88,62],[99,63],[86,62],[100,8],[109,64],[78,65],[77,8],[108,66],[103,67],[107,65],[80,68],[96,69],[79,70],[106,71],[75,72],[76,67],[81,63],[82,8],[87,65],[85,63],[73,73],[110,74],[101,75],[91,76],[90,63],[92,77],[94,78],[89,79],[93,80],[104,66],[83,81],[84,82],[95,83],[74,8],[98,84],[97,63],[102,8],[72,8],[105,85],[62,86],[174,87],[172,88],[181,89],[185,90],[178,89],[183,89],[182,89],[180,89],[179,89],[177,89],[184,89],[168,8],[186,91],[175,86],[176,86],[61,8],[173,8],[169,92],[187,8]],"latestChangedDtsFile":"./worker.d.ts"}
|
|
@@ -9,8 +9,12 @@ export declare function findJSConfigUp(startDir: string): string | null;
|
|
|
9
9
|
/**
|
|
10
10
|
* Recursively scan a directory for all rslint JS/TS config files.
|
|
11
11
|
* Skips node_modules and .git directories (aligned with ESLint defaults).
|
|
12
|
-
* Uses
|
|
13
|
-
*
|
|
12
|
+
* Uses tinyglobby (fdir-backed) for fast directory traversal.
|
|
13
|
+
*
|
|
14
|
+
* tinyglobby returns POSIX-style paths even on Windows, so the result is
|
|
15
|
+
* normalized through path.normalize to match the native separator that
|
|
16
|
+
* findJSConfigUp / path.join produce. Without this, Map<configPath, ...>
|
|
17
|
+
* dedupe against findJSConfigUp results fails on Windows.
|
|
14
18
|
*/
|
|
15
19
|
export declare function findJSConfigsInDir(startDir: string): string[];
|
|
16
20
|
/**
|
|
@@ -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,OAAO,EAAE,KAAK,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AAE7D,eAAO,MAAM,eAAe,UAK3B,CAAC;AAEF,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;;;;;;;;;GASG;AACH,wBAAgB,kBAAkB,CAAC,QAAQ,EAAE,MAAM,GAAG,MAAM,EAAE,CAQ7D;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;AAsGD,MAAM,WAAW,WAAW;IAC1B,eAAe,EAAE,MAAM,CAAC;IACxB,OAAO,EAAE,iBAAiB,EAAE,CAAC;CAC9B;AAED;;;;;;;;;GASG;AACH,wBAAgB,4BAA4B,CAC1C,aAAa,EAAE,WAAW,EAAE,GAC3B,WAAW,EAAE,CAmDf"}
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import fs from 'node:fs';
|
|
2
2
|
import path from 'node:path';
|
|
3
3
|
import picomatch from 'picomatch';
|
|
4
|
+
import { globSync as tinyglobbySync } from 'tinyglobby';
|
|
4
5
|
export const JS_CONFIG_FILES = [
|
|
5
6
|
'rslint.config.js',
|
|
6
7
|
'rslint.config.mjs',
|
|
7
8
|
'rslint.config.ts',
|
|
8
9
|
'rslint.config.mts',
|
|
9
10
|
];
|
|
10
|
-
const SCAN_EXCLUDE_DIRS = new Set(['node_modules', '.git']);
|
|
11
11
|
export function findJSConfig(cwd) {
|
|
12
12
|
for (const name of JS_CONFIG_FILES) {
|
|
13
13
|
const p = path.join(cwd, name);
|
|
@@ -35,44 +35,21 @@ export function findJSConfigUp(startDir) {
|
|
|
35
35
|
/**
|
|
36
36
|
* Recursively scan a directory for all rslint JS/TS config files.
|
|
37
37
|
* Skips node_modules and .git directories (aligned with ESLint defaults).
|
|
38
|
-
* Uses
|
|
39
|
-
*
|
|
38
|
+
* Uses tinyglobby (fdir-backed) for fast directory traversal.
|
|
39
|
+
*
|
|
40
|
+
* tinyglobby returns POSIX-style paths even on Windows, so the result is
|
|
41
|
+
* normalized through path.normalize to match the native separator that
|
|
42
|
+
* findJSConfigUp / path.join produce. Without this, Map<configPath, ...>
|
|
43
|
+
* dedupe against findJSConfigUp results fails on Windows.
|
|
40
44
|
*/
|
|
41
45
|
export function findJSConfigsInDir(startDir) {
|
|
42
46
|
const resolved = path.resolve(startDir);
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
exclude: (f) => SCAN_EXCLUDE_DIRS.has(path.basename(f)),
|
|
50
|
-
})
|
|
51
|
-
.map((p) => path.join(resolved, p));
|
|
52
|
-
}
|
|
53
|
-
// Fallback: recursive walk
|
|
54
|
-
const configs = [];
|
|
55
|
-
const walk = (dir) => {
|
|
56
|
-
let entries;
|
|
57
|
-
try {
|
|
58
|
-
entries = fs.readdirSync(dir, { withFileTypes: true });
|
|
59
|
-
}
|
|
60
|
-
catch {
|
|
61
|
-
return;
|
|
62
|
-
}
|
|
63
|
-
for (const entry of entries) {
|
|
64
|
-
if (entry.isDirectory()) {
|
|
65
|
-
if (SCAN_EXCLUDE_DIRS.has(entry.name))
|
|
66
|
-
continue;
|
|
67
|
-
walk(path.join(dir, entry.name));
|
|
68
|
-
}
|
|
69
|
-
else if (JS_CONFIG_FILES.includes(entry.name)) {
|
|
70
|
-
configs.push(path.join(dir, entry.name));
|
|
71
|
-
}
|
|
72
|
-
}
|
|
73
|
-
};
|
|
74
|
-
walk(resolved);
|
|
75
|
-
return configs;
|
|
47
|
+
return tinyglobbySync(['**/rslint.config.{js,mjs,ts,mts}'], {
|
|
48
|
+
cwd: resolved,
|
|
49
|
+
absolute: true,
|
|
50
|
+
dot: true,
|
|
51
|
+
ignore: ['**/node_modules/**', '**/.git/**'],
|
|
52
|
+
}).map((p) => path.normalize(p));
|
|
76
53
|
}
|
|
77
54
|
/**
|
|
78
55
|
* Discover JS/TS config files for the given targets.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rslint/core",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.2",
|
|
4
4
|
"exports": {
|
|
5
5
|
".": {
|
|
6
6
|
"@typescript/source": "./src/index.ts",
|
|
@@ -52,7 +52,7 @@
|
|
|
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.5.
|
|
55
|
+
"@rslint/api": "0.5.2"
|
|
56
56
|
},
|
|
57
57
|
"peerDependencies": {
|
|
58
58
|
"jiti": "^2.0.0"
|
|
@@ -63,15 +63,16 @@
|
|
|
63
63
|
}
|
|
64
64
|
},
|
|
65
65
|
"optionalDependencies": {
|
|
66
|
-
"@rslint/darwin-arm64": "0.5.
|
|
67
|
-
"@rslint/darwin-x64": "0.5.
|
|
68
|
-
"@rslint/
|
|
69
|
-
"@rslint/win32-
|
|
70
|
-
"@rslint/
|
|
71
|
-
"@rslint/linux-
|
|
66
|
+
"@rslint/darwin-arm64": "0.5.2",
|
|
67
|
+
"@rslint/darwin-x64": "0.5.2",
|
|
68
|
+
"@rslint/linux-x64": "0.5.2",
|
|
69
|
+
"@rslint/win32-arm64": "0.5.2",
|
|
70
|
+
"@rslint/win32-x64": "0.5.2",
|
|
71
|
+
"@rslint/linux-arm64": "0.5.2"
|
|
72
72
|
},
|
|
73
73
|
"dependencies": {
|
|
74
|
-
"picomatch": "4.0.4"
|
|
74
|
+
"picomatch": "4.0.4",
|
|
75
|
+
"tinyglobby": "0.2.15"
|
|
75
76
|
},
|
|
76
77
|
"scripts": {
|
|
77
78
|
"build:bin": "go build -v -o bin/ ../../cmd/rslint",
|