babel-preset-rsmax 1.0.1

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/CHANGELOG.md ADDED
@@ -0,0 +1,6 @@
1
+ # Change Log
2
+
3
+ All notable changes to this project will be documented in this file.
4
+ See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
+
6
+ **Note:** Version bump only for package babel-preset-rsmax
package/README.md ADDED
@@ -0,0 +1,38 @@
1
+ # babel-preset-rsmax
2
+
3
+ Babel preset for rsmax app.
4
+
5
+ ```bash
6
+ yarn add babel-preset-rsmax --dev
7
+ ```
8
+
9
+ ## Options
10
+
11
+ ### react
12
+
13
+ configure react preset. https://babeljs.io/docs/en/babel-preset-react
14
+
15
+ ```js
16
+ {
17
+ presets: [
18
+ [
19
+ 'rsmax',
20
+ {
21
+ react: {
22
+ runtime: 'classic',
23
+ },
24
+ typescript: {
25
+ allowNamespaces: true,
26
+ },
27
+ 'class-properties': {
28
+ loose: true,
29
+ },
30
+ decorators: {
31
+ legacy: true,
32
+ },
33
+ 'throw-if-namespace': false,
34
+ },
35
+ ],
36
+ ];
37
+ }
38
+ ```
package/lib/index.d.ts ADDED
@@ -0,0 +1,2 @@
1
+ declare const _default: any;
2
+ export default _default;
package/lib/index.js ADDED
@@ -0,0 +1,31 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const helper_plugin_utils_1 = require("@babel/helper-plugin-utils");
4
+ function preset(api, presetOption) {
5
+ api.assertVersion(7);
6
+ const react = typeof presetOption.react === 'undefined' ? true : presetOption.react;
7
+ const throwIfNamespace = typeof presetOption['throw-if-namespace'] === 'undefined' ? false : presetOption['throw-if-namespace'];
8
+ const targets = typeof presetOption.target === 'undefined'
9
+ ? ['chrome >= 49', 'firefox >= 64', 'ios >= 8', 'Android > 4.4']
10
+ : presetOption.target;
11
+ const presets = [[require.resolve('@babel/preset-env'), { targets }]];
12
+ if (react) {
13
+ const defaultReactOpt = { throwIfNamespace, runtime: 'automatic' };
14
+ const reactOpts = typeof react === 'boolean' ? defaultReactOpt : Object.assign(defaultReactOpt, react);
15
+ presets.push([require.resolve('@babel/preset-react'), reactOpts]);
16
+ }
17
+ return {
18
+ presets,
19
+ plugins: [
20
+ require.resolve('babel-plugin-macros'),
21
+ [
22
+ require.resolve('babel-plugin-auto-import'),
23
+ {
24
+ declarations: [{ default: 'regeneratorRuntime', path: 'regenerator-runtime' }],
25
+ },
26
+ ],
27
+ require.resolve('@rsmax/babel-plugin-auto-css-modules'),
28
+ ],
29
+ };
30
+ }
31
+ exports.default = (0, helper_plugin_utils_1.declare)(preset);
package/package.json ADDED
@@ -0,0 +1,41 @@
1
+ {
2
+ "name": "babel-preset-rsmax",
3
+ "version": "1.0.1",
4
+ "description": "rsmax babel preset",
5
+ "main": "lib/index.js",
6
+ "types": "lib/index.d.ts",
7
+ "author": "Caihuanyu <eterlf41@gmail.com>",
8
+ "license": "MIT",
9
+ "private": false,
10
+ "scripts": {
11
+ "clean": "rimraf lib tsconfig.tsbuildinfo",
12
+ "prebuild": "npm run clean",
13
+ "build": "tsc"
14
+ },
15
+ "bugs": {
16
+ "url": "https://github.com/remaxjs/remax/issues"
17
+ },
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "git+https://github.com/remaxjs/remax.git"
21
+ },
22
+ "dependencies": {
23
+ "@babel/helper-plugin-utils": "^7.24.7",
24
+ "@babel/preset-env": "^7.24.7",
25
+ "@babel/preset-react": "^7.24.7",
26
+ "@rsmax/babel-plugin-auto-css-modules": "workspace:*",
27
+ "babel-plugin-auto-import": "^1.0.5",
28
+ "babel-plugin-macros": "^3.1.0",
29
+ "lodash": "^4.17.15"
30
+ },
31
+ "devDependencies": {
32
+ "@babel/core": "^7.7.4"
33
+ },
34
+ "peerDependencies": {
35
+ "@babel/core": ">=7.0.0"
36
+ },
37
+ "publishConfig": {
38
+ "access": "public"
39
+ },
40
+ "gitHead": "d2ff644810449152d124a9da76218bcd9fdfff46"
41
+ }
@@ -0,0 +1 @@
1
+ {"program":{"fileNames":["../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2020.number.d.ts","./src/index.ts","./typings/index.d.ts","../../node_modules/.pnpm/@babel+types@7.27.1/node_modules/@babel/types/lib/index.d.ts","../../node_modules/.pnpm/@types+babel__generator@7.27.0/node_modules/@types/babel__generator/index.d.ts","../../node_modules/.pnpm/@babel+parser@7.27.2/node_modules/@babel/parser/typings/babel-parser.d.ts","../../node_modules/.pnpm/@types+babel__template@7.4.4/node_modules/@types/babel__template/index.d.ts","../../node_modules/.pnpm/@types+babel__traverse@7.20.7/node_modules/@types/babel__traverse/index.d.ts","../../node_modules/.pnpm/@types+babel__core@7.20.5/node_modules/@types/babel__core/index.d.ts","../../node_modules/.pnpm/@types+prettier@2.7.3/node_modules/@types/prettier/index.d.ts","../../node_modules/.pnpm/@types+babel-plugin-tester@9.0.10/node_modules/@types/babel-plugin-tester/index.d.ts","../../node_modules/.pnpm/@types+estree@1.0.7/node_modules/@types/estree/index.d.ts","../../node_modules/.pnpm/@types+json-schema@7.0.15/node_modules/@types/json-schema/index.d.ts","../../node_modules/.pnpm/@types+eslint@9.6.1/node_modules/@types/eslint/use-at-your-own-risk.d.ts","../../node_modules/.pnpm/@types+eslint@9.6.1/node_modules/@types/eslint/index.d.ts","../../node_modules/.pnpm/@types+eslint-scope@3.7.7/node_modules/@types/eslint-scope/index.d.ts","../../node_modules/.pnpm/@types+node@18.19.100/node_modules/@types/node/compatibility/disposable.d.ts","../../node_modules/.pnpm/@types+node@18.19.100/node_modules/@types/node/compatibility/indexable.d.ts","../../node_modules/.pnpm/@types+node@18.19.100/node_modules/@types/node/compatibility/iterators.d.ts","../../node_modules/.pnpm/@types+node@18.19.100/node_modules/@types/node/compatibility/index.d.ts","../../node_modules/.pnpm/@types+node@18.19.100/node_modules/@types/node/ts5.6/globals.typedarray.d.ts","../../node_modules/.pnpm/@types+node@18.19.100/node_modules/@types/node/ts5.6/buffer.buffer.d.ts","../../node_modules/.pnpm/buffer@5.7.1/node_modules/buffer/index.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/header.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/readable.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/file.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/fetch.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/formdata.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/connector.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/client.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/errors.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/dispatcher.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/global-dispatcher.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/global-origin.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/pool-stats.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/pool.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/handlers.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/balanced-pool.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/agent.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-interceptor.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-agent.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-client.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-pool.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-errors.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/proxy-agent.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/api.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/cookies.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/patch.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/filereader.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/diagnostics-channel.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/websocket.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/content-type.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/cache.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/interceptors.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/index.d.ts","../../node_modules/.pnpm/@types+node@18.19.100/node_modules/@types/node/globals.d.ts","../../node_modules/.pnpm/@types+node@18.19.100/node_modules/@types/node/assert.d.ts","../../node_modules/.pnpm/@types+node@18.19.100/node_modules/@types/node/assert/strict.d.ts","../../node_modules/.pnpm/@types+node@18.19.100/node_modules/@types/node/async_hooks.d.ts","../../node_modules/.pnpm/@types+node@18.19.100/node_modules/@types/node/buffer.d.ts","../../node_modules/.pnpm/@types+node@18.19.100/node_modules/@types/node/child_process.d.ts","../../node_modules/.pnpm/@types+node@18.19.100/node_modules/@types/node/cluster.d.ts","../../node_modules/.pnpm/@types+node@18.19.100/node_modules/@types/node/console.d.ts","../../node_modules/.pnpm/@types+node@18.19.100/node_modules/@types/node/constants.d.ts","../../node_modules/.pnpm/@types+node@18.19.100/node_modules/@types/node/crypto.d.ts","../../node_modules/.pnpm/@types+node@18.19.100/node_modules/@types/node/dgram.d.ts","../../node_modules/.pnpm/@types+node@18.19.100/node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/.pnpm/@types+node@18.19.100/node_modules/@types/node/dns.d.ts","../../node_modules/.pnpm/@types+node@18.19.100/node_modules/@types/node/dns/promises.d.ts","../../node_modules/.pnpm/@types+node@18.19.100/node_modules/@types/node/domain.d.ts","../../node_modules/.pnpm/@types+node@18.19.100/node_modules/@types/node/dom-events.d.ts","../../node_modules/.pnpm/@types+node@18.19.100/node_modules/@types/node/events.d.ts","../../node_modules/.pnpm/@types+node@18.19.100/node_modules/@types/node/fs.d.ts","../../node_modules/.pnpm/@types+node@18.19.100/node_modules/@types/node/fs/promises.d.ts","../../node_modules/.pnpm/@types+node@18.19.100/node_modules/@types/node/http.d.ts","../../node_modules/.pnpm/@types+node@18.19.100/node_modules/@types/node/http2.d.ts","../../node_modules/.pnpm/@types+node@18.19.100/node_modules/@types/node/https.d.ts","../../node_modules/.pnpm/@types+node@18.19.100/node_modules/@types/node/inspector.d.ts","../../node_modules/.pnpm/@types+node@18.19.100/node_modules/@types/node/module.d.ts","../../node_modules/.pnpm/@types+node@18.19.100/node_modules/@types/node/net.d.ts","../../node_modules/.pnpm/@types+node@18.19.100/node_modules/@types/node/os.d.ts","../../node_modules/.pnpm/@types+node@18.19.100/node_modules/@types/node/path.d.ts","../../node_modules/.pnpm/@types+node@18.19.100/node_modules/@types/node/perf_hooks.d.ts","../../node_modules/.pnpm/@types+node@18.19.100/node_modules/@types/node/process.d.ts","../../node_modules/.pnpm/@types+node@18.19.100/node_modules/@types/node/punycode.d.ts","../../node_modules/.pnpm/@types+node@18.19.100/node_modules/@types/node/querystring.d.ts","../../node_modules/.pnpm/@types+node@18.19.100/node_modules/@types/node/readline.d.ts","../../node_modules/.pnpm/@types+node@18.19.100/node_modules/@types/node/readline/promises.d.ts","../../node_modules/.pnpm/@types+node@18.19.100/node_modules/@types/node/repl.d.ts","../../node_modules/.pnpm/@types+node@18.19.100/node_modules/@types/node/stream.d.ts","../../node_modules/.pnpm/@types+node@18.19.100/node_modules/@types/node/stream/promises.d.ts","../../node_modules/.pnpm/@types+node@18.19.100/node_modules/@types/node/stream/consumers.d.ts","../../node_modules/.pnpm/@types+node@18.19.100/node_modules/@types/node/stream/web.d.ts","../../node_modules/.pnpm/@types+node@18.19.100/node_modules/@types/node/string_decoder.d.ts","../../node_modules/.pnpm/@types+node@18.19.100/node_modules/@types/node/test.d.ts","../../node_modules/.pnpm/@types+node@18.19.100/node_modules/@types/node/timers.d.ts","../../node_modules/.pnpm/@types+node@18.19.100/node_modules/@types/node/timers/promises.d.ts","../../node_modules/.pnpm/@types+node@18.19.100/node_modules/@types/node/tls.d.ts","../../node_modules/.pnpm/@types+node@18.19.100/node_modules/@types/node/trace_events.d.ts","../../node_modules/.pnpm/@types+node@18.19.100/node_modules/@types/node/tty.d.ts","../../node_modules/.pnpm/@types+node@18.19.100/node_modules/@types/node/url.d.ts","../../node_modules/.pnpm/@types+node@18.19.100/node_modules/@types/node/util.d.ts","../../node_modules/.pnpm/@types+node@18.19.100/node_modules/@types/node/v8.d.ts","../../node_modules/.pnpm/@types+node@18.19.100/node_modules/@types/node/vm.d.ts","../../node_modules/.pnpm/@types+node@18.19.100/node_modules/@types/node/wasi.d.ts","../../node_modules/.pnpm/@types+node@18.19.100/node_modules/@types/node/worker_threads.d.ts","../../node_modules/.pnpm/@types+node@18.19.100/node_modules/@types/node/zlib.d.ts","../../node_modules/.pnpm/@types+node@18.19.100/node_modules/@types/node/ts5.6/index.d.ts","../../node_modules/.pnpm/@types+mime@1.3.5/node_modules/@types/mime/index.d.ts","../../node_modules/.pnpm/@types+send@0.17.4/node_modules/@types/send/index.d.ts","../../node_modules/.pnpm/@types+qs@6.9.18/node_modules/@types/qs/index.d.ts","../../node_modules/.pnpm/@types+range-parser@1.2.7/node_modules/@types/range-parser/index.d.ts","../../node_modules/.pnpm/@types+express-serve-static-core@4.19.6/node_modules/@types/express-serve-static-core/index.d.ts","../../node_modules/.pnpm/@types+http-errors@2.0.4/node_modules/@types/http-errors/index.d.ts","../../node_modules/.pnpm/@types+serve-static@1.15.7/node_modules/@types/serve-static/index.d.ts","../../node_modules/.pnpm/@types+connect@3.4.38/node_modules/@types/connect/index.d.ts","../../node_modules/.pnpm/@types+body-parser@1.19.5/node_modules/@types/body-parser/index.d.ts","../../node_modules/.pnpm/@types+express@4.17.21/node_modules/@types/express/index.d.ts","../../node_modules/.pnpm/chalk@4.1.2/node_modules/chalk/index.d.ts","../../node_modules/.pnpm/jest-diff@27.5.1/node_modules/jest-diff/build/cleanupsemantic.d.ts","../../node_modules/.pnpm/pretty-format@27.5.1/node_modules/pretty-format/build/types.d.ts","../../node_modules/.pnpm/pretty-format@27.5.1/node_modules/pretty-format/build/index.d.ts","../../node_modules/.pnpm/jest-diff@27.5.1/node_modules/jest-diff/build/types.d.ts","../../node_modules/.pnpm/jest-diff@27.5.1/node_modules/jest-diff/build/difflines.d.ts","../../node_modules/.pnpm/jest-diff@27.5.1/node_modules/jest-diff/build/printdiffs.d.ts","../../node_modules/.pnpm/jest-diff@27.5.1/node_modules/jest-diff/build/index.d.ts","../../node_modules/.pnpm/jest-matcher-utils@27.5.1/node_modules/jest-matcher-utils/build/index.d.ts","../../node_modules/.pnpm/@types+jest@27.5.2/node_modules/@types/jest/index.d.ts","../../node_modules/.pnpm/@types+lodash@4.17.16/node_modules/@types/lodash/common/common.d.ts","../../node_modules/.pnpm/@types+lodash@4.17.16/node_modules/@types/lodash/common/array.d.ts","../../node_modules/.pnpm/@types+lodash@4.17.16/node_modules/@types/lodash/common/collection.d.ts","../../node_modules/.pnpm/@types+lodash@4.17.16/node_modules/@types/lodash/common/date.d.ts","../../node_modules/.pnpm/@types+lodash@4.17.16/node_modules/@types/lodash/common/function.d.ts","../../node_modules/.pnpm/@types+lodash@4.17.16/node_modules/@types/lodash/common/lang.d.ts","../../node_modules/.pnpm/@types+lodash@4.17.16/node_modules/@types/lodash/common/math.d.ts","../../node_modules/.pnpm/@types+lodash@4.17.16/node_modules/@types/lodash/common/number.d.ts","../../node_modules/.pnpm/@types+lodash@4.17.16/node_modules/@types/lodash/common/object.d.ts","../../node_modules/.pnpm/@types+lodash@4.17.16/node_modules/@types/lodash/common/seq.d.ts","../../node_modules/.pnpm/@types+lodash@4.17.16/node_modules/@types/lodash/common/string.d.ts","../../node_modules/.pnpm/@types+lodash@4.17.16/node_modules/@types/lodash/common/util.d.ts","../../node_modules/.pnpm/@types+lodash@4.17.16/node_modules/@types/lodash/index.d.ts","../../node_modules/.pnpm/@types+react@18.3.21/node_modules/@types/react/ts5.0/global.d.ts","../../node_modules/.pnpm/csstype@3.1.3/node_modules/csstype/index.d.ts","../../node_modules/.pnpm/@types+prop-types@15.7.14/node_modules/@types/prop-types/index.d.ts","../../node_modules/.pnpm/@types+react@18.3.21/node_modules/@types/react/ts5.0/index.d.ts","../../node_modules/.pnpm/@types+react-dom@18.3.7_@types+react@18.3.21/node_modules/@types/react-dom/index.d.ts","../../node_modules/.pnpm/@types+react-test-renderer@18.3.1/node_modules/@types/react-test-renderer/index.d.ts","../../node_modules/.pnpm/@types+yargs-parser@21.0.3/node_modules/@types/yargs-parser/index.d.ts","../../node_modules/.pnpm/@types+yargs@15.0.19/node_modules/@types/yargs/index.d.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"f1866eda3bc0365e3630ca5a6dcb0b0aa2be2bebe2939e1ea8e4fb9501e3e91d","signature":"46a0b34e1264c4d25ca6646ff0e6cfaa7275ea1ae5a6bc23d4dfd84edf2f2b2e"},"3dbaf4a764c3ddf08165a2eaceb6f93f9a5652dc859699050a61fa85bab628d7","d88b3dc8b7055665059ea06ffafce9467fc4bdfa7cb2d7a6f4262556bb482b0d","b6d03c9cfe2cf0ba4c673c209fcd7c46c815b2619fd2aad59fc4229aaef2ed43","32ddc6ad753ae79571bbf28cebff7a383bf7f562ac5ef5d25c94ef7f71609d49","670a76db379b27c8ff42f1ba927828a22862e2ab0b0908e38b671f0e912cc5ed","81df92841a7a12d551fcbc7e4e83dbb7d54e0c73f33a82162d13e9ae89700079","069bebfee29864e3955378107e243508b163e77ab10de6a5ee03ae06939f0bb9","d88a5e779faf033be3d52142a04fbe1cb96009868e3bbdd296b2bc6c59e06c0e","f4140e21fc53a26323539522986a65253546cf90f724914a4d6d6c8f0239c2ea","e2b48abff5a8adc6bb1cd13a702b9ef05e6045a98e7cfa95a8779b53b6d0e69d","f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","a4a39b5714adfcadd3bbea6698ca2e942606d833bde62ad5fb6ec55f5e438ff8","bbc1d029093135d7d9bfa4b38cbf8761db505026cc458b5e9c8b74f4000e5e75","1f68ab0e055994eb337b67aa87d2a15e0200951e9664959b3866ee6f6b11a0fe",{"version":"6c7176368037af28cb72f2392010fa1cef295d6d6744bca8cfb54985f3a18c3e","affectsGlobalScope":true},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true},{"version":"437e20f2ba32abaeb7985e0afe0002de1917bc74e949ba585e49feba65da6ca1","affectsGlobalScope":true},"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a",{"version":"613b21ccdf3be6329d56e6caa13b258c842edf8377be7bc9f014ed14cdcfc308","affectsGlobalScope":true},{"version":"d2662405c15ec112ebc0c3ec787edb82d58d6acb1a9d109317d7bf9cff9d09a7","affectsGlobalScope":true},"8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","7180c03fd3cb6e22f911ce9ba0f8a7008b1a6ddbe88ccf16a9c8140ef9ac1686","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","54cb85a47d760da1c13c00add10d26b5118280d44d58e6908d8e89abbd9d7725","3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","a967bfe3ad4e62243eb604bf956101e4c740f5921277c60debaf325c1320bf88","e9775e97ac4877aebf963a0289c81abe76d1ec9a2a7778dbe637e5151f25c5f3","471e1da5a78350bc55ef8cef24eb3aca6174143c281b8b214ca2beda51f5e04a","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","db3435f3525cd785bf21ec6769bf8da7e8a776be1a99e2e7efb5f244a2ef5fee","c3b170c45fc031db31f782e612adf7314b167e60439d304b49e704010e7bafe5","40383ebef22b943d503c6ce2cb2e060282936b952a01bea5f9f493d5fb487cc7","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","33203609eba548914dc83ddf6cadbc0bcb6e8ef89f6d648ca0908ae887f9fcc5","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","9f0a92164925aa37d4a5d9dd3e0134cff8177208dba55fd2310cd74beea40ee2","8bfdb79bf1a9d435ec48d9372dc93291161f152c0865b81fc0b2694aedb4578d","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","4a0c3504813a3289f7fb1115db13967c8e004aa8e4f8a9021b95285502221bd1",{"version":"1433ccafba1ab975f1fcd3fabac5290c56fe89397f64447207e62e5df634bb4c","affectsGlobalScope":true},"2aadab4729954c700a3ae50977f5611a8487dc3e3dc0e7f8fcd57f40475260a8","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","75eb536b960b85f75e21490beeab53ea616646a995ad203e1af532d67a774fb6",{"version":"befbf9d2259d0266234e6a021267b15a430efd1e1fdb8ed5c662d19e7be53763","affectsGlobalScope":true},"51bb58ef3a22fdc49a2d338a852050855d1507f918d4d7fa77a68d72fee9f780","7646ad748a9ca15bf43d4c88f83cc851c67f8ec9c1186295605b59ba6bb36dcb",{"version":"cef8931bc129687165253f0642427c2a72705a4613b3ac461b9fa78c7cdaef32","affectsGlobalScope":true},"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","47b62c294beb69daa5879f052e416b02e6518f3e4541ae98adbfb27805dd6711","f8375506002c556ec412c7e2a5a9ece401079ee5d9eb2c1372e9f5377fac56c7","e3460c2b8af8bf0fdf0994388a9e642fff700dc0bcedf6c7c0b9bed4a956b3da","548d9051fd6a3544216aec47d3520ce922566c2508df667a1b351658b2e46b8d","c175f4dd3b15b38833abfe19acb8ee38c6be2f80f5964b01a4354cafb676a428","b9a4824bb83f25d6d227394db2ed99985308cf2a3a35f0d6d39aa72b15473982",{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true},{"version":"b84f34005e497dbc0c1948833818cdb38e8c01ff4f88d810b4d70aa2e6c52916","affectsGlobalScope":true},"8e8e284b3832911aeede987e4d74cf0a00f2b03896b2fd3bf924344cc0f96b3c","37d37474a969ab1b91fc332eb6a375885dfd25279624dfa84dea48c9aedf4472","3210b45e363a2cbd501d5e9beaed94e31f2b642076c809a52bf0c0743aa61c4d","6b3c4aa0ce6eb9cf6187e61d352cd269ff0e492f333ae102dda121e76f90285c","565fda33feca88f4b5db23ba8e605da1fd28b6d63292d276bdbd2afe6cd4c490","e822320b448edce0c7ede9cbeada034c72e1f1c8c8281974817030564c63dcb1",{"version":"ebfc5ac063aa88ab26982757a8a9e6e9299306a5f9ea3e03ea5fd78c23dc5d79","affectsGlobalScope":true},"16bc7fc733bade239218d2f4351b0b53d7482c5aa917e5e12cf294c688f2e1b3","821c79b046e40d54a447bebd9307e70b86399a89980a87bbc98114411169e274","17bc38afc78d40b2f54af216c0cc31a4bd0c6897a5945fa39945dfc43260be2c",{"version":"0e6726f7ab7649f3c668f4eadb45461dcfaab2c5899dd7db1e08f8a63905eb94","affectsGlobalScope":true},{"version":"d44445141f204d5672c502a39c1124bcf1df225eba05df0d2957f79122be87b5","affectsGlobalScope":true},"de905bc5f7e7a81cb420e212b95ab5e3ab840f93e0cfa8ce879f6e7fa465d4a2","bc2ff43214898bc6d53cab92fb41b5309efec9cbb59a0650525980aee994de2b","bede3143eeddca3b8ec3592b09d7eb02042f9e195251040c5146eac09b173236","64a40cf4ec8a7a29db2b4bc35f042e5be8537c4be316e5221f40f30ca8ed7051","294c082d609e6523520290db4f1d54114ebc83643fb42abd965be5bcc5d9416b","5a64238d944ada60d4bec0f91ba970a064618ae3795cff27bb163c84b811284a","37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","125d792ec6c0c0f657d758055c494301cc5fdb327d9d9d5960b3f129aff76093",{"version":"63c3208a57f10a4f89944c80a6cdb31faff343e41a2d3e06831c621788969fa7","affectsGlobalScope":true},"b85151402164ab7cb665e58df5c1a29aa25ea4ed3a367f84a15589e7d7a9c8ca",{"version":"5d8cd11d44a41a6966a04e627d38efce8d214edb36daf494153ec15b2b95eee2","affectsGlobalScope":true},{"version":"bc6cb10764a82f3025c0f4822b8ad711c16d1a5c75789be2d188d553b69b2d48","affectsGlobalScope":true},"41d510caf7ed692923cb6ef5932dc9cf1ed0f57de8eb518c5bab8358a21af674","2751c5a6b9054b61c9b03b3770b2d39b1327564672b63e3485ac03ffeb28b4f6","dc058956a93388aab38307b7b3b9b6379e1021e73a244aab6ac9427dc3a252a7","f33302cf240672359992c356f2005d395b559e176196d03f31a28cc7b01e69bc",{"version":"3ce25041ff6ae06c08fcaccd5fcd9baf4ca6e80e6cb5a922773a1985672e74c2","affectsGlobalScope":true},{"version":"652c0de14329a834ff06af6ad44670fac35849654a464fd9ae36edb92a362c12","affectsGlobalScope":true},"3b1e178016d3fc554505ae087c249b205b1c50624d482c542be9d4682bab81fc","dae82763de98657d13112532b6f88fbf4c401d4656c4588a0cd2a95e7b35272b","cf45d0510b661f1da461479851ff902f188edb111777c37055eff12fa986a23a",{"version":"cb41c174db409193c4b26e1e02b39a80f3050318a6af120cc304323f29e1ec1b","affectsGlobalScope":true},"37bef1064b7d015aeaa7c0716fe23a0b3844abe2c0a3df7144153ca8445fe0da","75bd411256302c183207051fd198b4e0dbab45d28a6daf04d3ad61f70a2c8e90","d3f2d715f57df3f04bf7b16dde01dec10366f64fce44503c92b8f78f614c1769","b78cd10245a90e27e62d0558564f5d9a16576294eee724a59ae21b91f9269e4a","936eb43a381712a8ec1249f2afc819f6fc7ca68f10dfec71762b428dfdc53bf1","2f5747b1508ccf83fad0c251ba1e5da2f5a30b78b09ffa1cfaf633045160afed",{"version":"a45c25e77c911c1f2a04cade78f6f42b4d7d896a3882d4e226efd3a3fcd5f2c4","affectsGlobalScope":true},"b71c603a539078a5e3a039b20f2b0a0d1708967530cf97dec8850a9ca45baa2b","0e13570a7e86c6d83dd92e81758a930f63747483e2cd34ef36fcdb47d1f9726a","104c67f0da1bdf0d94865419247e20eded83ce7f9911a1aa75fc675c077ca66e","cc0d0b339f31ce0ab3b7a5b714d8e578ce698f1e13d7f8c60bfb766baeb1d35c","5c45abf1e13e4463eacfd5dedda06855da8748a6a6cb3334f582b52e219acc04","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","462bccdf75fcafc1ae8c30400c9425e1a4681db5d605d1a0edb4f990a54d8094","5923d8facbac6ecf7c84739a5c701a57af94a6f6648d6229a6c768cf28f0f8cb","7adecb2c3238794c378d336a8182d4c3dd2c4fa6fa1785e2797a3db550edea62","dc12dc0e5aa06f4e1a7692149b78f89116af823b9e1f1e4eae140cd3e0e674e6","1bfc6565b90c8771615cd8cfcf9b36efc0275e5e83ac7d9181307e96eb495161","8a8a96898906f065f296665e411f51010b51372fa260d5373bf9f64356703190","7f82ef88bdb67d9a850dd1c7cd2d690f33e0f0acd208e3c9eba086f3670d4f73",{"version":"ccfd8774cd9b929f63ff7dcf657977eb0652e3547f1fcac1b3a1dc5db22d4d58","affectsGlobalScope":true},"7220461ab7f6d600b313ce621346c315c3a0ebc65b5c6f268488c5c55b68d319","f90d4c1ae3af9afb35920b984ba3e41bdd43f0dc7bae890b89fbd52b978f0cac","fcf79300e5257a23ed3bacaa6861d7c645139c6f7ece134d15e6669447e5e6db","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","aa2c18a1b5a086bbcaae10a4efba409cc95ba7287d8cf8f2591b53704fea3dea","b88749bdb18fc1398370e33aa72bc4f88274118f4960e61ce26605f9b33c5ba2","0aaef8cded245bf5036a7a40b65622dd6c4da71f7a35343112edbe112b348a1e","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","a873c50d3e47c21aa09fbe1e2023d9a44efb07cc0cb8c72f418bf301b0771fd3","7c14ccd2eaa82619fffc1bfa877eb68a012e9fb723d07ee98db451fadb618906","49c36529ee09ea9ce19525af5bb84985ea8e782cb7ee8c493d9e36d027a3d019","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9","4f6a12044ee6f458db11964153830abbc499e73d065c51c329ec97407f4b13dd",{"version":"36a2e4c9a67439aca5f91bb304611d5ae6e20d420503e96c230cf8fcdc948d94","affectsGlobalScope":true},"8a8eb4ebffd85e589a1cc7c178e291626c359543403d58c9cd22b81fab5b1fb9","65ff5a0aefd7817a03c1ad04fee85c9cdd3ec415cc3c9efec85d8008d4d5e4ee",{"version":"46cb85a570b8a0e6205fe0598ec5892e48c6eb0048345eb2bb8f3bc8b8b7358c","affectsGlobalScope":true},"17ed71200119e86ccef2d96b73b02ce8854b76ad6bd21b5021d4269bec527b5f","a370e617fd7ec5ff8c99f3582001f7c9ebf03e3c5be4113d3a504d321aff48fd","bae8d023ef6b23df7da26f51cea44321f95817c190342a36882e93b80d07a960","ae271d475b632ce7b03fea6d9cf6da72439e57a109672671cbc79f54e1386938"],"options":{"composite":true,"declaration":true,"esModuleInterop":true,"module":1,"noImplicitAny":true,"noUnusedLocals":true,"outDir":"./lib","rootDir":"./src","skipLibCheck":true,"strict":true,"target":4},"fileIdsList":[[43,61,99],[61,99],[48,49,61,99],[43,44,45,46,47,61,99],[43,45,61,99],[61,99,114,147,155],[61,99,114,147],[51,54,61,99],[51,52,53,61,99],[54,61,99],[61,99,111,114,147,149,150,151],[61,99,150,152,154,156],[61,99,161,166],[61,99,168,170,171,172,173,174,175,176,177,178,179,180],[61,99,168,169,171,172,173,174,175,176,177,178,179,180],[61,99,169,170,171,172,173,174,175,176,177,178,179,180],[61,99,168,169,170,172,173,174,175,176,177,178,179,180],[61,99,168,169,170,171,173,174,175,176,177,178,179,180],[61,99,168,169,170,171,172,174,175,176,177,178,179,180],[61,99,168,169,170,171,172,173,175,176,177,178,179,180],[61,99,168,169,170,171,172,173,174,176,177,178,179,180],[61,99,168,169,170,171,172,173,174,175,177,178,179,180],[61,99,168,169,170,171,172,173,174,175,176,178,179,180],[61,99,168,169,170,171,172,173,174,175,176,177,179,180],[61,99,168,169,170,171,172,173,174,175,176,177,178,180],[61,99,168,169,170,171,172,173,174,175,176,177,178,179],[61,96,99],[61,98,99],[61,99,104,132],[61,99,100,111,112,119,129,140],[61,99,100,101,111,119],[56,57,58,61,99],[61,99,102,141],[61,99,103,104,112,120],[61,99,104,129,137],[61,99,105,107,111,119],[61,98,99,106],[61,99,107,108],[61,99,111],[61,99,109,111],[61,98,99,111],[61,99,111,112,113,129,140],[61,99,111,112,113,126,129,132],[61,94,99,145],[61,99,107,111,114,119,129,140],[61,99,111,112,114,115,119,129,137,140],[61,99,114,116,129,137,140],[61,99,111,117],[61,99,118,140,145],[61,99,107,111,119,129],[61,99,120],[61,99,121],[61,98,99,122],[61,99,123,139,145],[61,99,124],[61,99,125],[61,99,111,126,127],[61,99,126,128,141,143],[61,99,111,129,130,132],[61,99,131,132],[61,99,129,130],[61,99,132],[61,99,133],[61,99,129],[61,99,111,135,136],[61,99,135,136],[61,99,104,119,129,137],[61,99,138],[99],[59,60,61,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,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],[61,99,119,139],[61,99,114,125,140],[61,99,104,141],[61,99,129,142],[61,99,118,143],[61,99,144],[61,99,104,111,113,122,129,140,143,145],[61,99,129,146],[61,99,184],[61,99,181,182,183],[61,99,112,129,147,148],[61,99,114,147,149,153],[61,99,187],[61,99,159,162],[61,99,159,162,163,164],[61,99,161],[61,99,158,165],[61,99,160],[61,71,75,99,140],[61,71,99,129,140],[61,66,99],[61,68,71,99,137,140],[61,99,119,137],[61,99,147],[61,66,99,147],[61,68,71,99,119,140],[61,63,64,67,70,99,111,129,140],[61,63,69,99],[61,67,71,99,132,140,147],[61,87,99,147],[61,65,66,99,147],[61,71,99],[61,65,66,67,68,69,70,71,72,73,75,76,77,78,79,80,81,82,83,84,85,86,88,89,90,91,92,93,99],[61,71,78,79,99],[61,69,71,79,80,99],[61,70,99],[61,63,66,71,99],[61,71,75,79,80,99],[61,75,99],[61,69,71,74,99,140],[61,63,68,69,71,75,78,99],[61,66,71,87,99,145,147],[42,61,99]],"referencedMap":[[45,1],[43,2],[50,3],[48,4],[44,1],[46,5],[47,1],[156,6],[155,7],[55,8],[54,9],[53,10],[51,2],[152,11],[157,12],[153,2],[167,13],[52,2],[169,14],[170,15],[168,16],[171,17],[172,18],[173,19],[174,20],[175,21],[176,22],[177,23],[178,24],[179,25],[180,26],[148,2],[96,27],[97,27],[98,28],[99,29],[100,30],[101,31],[56,2],[59,32],[57,2],[58,2],[102,33],[103,34],[104,35],[105,36],[106,37],[107,38],[108,38],[110,39],[109,40],[111,41],[112,42],[113,43],[95,44],[114,45],[115,46],[116,47],[117,48],[118,49],[119,50],[120,51],[121,52],[122,53],[123,54],[124,55],[125,56],[126,57],[127,57],[128,58],[129,59],[131,60],[130,61],[132,62],[133,63],[134,64],[135,65],[136,66],[137,67],[138,68],[61,69],[60,2],[147,70],[139,71],[140,72],[141,73],[142,74],[143,75],[144,76],[145,77],[146,78],[49,2],[183,2],[150,2],[151,2],[185,79],[186,79],[181,2],[184,80],[149,81],[154,82],[187,2],[188,83],[62,2],[158,2],[182,2],[159,2],[163,84],[165,85],[164,84],[162,86],[166,87],[161,88],[160,2],[9,2],[8,2],[2,2],[10,2],[11,2],[12,2],[13,2],[14,2],[15,2],[16,2],[17,2],[3,2],[4,2],[21,2],[18,2],[19,2],[20,2],[22,2],[23,2],[24,2],[5,2],[25,2],[26,2],[27,2],[28,2],[6,2],[32,2],[29,2],[30,2],[31,2],[33,2],[7,2],[34,2],[39,2],[40,2],[35,2],[36,2],[37,2],[38,2],[1,2],[78,89],[85,90],[77,89],[92,91],[69,92],[68,93],[91,94],[86,95],[89,96],[71,97],[70,98],[66,99],[65,94],[88,100],[67,101],[72,102],[73,2],[76,102],[63,2],[94,103],[93,102],[80,104],[81,105],[83,106],[79,107],[82,108],[87,94],[74,109],[75,110],[84,111],[64,64],[90,112],[41,113],[42,2]],"exportedModulesMap":[[45,1],[43,2],[50,3],[48,4],[44,1],[46,5],[47,1],[156,6],[155,7],[55,8],[54,9],[53,10],[51,2],[152,11],[157,12],[153,2],[167,13],[52,2],[169,14],[170,15],[168,16],[171,17],[172,18],[173,19],[174,20],[175,21],[176,22],[177,23],[178,24],[179,25],[180,26],[148,2],[96,27],[97,27],[98,28],[99,29],[100,30],[101,31],[56,2],[59,32],[57,2],[58,2],[102,33],[103,34],[104,35],[105,36],[106,37],[107,38],[108,38],[110,39],[109,40],[111,41],[112,42],[113,43],[95,44],[114,45],[115,46],[116,47],[117,48],[118,49],[119,50],[120,51],[121,52],[122,53],[123,54],[124,55],[125,56],[126,57],[127,57],[128,58],[129,59],[131,60],[130,61],[132,62],[133,63],[134,64],[135,65],[136,66],[137,67],[138,68],[61,69],[60,2],[147,70],[139,71],[140,72],[141,73],[142,74],[143,75],[144,76],[145,77],[146,78],[49,2],[183,2],[150,2],[151,2],[185,79],[186,79],[181,2],[184,80],[149,81],[154,82],[187,2],[188,83],[62,2],[158,2],[182,2],[159,2],[163,84],[165,85],[164,84],[162,86],[166,87],[161,88],[160,2],[9,2],[8,2],[2,2],[10,2],[11,2],[12,2],[13,2],[14,2],[15,2],[16,2],[17,2],[3,2],[4,2],[21,2],[18,2],[19,2],[20,2],[22,2],[23,2],[24,2],[5,2],[25,2],[26,2],[27,2],[28,2],[6,2],[32,2],[29,2],[30,2],[31,2],[33,2],[7,2],[34,2],[39,2],[40,2],[35,2],[36,2],[37,2],[38,2],[1,2],[78,89],[85,90],[77,89],[92,91],[69,92],[68,93],[91,94],[86,95],[89,96],[71,97],[70,98],[66,99],[65,94],[88,100],[67,101],[72,102],[73,2],[76,102],[63,2],[94,103],[93,102],[80,104],[81,105],[83,106],[79,107],[82,108],[87,94],[74,109],[75,110],[84,111],[64,64],[90,112],[42,2]],"semanticDiagnosticsPerFile":[45,43,50,48,44,46,47,156,155,55,54,53,51,152,157,153,167,52,169,170,168,171,172,173,174,175,176,177,178,179,180,148,96,97,98,99,100,101,56,59,57,58,102,103,104,105,106,107,108,110,109,111,112,113,95,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,131,130,132,133,134,135,136,137,138,61,60,147,139,140,141,142,143,144,145,146,49,183,150,151,185,186,181,184,149,154,187,188,62,158,182,159,163,165,164,162,166,161,160,9,8,2,10,11,12,13,14,15,16,17,3,4,21,18,19,20,22,23,24,5,25,26,27,28,6,32,29,30,31,33,7,34,39,40,35,36,37,38,1,78,85,77,92,69,68,91,86,89,71,70,66,65,88,67,72,73,76,63,94,93,80,81,83,79,82,87,74,75,84,64,90,41,42],"latestChangedDtsFile":"./lib/index.d.ts"},"version":"4.9.5"}
@@ -0,0 +1 @@
1
+ declare module '@babel/helper-plugin-utils';
@@ -0,0 +1,7 @@
1
+ import { defineConfig } from 'vitest/config';
2
+
3
+ export default defineConfig({
4
+ test: {
5
+ globals: true,
6
+ },
7
+ });