@start9labs/start-sdk 2.0.0 → 2.0.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/CHANGELOG.md +13 -1
- package/node_modules/@eslint/config-array/LICENSE +201 -0
- package/node_modules/@eslint/config-array/README.md +368 -0
- package/node_modules/@eslint/config-array/dist/cjs/index.cjs +1539 -0
- package/node_modules/@eslint/config-array/dist/cjs/index.d.cts +145 -0
- package/node_modules/@eslint/config-array/dist/cjs/std__path/posix.cjs +1336 -0
- package/node_modules/@eslint/config-array/dist/cjs/std__path/windows.cjs +1678 -0
- package/node_modules/@eslint/config-array/dist/cjs/types.cts +29 -0
- package/node_modules/@eslint/config-array/dist/esm/index.d.ts +145 -0
- package/node_modules/@eslint/config-array/dist/esm/index.js +1514 -0
- package/node_modules/@eslint/config-array/dist/esm/std__path/posix.js +1314 -0
- package/node_modules/@eslint/config-array/dist/esm/std__path/windows.js +1656 -0
- package/node_modules/@eslint/config-array/dist/esm/types.d.ts +23 -0
- package/node_modules/@eslint/config-array/dist/esm/types.ts +29 -0
- package/node_modules/@eslint/config-array/node_modules/brace-expansion/LICENSE +21 -0
- package/node_modules/@eslint/config-array/node_modules/brace-expansion/README.md +129 -0
- package/node_modules/@eslint/config-array/node_modules/brace-expansion/index.js +203 -0
- package/node_modules/@eslint/config-array/node_modules/brace-expansion/package.json +50 -0
- package/node_modules/@eslint/config-array/node_modules/minimatch/LICENSE +15 -0
- package/node_modules/@eslint/config-array/node_modules/minimatch/README.md +267 -0
- package/node_modules/@eslint/config-array/node_modules/minimatch/minimatch.js +1005 -0
- package/node_modules/@eslint/config-array/node_modules/minimatch/package.json +33 -0
- package/node_modules/@eslint/config-array/package.json +64 -0
- package/node_modules/@eslint/config-helpers/LICENSE +201 -0
- package/node_modules/@eslint/config-helpers/README.md +97 -0
- package/node_modules/@eslint/config-helpers/dist/cjs/index.cjs +588 -0
- package/node_modules/@eslint/config-helpers/dist/cjs/index.d.cts +26 -0
- package/node_modules/@eslint/config-helpers/dist/cjs/types.cts +29 -0
- package/node_modules/@eslint/config-helpers/dist/esm/index.d.ts +26 -0
- package/node_modules/@eslint/config-helpers/dist/esm/index.js +586 -0
- package/node_modules/@eslint/config-helpers/dist/esm/types.d.ts +23 -0
- package/node_modules/@eslint/config-helpers/dist/esm/types.ts +29 -0
- package/node_modules/@eslint/config-helpers/package.json +60 -0
- package/node_modules/@eslint/core/LICENSE +201 -0
- package/node_modules/@eslint/core/README.md +29 -0
- package/node_modules/@eslint/core/dist/cjs/types.d.cts +1179 -0
- package/node_modules/@eslint/core/dist/esm/types.d.ts +1179 -0
- package/node_modules/@eslint/core/package.json +49 -0
- package/node_modules/@eslint/eslintrc/LICENSE +19 -0
- package/node_modules/@eslint/eslintrc/README.md +145 -0
- package/node_modules/@eslint/eslintrc/conf/config-schema.js +79 -0
- package/node_modules/@eslint/eslintrc/conf/environments.js +215 -0
- package/node_modules/@eslint/eslintrc/dist/eslintrc-universal.cjs +1212 -0
- package/node_modules/@eslint/eslintrc/dist/eslintrc-universal.cjs.map +1 -0
- package/node_modules/@eslint/eslintrc/dist/eslintrc.cjs +4466 -0
- package/node_modules/@eslint/eslintrc/dist/eslintrc.cjs.map +1 -0
- package/node_modules/@eslint/eslintrc/dist/eslintrc.d.cts +76 -0
- package/node_modules/@eslint/eslintrc/lib/cascading-config-array-factory.js +534 -0
- package/node_modules/@eslint/eslintrc/lib/config-array/config-array.js +512 -0
- package/node_modules/@eslint/eslintrc/lib/config-array/config-dependency.js +124 -0
- package/node_modules/@eslint/eslintrc/lib/config-array/extracted-config.js +145 -0
- package/node_modules/@eslint/eslintrc/lib/config-array/ignore-pattern.js +239 -0
- package/node_modules/@eslint/eslintrc/lib/config-array/index.js +19 -0
- package/node_modules/@eslint/eslintrc/lib/config-array/override-tester.js +227 -0
- package/node_modules/@eslint/eslintrc/lib/config-array-factory.js +1162 -0
- package/node_modules/@eslint/eslintrc/lib/flat-compat.js +329 -0
- package/node_modules/@eslint/eslintrc/lib/index-universal.js +29 -0
- package/node_modules/@eslint/eslintrc/lib/index.js +58 -0
- package/node_modules/@eslint/eslintrc/lib/shared/ajv.js +191 -0
- package/node_modules/@eslint/eslintrc/lib/shared/config-ops.js +135 -0
- package/node_modules/@eslint/eslintrc/lib/shared/config-validator.js +383 -0
- package/node_modules/@eslint/eslintrc/lib/shared/deep-merge-arrays.js +58 -0
- package/node_modules/@eslint/eslintrc/lib/shared/deprecation-warnings.js +63 -0
- package/node_modules/@eslint/eslintrc/lib/shared/naming.js +96 -0
- package/node_modules/@eslint/eslintrc/lib/shared/relative-module-resolver.js +43 -0
- package/node_modules/@eslint/eslintrc/lib/shared/types.js +149 -0
- package/node_modules/@eslint/eslintrc/lib/types/index.d.ts +76 -0
- package/node_modules/@eslint/eslintrc/node_modules/argparse/LICENSE +254 -0
- package/node_modules/@eslint/eslintrc/node_modules/argparse/README.md +84 -0
- package/node_modules/@eslint/eslintrc/node_modules/argparse/argparse.js +3707 -0
- package/node_modules/@eslint/eslintrc/node_modules/argparse/lib/sub.js +67 -0
- package/node_modules/@eslint/eslintrc/node_modules/argparse/lib/textwrap.js +440 -0
- package/node_modules/@eslint/eslintrc/node_modules/argparse/package.json +31 -0
- package/node_modules/@eslint/eslintrc/node_modules/brace-expansion/LICENSE +21 -0
- package/node_modules/@eslint/eslintrc/node_modules/brace-expansion/README.md +129 -0
- package/node_modules/@eslint/eslintrc/node_modules/brace-expansion/index.js +203 -0
- package/node_modules/@eslint/eslintrc/node_modules/brace-expansion/package.json +50 -0
- package/node_modules/@eslint/eslintrc/node_modules/js-yaml/LICENSE +21 -0
- package/node_modules/@eslint/eslintrc/node_modules/js-yaml/README.md +231 -0
- package/node_modules/@eslint/eslintrc/node_modules/js-yaml/bin/js-yaml.js +117 -0
- package/node_modules/@eslint/eslintrc/node_modules/js-yaml/dist/js-yaml.js +2404 -0
- package/node_modules/@eslint/eslintrc/node_modules/js-yaml/dist/js-yaml.js.map +1 -0
- package/node_modules/@eslint/eslintrc/node_modules/js-yaml/dist/js-yaml.min.js +33 -0
- package/node_modules/@eslint/eslintrc/node_modules/js-yaml/dist/js-yaml.min.js.map +1 -0
- package/node_modules/@eslint/eslintrc/node_modules/js-yaml/dist/js-yaml.mjs +2382 -0
- package/node_modules/@eslint/eslintrc/node_modules/js-yaml/dist/js-yaml.mjs.map +1 -0
- package/node_modules/@eslint/eslintrc/node_modules/js-yaml/index.js +44 -0
- package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/common.js +50 -0
- package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/dumper.js +937 -0
- package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/exception.js +51 -0
- package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/index_vite_proxy.tmp.mjs +37 -0
- package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/loader.js +1794 -0
- package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/schema/core.js +9 -0
- package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/schema/default.js +20 -0
- package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/schema/failsafe.js +14 -0
- package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/schema/json.js +17 -0
- package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/schema.js +109 -0
- package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/snippet.js +96 -0
- package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/type/binary.js +122 -0
- package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/type/bool.js +35 -0
- package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/type/float.js +99 -0
- package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/type/int.js +142 -0
- package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/type/map.js +8 -0
- package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/type/merge.js +12 -0
- package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/type/null.js +35 -0
- package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/type/omap.js +45 -0
- package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/type/pairs.js +50 -0
- package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/type/seq.js +8 -0
- package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/type/set.js +29 -0
- package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/type/str.js +8 -0
- package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/type/timestamp.js +88 -0
- package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/type.js +66 -0
- package/node_modules/@eslint/eslintrc/node_modules/js-yaml/package.json +77 -0
- package/node_modules/@eslint/eslintrc/node_modules/minimatch/LICENSE +15 -0
- package/node_modules/@eslint/eslintrc/node_modules/minimatch/README.md +267 -0
- package/node_modules/@eslint/eslintrc/node_modules/minimatch/minimatch.js +1005 -0
- package/node_modules/@eslint/eslintrc/node_modules/minimatch/package.json +33 -0
- package/node_modules/@eslint/eslintrc/package.json +78 -0
- package/node_modules/@eslint/eslintrc/universal.js +10 -0
- package/node_modules/@eslint/js/LICENSE +19 -0
- package/node_modules/@eslint/js/README.md +103 -0
- package/node_modules/@eslint/js/package.json +36 -0
- package/node_modules/@eslint/js/src/configs/eslint-all.js +217 -0
- package/node_modules/@eslint/js/src/configs/eslint-recommended.js +79 -0
- package/node_modules/@eslint/js/src/index.js +23 -0
- package/node_modules/@eslint/js/types/index.d.ts +14 -0
- package/node_modules/@eslint/object-schema/LICENSE +201 -0
- package/node_modules/@eslint/object-schema/README.md +242 -0
- package/node_modules/@eslint/object-schema/dist/cjs/index.cjs +457 -0
- package/node_modules/@eslint/object-schema/dist/cjs/index.d.cts +125 -0
- package/node_modules/@eslint/object-schema/dist/cjs/types.cts +57 -0
- package/node_modules/@eslint/object-schema/dist/esm/index.d.ts +125 -0
- package/node_modules/@eslint/object-schema/dist/esm/index.js +454 -0
- package/node_modules/@eslint/object-schema/dist/esm/types.d.ts +40 -0
- package/node_modules/@eslint/object-schema/dist/esm/types.ts +57 -0
- package/node_modules/@eslint/object-schema/package.json +59 -0
- package/node_modules/@eslint/plugin-kit/LICENSE +201 -0
- package/node_modules/@eslint/plugin-kit/README.md +273 -0
- package/node_modules/@eslint/plugin-kit/dist/cjs/index.cjs +884 -0
- package/node_modules/@eslint/plugin-kit/dist/cjs/index.d.cts +328 -0
- package/node_modules/@eslint/plugin-kit/dist/cjs/types.cts +7 -0
- package/node_modules/@eslint/plugin-kit/dist/esm/index.d.ts +328 -0
- package/node_modules/@eslint/plugin-kit/dist/esm/index.js +879 -0
- package/node_modules/@eslint/plugin-kit/dist/esm/types.d.ts +6 -0
- package/node_modules/@eslint/plugin-kit/dist/esm/types.ts +7 -0
- package/node_modules/@eslint/plugin-kit/package.json +61 -0
- package/node_modules/@eslint-community/eslint-utils/LICENSE +21 -0
- package/node_modules/@eslint-community/eslint-utils/README.md +37 -0
- package/node_modules/@eslint-community/eslint-utils/index.d.mts +217 -0
- package/node_modules/@eslint-community/eslint-utils/index.d.ts +217 -0
- package/node_modules/@eslint-community/eslint-utils/index.js +2620 -0
- package/node_modules/@eslint-community/eslint-utils/index.js.map +1 -0
- package/node_modules/@eslint-community/eslint-utils/index.mjs +2579 -0
- package/node_modules/@eslint-community/eslint-utils/index.mjs.map +1 -0
- package/node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys/LICENSE +201 -0
- package/node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys/README.md +105 -0
- package/node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys/dist/eslint-visitor-keys.cjs +384 -0
- package/node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys/dist/eslint-visitor-keys.d.cts +27 -0
- package/node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys/dist/index.d.ts +16 -0
- package/node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys/dist/visitor-keys.d.ts +12 -0
- package/node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys/lib/index.js +65 -0
- package/node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys/lib/visitor-keys.js +315 -0
- package/node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys/package.json +74 -0
- package/node_modules/@eslint-community/eslint-utils/package.json +89 -0
- package/node_modules/@eslint-community/regexpp/LICENSE +21 -0
- package/node_modules/@eslint-community/regexpp/README.md +177 -0
- package/node_modules/@eslint-community/regexpp/index.d.ts +1163 -0
- package/node_modules/@eslint-community/regexpp/index.js +3042 -0
- package/node_modules/@eslint-community/regexpp/index.js.map +1 -0
- package/node_modules/@eslint-community/regexpp/index.mjs +3032 -0
- package/node_modules/@eslint-community/regexpp/index.mjs.map +1 -0
- package/node_modules/@eslint-community/regexpp/package.json +91 -0
- package/node_modules/@humanfs/core/LICENSE +201 -0
- package/node_modules/@humanfs/core/README.md +140 -0
- package/node_modules/@humanfs/core/dist/errors.d.ts +64 -0
- package/node_modules/@humanfs/core/dist/fsx.d.ts +193 -0
- package/node_modules/@humanfs/core/dist/hfs.d.ts +288 -0
- package/node_modules/@humanfs/core/dist/index.d.ts +3 -0
- package/node_modules/@humanfs/core/dist/path.d.ts +82 -0
- package/node_modules/@humanfs/core/package.json +54 -0
- package/node_modules/@humanfs/core/src/errors.js +105 -0
- package/node_modules/@humanfs/core/src/hfs.js +699 -0
- package/node_modules/@humanfs/core/src/index.js +8 -0
- package/node_modules/@humanfs/core/src/path.js +237 -0
- package/node_modules/@humanfs/node/LICENSE +201 -0
- package/node_modules/@humanfs/node/README.md +141 -0
- package/node_modules/@humanfs/node/dist/index.d.ts +2 -0
- package/node_modules/@humanfs/node/dist/node-fsx.d.ts +150 -0
- package/node_modules/@humanfs/node/dist/node-hfs.d.ts +176 -0
- package/node_modules/@humanfs/node/package.json +58 -0
- package/node_modules/@humanfs/node/src/index.js +7 -0
- package/node_modules/@humanfs/node/src/node-hfs.js +460 -0
- package/node_modules/@humanfs/types/CHANGELOG.md +150 -0
- package/node_modules/@humanfs/types/README.md +13 -0
- package/node_modules/@humanfs/types/package.json +42 -0
- package/node_modules/@humanfs/types/src/hfs-types.ts +192 -0
- package/node_modules/@humanfs/types/tsconfig.json +13 -0
- package/node_modules/@humanwhocodes/module-importer/LICENSE +201 -0
- package/node_modules/@humanwhocodes/module-importer/README.md +80 -0
- package/node_modules/@humanwhocodes/module-importer/dist/module-importer.cjs +22 -0
- package/node_modules/@humanwhocodes/module-importer/dist/module-importer.d.cts +27 -0
- package/node_modules/@humanwhocodes/module-importer/dist/module-importer.d.ts +2 -0
- package/node_modules/@humanwhocodes/module-importer/dist/module-importer.js +18 -0
- package/node_modules/@humanwhocodes/module-importer/package.json +65 -0
- package/node_modules/@humanwhocodes/module-importer/src/module-importer.cjs +81 -0
- package/node_modules/@humanwhocodes/module-importer/src/module-importer.js +22 -0
- package/node_modules/@humanwhocodes/retry/LICENSE +201 -0
- package/node_modules/@humanwhocodes/retry/README.md +177 -0
- package/node_modules/@humanwhocodes/retry/dist/retrier.cjs +478 -0
- package/node_modules/@humanwhocodes/retry/dist/retrier.d.cts +46 -0
- package/node_modules/@humanwhocodes/retry/dist/retrier.d.ts +46 -0
- package/node_modules/@humanwhocodes/retry/dist/retrier.js +477 -0
- package/node_modules/@humanwhocodes/retry/dist/retrier.min.js +1 -0
- package/node_modules/@humanwhocodes/retry/dist/retrier.mjs +476 -0
- package/node_modules/@humanwhocodes/retry/package.json +77 -0
- package/node_modules/@start9labs/start-core/interfaces/Host.js +1 -1
- package/node_modules/@start9labs/start-core/osBindings/AddPublicDomainRes.d.ts +4 -1
- package/node_modules/@start9labs/start-core/osBindings/BindingSetGuaWanParams.d.ts +6 -0
- package/node_modules/@start9labs/start-core/osBindings/BindingSetGuaWanParams.js +3 -0
- package/node_modules/@start9labs/start-core/osBindings/BindingSetGuaWanParams.js.map +1 -0
- package/node_modules/@start9labs/start-core/osBindings/CheckPortV6Res.d.ts +10 -0
- package/node_modules/@start9labs/start-core/osBindings/CheckPortV6Res.js +4 -0
- package/node_modules/@start9labs/start-core/osBindings/CheckPortV6Res.js.map +1 -0
- package/node_modules/@start9labs/start-core/osBindings/DerivedAddressInfo.d.ts +5 -6
- package/node_modules/@start9labs/start-core/osBindings/NetworkInterfaceInfo.d.ts +1 -1
- package/node_modules/@start9labs/start-core/osBindings/QueryDnsRes.d.ts +9 -0
- package/node_modules/@start9labs/start-core/osBindings/QueryDnsRes.js +4 -0
- package/node_modules/@start9labs/start-core/osBindings/QueryDnsRes.js.map +1 -0
- package/node_modules/@start9labs/start-core/osBindings/index.d.ts +29 -28
- package/node_modules/@start9labs/start-core/osBindings/index.js.map +1 -1
- package/node_modules/@start9labs/start-core/osBindings/tunnel/AddPinholeParams.d.ts +21 -0
- package/node_modules/@start9labs/start-core/osBindings/tunnel/AddPinholeParams.js +4 -0
- package/node_modules/@start9labs/start-core/osBindings/tunnel/AddPinholeParams.js.map +1 -0
- package/node_modules/@start9labs/start-core/osBindings/tunnel/HttpRedirectStatus.d.ts +12 -0
- package/node_modules/@start9labs/start-core/osBindings/tunnel/HttpRedirectStatus.js +4 -0
- package/node_modules/@start9labs/start-core/osBindings/tunnel/HttpRedirectStatus.js.map +1 -0
- package/node_modules/@start9labs/start-core/osBindings/tunnel/HttpRedirects.d.ts +9 -0
- package/node_modules/@start9labs/start-core/osBindings/tunnel/HttpRedirects.js +4 -0
- package/node_modules/@start9labs/start-core/osBindings/tunnel/HttpRedirects.js.map +1 -0
- package/node_modules/@start9labs/start-core/osBindings/tunnel/NetworkInterfaceInfo.d.ts +1 -1
- package/node_modules/@start9labs/start-core/osBindings/tunnel/Pinhole.d.ts +24 -0
- package/node_modules/@start9labs/start-core/osBindings/tunnel/Pinhole.js +4 -0
- package/node_modules/@start9labs/start-core/osBindings/tunnel/Pinhole.js.map +1 -0
- package/node_modules/@start9labs/start-core/osBindings/tunnel/Pinholes6.d.ts +4 -0
- package/node_modules/@start9labs/start-core/osBindings/tunnel/Pinholes6.js +3 -0
- package/node_modules/@start9labs/start-core/osBindings/tunnel/Pinholes6.js.map +1 -0
- package/node_modules/@start9labs/start-core/osBindings/tunnel/RemovePinholeParams.d.ts +4 -0
- package/node_modules/@start9labs/start-core/osBindings/tunnel/RemovePinholeParams.js +4 -0
- package/node_modules/@start9labs/start-core/osBindings/tunnel/RemovePinholeParams.js.map +1 -0
- package/node_modules/@start9labs/start-core/osBindings/tunnel/SetHttpRedirectEnabledParams.d.ts +7 -0
- package/node_modules/@start9labs/start-core/osBindings/tunnel/SetHttpRedirectEnabledParams.js +4 -0
- package/node_modules/@start9labs/start-core/osBindings/tunnel/SetHttpRedirectEnabledParams.js.map +1 -0
- package/node_modules/@start9labs/start-core/osBindings/tunnel/SetPinholeEnabledParams.d.ts +5 -0
- package/node_modules/@start9labs/start-core/osBindings/tunnel/SetPinholeEnabledParams.js +4 -0
- package/node_modules/@start9labs/start-core/osBindings/tunnel/SetPinholeEnabledParams.js.map +1 -0
- package/node_modules/@start9labs/start-core/osBindings/tunnel/SetSubnetIpv6Params.d.ts +8 -0
- package/node_modules/@start9labs/start-core/osBindings/tunnel/SetSubnetIpv6Params.js +4 -0
- package/node_modules/@start9labs/start-core/osBindings/tunnel/SetSubnetIpv6Params.js.map +1 -0
- package/node_modules/@start9labs/start-core/osBindings/tunnel/ShowConfigParams.d.ts +0 -1
- package/node_modules/@start9labs/start-core/osBindings/tunnel/TunnelDatabase.d.ts +9 -0
- package/node_modules/@start9labs/start-core/osBindings/tunnel/UpdatePinholeLabelParams.d.ts +5 -0
- package/node_modules/@start9labs/start-core/osBindings/tunnel/UpdatePinholeLabelParams.js +4 -0
- package/node_modules/@start9labs/start-core/osBindings/tunnel/UpdatePinholeLabelParams.js.map +1 -0
- package/node_modules/@start9labs/start-core/osBindings/tunnel/WgServer.d.ts +0 -6
- package/node_modules/@start9labs/start-core/osBindings/tunnel/WgSubnetConfig.d.ts +6 -0
- package/node_modules/@start9labs/start-core/osBindings/tunnel/index.d.ts +12 -3
- package/node_modules/@start9labs/start-core/package.json +3 -1
- package/node_modules/@start9labs/start-core/util/ip.d.ts +9 -0
- package/node_modules/@start9labs/start-core/util/ip.js +50 -32
- package/node_modules/@start9labs/start-core/util/ip.js.map +1 -1
- package/node_modules/@types/estree/LICENSE +21 -0
- package/node_modules/@types/estree/README.md +15 -0
- package/node_modules/@types/estree/flow.d.ts +167 -0
- package/node_modules/@types/estree/index.d.ts +694 -0
- package/node_modules/@types/estree/package.json +27 -0
- package/node_modules/@types/json-schema/LICENSE +21 -0
- package/node_modules/@types/json-schema/README.md +15 -0
- package/node_modules/@types/json-schema/index.d.ts +749 -0
- package/node_modules/@types/json-schema/package.json +40 -0
- package/node_modules/@typescript-eslint/eslint-plugin/LICENSE +21 -0
- package/node_modules/@typescript-eslint/eslint-plugin/README.md +12 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslint-recommended-raw.d.ts +10 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslint-recommended-raw.js +46 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/all.d.ts +159 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/all.js +165 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/base.d.ts +8 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/base.js +6 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/disable-type-checked.d.ts +71 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/disable-type-checked.js +73 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/eslint-recommended.d.ts +12 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/eslint-recommended.js +13 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/recommended-type-checked-only.d.ts +33 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/recommended-type-checked-only.js +39 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/recommended-type-checked.d.ts +56 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/recommended-type-checked.js +62 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/recommended.d.ts +29 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/recommended.js +35 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/strict-type-checked-only.d.ts +64 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/strict-type-checked-only.js +79 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/strict-type-checked.d.ts +98 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/strict-type-checked.js +114 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/strict.d.ts +40 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/strict.js +47 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/stylistic-type-checked-only.d.ts +15 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/stylistic-type-checked-only.js +21 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/stylistic-type-checked.d.ts +29 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/stylistic-type-checked.js +35 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/stylistic.d.ts +20 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/stylistic.js +26 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/all.d.ts +7 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/all.js +179 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/base.d.ts +8 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/base.js +17 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/disable-type-checked.d.ts +7 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/disable-type-checked.js +81 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/eslint-recommended.d.ts +9 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/eslint-recommended.js +16 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/recommended-type-checked-only.d.ts +7 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/recommended-type-checked-only.js +53 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/recommended-type-checked.d.ts +7 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/recommended-type-checked.js +76 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/recommended.d.ts +7 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/recommended.js +49 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/strict-type-checked-only.d.ts +7 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/strict-type-checked-only.js +93 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/strict-type-checked.d.ts +7 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/strict-type-checked.js +128 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/strict.d.ts +7 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/strict.js +61 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/stylistic-type-checked-only.d.ts +7 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/stylistic-type-checked-only.js +35 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/stylistic-type-checked.d.ts +7 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/stylistic-type-checked.js +49 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/stylistic.d.ts +7 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/stylistic.js +40 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/index.d.ts +1128 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/index.js +6 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/raw-plugin.d.ts +1152 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/raw-plugin.js +122 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/adjacent-overload-signatures.d.ts +4 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/adjacent-overload-signatures.js +124 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/array-type.d.ts +12 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/array-type.js +224 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/await-thenable.d.ts +6 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/await-thenable.js +228 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/ban-ts-comment.d.ts +17 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/ban-ts-comment.js +195 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/ban-tslint-comment.d.ts +4 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/ban-tslint-comment.js +53 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/class-literal-property-style.d.ts +7 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/class-literal-property-style.js +160 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/class-methods-use-this.d.ts +13 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/class-methods-use-this.js +219 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-generic-constructors.d.ts +6 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-generic-constructors.js +126 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-indexed-object-style.d.ts +7 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-indexed-object-style.js +256 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-return.d.ts +18 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-return.js +135 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-type-assertions.d.ts +14 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-type-assertions.js +256 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-type-definitions.d.ts +5 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-type-definitions.js +100 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-type-exports.d.ts +11 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-type-exports.js +335 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-type-imports.d.ts +15 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-type-imports.js +608 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/default-param-last.d.ts +4 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/default-param-last.js +68 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/dot-notation.d.ts +23 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/dot-notation.js +139 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/enum-utils/shared.d.ts +36 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/enum-utils/shared.js +121 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/explicit-function-return-type.d.ts +17 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/explicit-function-return-type.js +179 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/explicit-member-accessibility.d.ts +19 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/explicit-member-accessibility.js +299 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/explicit-module-boundary-types.d.ts +15 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/explicit-module-boundary-types.js +386 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/index.d.ts +448 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/index.js +275 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/init-declarations.d.ts +15 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/init-declarations.js +105 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/max-params.d.ts +25 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/max-params.js +72 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/member-ordering.d.ts +33 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/member-ordering.js +833 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/method-signature-style.d.ts +6 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/method-signature-style.js +186 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/enums.d.ts +79 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/enums.js +102 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/format.d.ts +2 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/format.js +89 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/index.d.ts +6 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/index.js +11 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/parse-options.d.ts +2 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/parse-options.js +69 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/schema.d.ts +2 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/schema.js +305 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/shared.d.ts +5 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/shared.js +16 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/types.d.ts +39 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/types.js +2 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/validator.d.ts +3 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/validator.js +349 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention.d.ts +8 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention.js +506 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-array-constructor.d.ts +4 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-array-constructor.js +62 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-array-delete.d.ts +6 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-array-delete.js +80 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-base-to-string.d.ts +11 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-base-to-string.js +322 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-confusing-non-null-assertion.d.ts +6 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-confusing-non-null-assertion.js +142 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-confusing-void-expression.d.ts +13 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-confusing-void-expression.js +357 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-deprecated.d.ts +11 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-deprecated.js +404 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-dupe-class-members.d.ts +14 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-dupe-class-members.js +39 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-duplicate-enum-values.d.ts +4 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-duplicate-enum-values.js +83 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-duplicate-type-constituents.d.ts +11 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-duplicate-type-constituents.js +227 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-dynamic-delete.d.ts +4 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-dynamic-delete.js +42 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-empty-function.d.ts +16 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-empty-function.js +134 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-empty-interface.d.ts +11 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-empty-interface.js +102 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-empty-object-type.d.ts +15 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-empty-object-type.js +143 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-explicit-any.d.ts +12 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-explicit-any.js +197 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-extra-non-null-assertion.d.ts +4 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-extra-non-null-assertion.js +35 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-extraneous-class.d.ts +13 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-extraneous-class.js +121 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-floating-promises.d.ts +16 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-floating-promises.js +377 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-for-in-array.d.ts +4 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-for-in-array.js +86 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-implied-eval.d.ts +4 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-implied-eval.js +152 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-import-type-side-effects.d.ts +7 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-import-type-side-effects.js +53 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-inferrable-types.d.ts +11 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-inferrable-types.js +182 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-invalid-this.d.ts +15 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-invalid-this.js +75 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-invalid-void-type.d.ts +9 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-invalid-void-type.js +210 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-loop-func.d.ts +13 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-loop-func.js +187 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-loss-of-precision.d.ts +9 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-loss-of-precision.js +35 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-magic-numbers.d.ts +29 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-magic-numbers.js +249 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-meaningless-void-operator.d.ts +10 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-meaningless-void-operator.js +102 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-misused-new.d.ts +4 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-misused-new.js +81 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-misused-promises.d.ts +21 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-misused-promises.js +765 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-misused-spread.d.ts +12 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-misused-spread.js +260 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-mixed-enums.d.ts +4 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-mixed-enums.js +200 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-namespace.d.ts +11 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-namespace.js +60 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-non-null-asserted-nullish-coalescing.d.ts +5 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-non-null-asserted-nullish-coalescing.js +73 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-non-null-asserted-optional-chain.d.ts +5 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-non-null-asserted-optional-chain.js +65 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-non-null-assertion.d.ts +6 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-non-null-assertion.js +93 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-redeclare.d.ts +12 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-redeclare.js +199 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-redundant-type-constituents.d.ts +4 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-redundant-type-constituents.js +431 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-require-imports.d.ts +11 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-require-imports.js +115 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-restricted-imports.d.ts +9 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-restricted-imports.js +243 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-restricted-types.d.ts +16 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-restricted-types.js +171 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-shadow.d.ts +16 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-shadow.js +551 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-this-alias.d.ts +11 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-this-alias.js +66 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-type-alias.d.ts +18 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-type-alias.js +268 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-boolean-literal-compare.d.ts +12 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-boolean-literal-compare.js +261 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-condition.d.ts +14 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-condition.js +689 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-parameter-property-assignment.d.ts +4 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-parameter-property-assignment.js +148 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-qualifier.d.ts +4 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-qualifier.js +156 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-template-expression.d.ts +6 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-template-expression.js +361 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-type-arguments.d.ts +5 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-type-arguments.js +202 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-type-assertion.d.ts +11 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-type-assertion.js +745 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-type-constraint.d.ts +5 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-type-constraint.js +119 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-type-conversion.d.ts +5 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-type-conversion.js +356 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-type-parameters.d.ts +5 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-type-parameters.js +422 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-argument.d.ts +5 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-argument.js +272 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-assignment.d.ts +4 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-assignment.js +322 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-call.d.ts +5 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-call.js +136 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-declaration-merging.d.ts +4 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-declaration-merging.js +54 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-enum-comparison.d.ts +5 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-enum-comparison.js +192 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-function-type.d.ts +4 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-function-type.js +45 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-member-access.d.ts +10 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-member-access.js +183 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-return.d.ts +4 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-return.js +184 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-type-assertion.d.ts +4 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-type-assertion.js +165 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-unary-minus.d.ts +6 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-unary-minus.js +78 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unused-expressions.d.ts +19 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unused-expressions.js +64 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unused-private-class-members.d.ts +6 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unused-private-class-members.js +44 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unused-vars.d.ts +24 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unused-vars.js +1035 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-use-before-define.d.ts +16 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-use-before-define.js +303 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-useless-constructor.d.ts +11 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-useless-constructor.js +57 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-useless-default-assignment.d.ts +11 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-useless-default-assignment.js +321 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-useless-empty-export.d.ts +4 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-useless-empty-export.js +70 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-var-requires.d.ts +10 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-var-requires.js +83 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-wrapper-object-types.d.ts +5 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-wrapper-object-types.js +60 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/non-nullable-type-assertion-style.d.ts +4 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/non-nullable-type-assertion-style.js +132 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/only-throw-error.d.ts +14 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/only-throw-error.js +158 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/parameter-properties.d.ts +13 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/parameter-properties.js +164 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-as-const.d.ts +5 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-as-const.js +72 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-destructuring.d.ts +19 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-destructuring.js +216 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-enum-initializers.d.ts +6 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-enum-initializers.js +62 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-find.d.ts +5 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-find.js +247 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-for-of.d.ts +5 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-for-of.js +115 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-function-type.d.ts +9 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-function-type.js +186 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-includes.d.ts +5 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-includes.js +242 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-literal-enum-member.d.ts +6 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-literal-enum-member.js +116 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-namespace-keyword.d.ts +4 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-namespace-keyword.js +42 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-nullish-coalescing.d.ts +22 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-nullish-coalescing.js +647 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-optional-chain-utils/PreferOptionalChainOptions.d.ts +11 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-optional-chain-utils/PreferOptionalChainOptions.js +2 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-optional-chain-utils/analyzeChain.d.ts +7 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-optional-chain-utils/analyzeChain.js +612 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-optional-chain-utils/checkNullishAndReport.d.ts +6 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-optional-chain-utils/checkNullishAndReport.js +45 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-optional-chain-utils/compareNodes.d.ts +15 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-optional-chain-utils/compareNodes.js +326 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-optional-chain-utils/gatherLogicalOperands.d.ts +61 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-optional-chain-utils/gatherLogicalOperands.js +411 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-optional-chain.d.ts +5 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-optional-chain.js +150 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-promise-reject-errors.d.ts +14 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-promise-reject-errors.js +124 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-readonly-parameter-types.d.ts +14 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-readonly-parameter-types.js +98 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-readonly.d.ts +10 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-readonly.js +439 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-reduce-type-parameter.d.ts +4 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-reduce-type-parameter.js +114 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-regexp-exec.d.ts +4 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-regexp-exec.js +182 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-return-this-type.d.ts +4 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-return-this-type.js +154 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-string-starts-ends-with.d.ts +12 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-string-starts-ends-with.js +512 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-ts-expect-error.d.ts +5 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-ts-expect-error.js +71 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/promise-function-async.d.ts +15 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/promise-function-async.js +204 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/related-getter-setter-pairs.d.ts +4 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/related-getter-setter-pairs.js +71 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/require-array-sort-compare.d.ts +10 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/require-array-sort-compare.js +63 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/require-await.d.ts +4 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/require-await.js +263 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/restrict-plus-operands.d.ts +15 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/restrict-plus-operands.js +231 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/restrict-template-expressions.d.ts +19 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/restrict-template-expressions.js +119 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/return-await.d.ts +5 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/return-await.js +363 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/sort-type-constituents.d.ts +14 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/sort-type-constituents.js +272 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/strict-boolean-expressions.d.ts +19 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/strict-boolean-expressions.js +882 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/strict-void-return.d.ts +10 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/strict-void-return.js +377 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/switch-exhaustiveness-check.d.ts +33 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/switch-exhaustiveness-check.js +291 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/triple-slash-reference.d.ts +12 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/triple-slash-reference.js +110 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/typedef.d.ts +16 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/typedef.js +239 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/unbound-method.d.ts +9 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/unbound-method.js +334 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/unified-signatures.d.ts +11 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/unified-signatures.js +465 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/use-unknown-in-catch-callback-variable.d.ts +6 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/use-unknown-in-catch-callback-variable.js +261 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/assertionFunctionUtils.d.ts +16 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/assertionFunctionUtils.js +116 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/astUtils.d.ts +17 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/astUtils.js +143 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/baseTypeUtils.d.ts +13 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/baseTypeUtils.js +75 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/class-scope-analyzer/classScopeAnalyzer.d.ts +52 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/class-scope-analyzer/classScopeAnalyzer.js +566 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/class-scope-analyzer/extractComputedName.d.ts +17 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/class-scope-analyzer/extractComputedName.js +70 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/class-scope-analyzer/types.d.ts +12 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/class-scope-analyzer/types.js +10 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/collectUnusedVariables.d.ts +15 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/collectUnusedVariables.js +601 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/createRule.d.ts +5 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/createRule.js +5 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/escapeRegExp.d.ts +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/escapeRegExp.js +14 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/explicitReturnTypeUtils.d.ts +47 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/explicitReturnTypeUtils.js +238 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getBaseTypesOfClassMember.d.ts +11 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getBaseTypesOfClassMember.js +31 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getConstraintInfo.d.ts +35 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getConstraintInfo.js +70 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getESLintCoreRule.d.ts +27 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getESLintCoreRule.js +16 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getFixOrSuggest.d.ts +9 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getFixOrSuggest.js +13 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getForStatementHeadLoc.d.ts +17 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getForStatementHeadLoc.js +26 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getFunctionHeadLoc.d.ts +101 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getFunctionHeadLoc.js +161 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getMemberHeadLoc.d.ts +36 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getMemberHeadLoc.js +79 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getOperatorPrecedence.d.ts +39 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getOperatorPrecedence.js +421 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getParentFunctionNode.d.ts +2 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getParentFunctionNode.js +18 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getStaticStringValue.d.ts +11 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getStaticStringValue.js +44 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getStringLength.d.ts +1 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getStringLength.js +14 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getTextWithParentheses.d.ts +3 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getTextWithParentheses.js +16 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getThisExpression.d.ts +2 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getThisExpression.js +24 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getValueOfLiteralType.d.ts +2 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getValueOfLiteralType.js +16 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getWrappedCode.d.ts +2 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getWrappedCode.js +6 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getWrappingFixer.d.ts +42 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getWrappingFixer.js +184 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/hasOverloadSignatures.d.ts +6 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/hasOverloadSignatures.js +47 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/index.d.ts +40 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/index.js +53 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/isArrayMethodCallWithPredicate.d.ts +3 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/isArrayMethodCallWithPredicate.js +64 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/isAssignee.d.ts +2 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/isAssignee.js +50 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/isHigherPrecedenceThanAwait.d.ts +2 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/isHigherPrecedenceThanAwait.js +46 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/isNodeEqual.d.ts +2 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/isNodeEqual.js +25 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/isNullLiteral.d.ts +2 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/isNullLiteral.js +7 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/isPromiseAggregatorMethod.d.ts +3 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/isPromiseAggregatorMethod.js +22 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/isStartOfExpressionStatement.d.ts +7 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/isStartOfExpressionStatement.js +22 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/isTypeImport.d.ts +12 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/isTypeImport.js +21 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/isUndefinedIdentifier.d.ts +2 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/isUndefinedIdentifier.js +7 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/misc.d.ts +115 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/misc.js +270 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/needsPrecedingSemiColon.d.ts +11 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/needsPrecedingSemiColon.js +97 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/needsToBeAwaited.d.ts +7 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/needsToBeAwaited.js +63 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/objectIterators.d.ts +3 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/objectIterators.js +25 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/promiseUtils.d.ts +27 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/promiseUtils.js +98 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/rangeToLoc.d.ts +2 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/rangeToLoc.js +9 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/referenceContainsTypePredicate.d.ts +5 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/referenceContainsTypePredicate.js +18 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/referenceContainsTypeQuery.d.ts +5 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/referenceContainsTypeQuery.js +19 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/scopeUtils.d.ts +3 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/scopeUtils.js +10 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/skipChainExpression.d.ts +2 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/skipChainExpression.js +7 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/truthinessUtils.d.ts +3 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/truthinessUtils.js +60 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/types.d.ts +2 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/types.js +2 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/walkStatements.d.ts +7 -0
- package/node_modules/@typescript-eslint/eslint-plugin/dist/util/walkStatements.js +56 -0
- package/node_modules/@typescript-eslint/eslint-plugin/index.d.ts +13 -0
- package/node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore/LICENSE-MIT +21 -0
- package/node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore/README.md +452 -0
- package/node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore/index.d.ts +81 -0
- package/node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore/index.js +784 -0
- package/node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore/legacy.js +681 -0
- package/node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore/package.json +87 -0
- package/node_modules/@typescript-eslint/eslint-plugin/package.json +126 -0
- package/node_modules/@typescript-eslint/eslint-plugin/raw-plugin.d.ts +25 -0
- package/node_modules/@typescript-eslint/eslint-plugin/rules.d.ts +87 -0
- package/node_modules/@typescript-eslint/parser/LICENSE +21 -0
- package/node_modules/@typescript-eslint/parser/README.md +12 -0
- package/node_modules/@typescript-eslint/parser/dist/index.d.ts +7 -0
- package/node_modules/@typescript-eslint/parser/dist/index.js +17 -0
- package/node_modules/@typescript-eslint/parser/dist/parser.d.ts +22 -0
- package/node_modules/@typescript-eslint/parser/dist/parser.js +144 -0
- package/node_modules/@typescript-eslint/parser/package.json +86 -0
- package/node_modules/@typescript-eslint/project-service/LICENSE +21 -0
- package/node_modules/@typescript-eslint/project-service/README.md +12 -0
- package/node_modules/@typescript-eslint/project-service/dist/createProjectService.d.ts +65 -0
- package/node_modules/@typescript-eslint/project-service/dist/createProjectService.js +138 -0
- package/node_modules/@typescript-eslint/project-service/dist/getParsedConfigFileFromTSServer.d.ts +2 -0
- package/node_modules/@typescript-eslint/project-service/dist/getParsedConfigFileFromTSServer.js +15 -0
- package/node_modules/@typescript-eslint/project-service/dist/index.d.ts +1 -0
- package/node_modules/@typescript-eslint/project-service/dist/index.js +17 -0
- package/node_modules/@typescript-eslint/project-service/package.json +83 -0
- package/node_modules/@typescript-eslint/scope-manager/LICENSE +21 -0
- package/node_modules/@typescript-eslint/scope-manager/README.md +10 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/ID.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/ID.js +19 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/ScopeManager.d.ts +77 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/ScopeManager.js +189 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/analyze.d.ts +53 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/analyze.js +41 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/assert.d.ts +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/assert.js +9 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/CatchClauseDefinition.d.ts +8 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/CatchClauseDefinition.js +13 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/ClassNameDefinition.d.ts +8 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/ClassNameDefinition.js +13 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/Definition.d.ts +12 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/Definition.js +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionBase.d.ts +33 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionBase.js +34 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionType.d.ts +13 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionType.js +17 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/FunctionNameDefinition.d.ts +8 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/FunctionNameDefinition.js +13 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/ImplicitGlobalVariableDefinition.d.ts +8 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/ImplicitGlobalVariableDefinition.js +13 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/ImportBindingDefinition.d.ts +9 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/ImportBindingDefinition.js +13 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/ParameterDefinition.d.ts +12 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/ParameterDefinition.js +18 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumMemberDefinition.d.ts +8 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumMemberDefinition.js +13 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumNameDefinition.d.ts +8 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumNameDefinition.js +13 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSModuleNameDefinition.d.ts +8 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSModuleNameDefinition.js +13 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/TypeDefinition.d.ts +8 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/TypeDefinition.js +13 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/VariableDefinition.d.ts +8 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/VariableDefinition.js +13 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/index.d.ts +13 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/definition/index.js +29 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/index.d.ts +8 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/index.js +30 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/base-config.d.ts +15 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/base-config.js +22 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/decorators.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/decorators.js +25 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/decorators.legacy.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/decorators.legacy.js +17 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.asynciterable.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.asynciterable.js +11 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.iterable.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.iterable.js +11 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.js +1812 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.collection.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.collection.js +23 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.core.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.core.js +34 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.generator.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.generator.js +17 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.iterable.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.iterable.js +62 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.js +32 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.promise.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.promise.js +12 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.proxy.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.proxy.js +15 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.reflect.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.reflect.js +12 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.js +12 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.wellknown.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.wellknown.js +47 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.array.include.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.array.include.js +24 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.full.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.full.js +16 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.intl.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.intl.js +12 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.js +14 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.arraybuffer.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.arraybuffer.js +12 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.date.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.date.js +12 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.full.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.full.js +16 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.intl.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.intl.js +12 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.js +28 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.object.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.object.js +12 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.sharedmemory.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.sharedmemory.js +19 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.string.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.string.js +12 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.typedarrays.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.typedarrays.js +22 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asyncgenerator.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asyncgenerator.js +17 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asynciterable.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asynciterable.js +20 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.full.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.full.js +24 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.intl.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.intl.js +12 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.js +24 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.promise.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.promise.js +12 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.regexp.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.regexp.js +16 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.array.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.array.js +16 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.full.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.full.js +24 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.intl.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.intl.js +12 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.js +24 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.object.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.object.js +13 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.string.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.string.js +12 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.symbol.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.symbol.js +12 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.bigint.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.bigint.js +23 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.date.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.date.js +13 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.full.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.full.js +24 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.intl.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.intl.js +13 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.js +30 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.number.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.number.js +13 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.promise.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.promise.js +17 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.sharedmemory.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.sharedmemory.js +13 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.string.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.string.js +15 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.symbol.wellknown.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.symbol.wellknown.js +18 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.full.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.full.js +24 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.intl.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.intl.js +12 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.js +16 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.promise.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.promise.js +16 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.string.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.string.js +12 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.weakref.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.weakref.js +18 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.array.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.array.js +26 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.error.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.error.js +24 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.full.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.full.js +24 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.intl.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.intl.js +12 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.js +26 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.object.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.object.js +12 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.regexp.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.regexp.js +17 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.string.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.string.js +12 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.array.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.array.js +26 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.collection.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.collection.js +12 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.full.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.full.js +24 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.intl.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.intl.js +12 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.js +15 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.arraybuffer.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.arraybuffer.js +15 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.collection.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.collection.js +12 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.full.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.full.js +24 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.js +28 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.object.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.object.js +12 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.promise.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.promise.js +15 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.regexp.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.regexp.js +12 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.sharedmemory.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.sharedmemory.js +17 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.string.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.string.js +12 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.collection.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.collection.js +17 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.float16.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.float16.js +19 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.full.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.full.js +24 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.intl.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.intl.js +13 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.iterator.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.iterator.js +16 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.js +26 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.promise.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.promise.js +12 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.regexp.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.regexp.js +12 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es5.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es5.js +118 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es6.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es6.js +32 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es7.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/es7.js +14 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.array.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.array.js +12 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.asynciterable.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.asynciterable.js +20 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.bigint.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.bigint.js +23 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.collection.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.collection.js +16 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.date.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.date.js +13 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.decorators.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.decorators.js +17 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.disposable.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.disposable.js +27 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.error.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.error.js +12 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.float16.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.float16.js +19 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.full.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.full.js +24 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.intl.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.intl.js +13 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.iterator.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.iterator.js +16 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.js +34 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.object.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.object.js +12 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.promise.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.promise.js +12 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.regexp.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.regexp.js +12 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.sharedmemory.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.sharedmemory.js +12 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.string.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.string.js +12 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.symbol.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.symbol.js +12 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.temporal.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.temporal.js +15 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.typedarrays.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.typedarrays.js +15 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.weakref.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.weakref.js +18 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/index.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/index.js +247 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/lib.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/lib.js +15 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/scripthost.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/scripthost.js +26 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.asynciterable.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.asynciterable.js +11 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.importscripts.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.importscripts.js +11 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.iterable.d.ts +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.iterable.js +11 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.js +842 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ClassVisitor.d.ts +27 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ClassVisitor.js +178 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ExportVisitor.d.ts +13 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ExportVisitor.js +71 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ImportVisitor.d.ts +12 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ImportVisitor.js +36 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/referencer/PatternVisitor.d.ts +27 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/referencer/PatternVisitor.js +94 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Reference.d.ts +87 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Reference.js +119 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Referencer.d.ts +91 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Referencer.js +558 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/referencer/TypeVisitor.d.ts +31 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/referencer/TypeVisitor.js +221 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Visitor.d.ts +13 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Visitor.js +29 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/referencer/VisitorBase.d.ts +21 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/referencer/VisitorBase.js +67 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/referencer/index.d.ts +1 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/referencer/index.js +5 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/BlockScope.d.ts +8 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/BlockScope.js +11 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/CatchScope.d.ts +8 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/CatchScope.js +11 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassFieldInitializerScope.d.ts +8 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassFieldInitializerScope.js +11 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassScope.d.ts +8 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassScope.js +11 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassStaticBlockScope.d.ts +8 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassStaticBlockScope.js +11 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/ConditionalTypeScope.d.ts +8 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/ConditionalTypeScope.js +11 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/ForScope.d.ts +8 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/ForScope.js +11 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionExpressionNameScope.d.ts +9 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionExpressionNameScope.js +17 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionScope.d.ts +11 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionScope.js +35 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionTypeScope.d.ts +8 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionTypeScope.js +11 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/GlobalScope.d.ts +17 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/GlobalScope.js +60 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/MappedTypeScope.d.ts +8 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/MappedTypeScope.js +11 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/ModuleScope.d.ts +8 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/ModuleScope.js +11 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/Scope.d.ts +19 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/Scope.js +2 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeBase.d.ts +96 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeBase.js +308 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeType.d.ts +20 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeType.js +24 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/SwitchScope.d.ts +8 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/SwitchScope.js +11 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/TSEnumScope.d.ts +8 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/TSEnumScope.js +11 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/TSModuleScope.d.ts +8 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/TSModuleScope.js +11 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/TypeScope.d.ts +8 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/TypeScope.js +11 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/WithScope.d.ts +9 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/WithScope.js +21 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/index.d.ts +19 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/scope/index.js +35 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/variable/ESLintScopeVariable.d.ts +32 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/variable/ESLintScopeVariable.js +35 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/variable/ImplicitLibVariable.d.ts +27 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/variable/ImplicitLibVariable.js +26 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/variable/Variable.d.ts +16 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/variable/Variable.js +32 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/variable/VariableBase.d.ts +42 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/variable/VariableBase.js +47 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/variable/index.d.ts +6 -0
- package/node_modules/@typescript-eslint/scope-manager/dist/variable/index.js +9 -0
- package/node_modules/@typescript-eslint/scope-manager/package.json +82 -0
- package/node_modules/@typescript-eslint/tsconfig-utils/LICENSE +21 -0
- package/node_modules/@typescript-eslint/tsconfig-utils/README.md +12 -0
- package/node_modules/@typescript-eslint/tsconfig-utils/dist/compilerOptions.d.ts +8 -0
- package/node_modules/@typescript-eslint/tsconfig-utils/dist/compilerOptions.js +13 -0
- package/node_modules/@typescript-eslint/tsconfig-utils/dist/getParsedConfigFile.d.ts +8 -0
- package/node_modules/@typescript-eslint/tsconfig-utils/dist/getParsedConfigFile.js +79 -0
- package/node_modules/@typescript-eslint/tsconfig-utils/dist/index.d.ts +2 -0
- package/node_modules/@typescript-eslint/tsconfig-utils/dist/index.js +18 -0
- package/node_modules/@typescript-eslint/tsconfig-utils/package.json +74 -0
- package/node_modules/@typescript-eslint/type-utils/LICENSE +21 -0
- package/node_modules/@typescript-eslint/type-utils/README.md +12 -0
- package/node_modules/@typescript-eslint/type-utils/dist/TypeOrValueSpecifier.d.ts +132 -0
- package/node_modules/@typescript-eslint/type-utils/dist/TypeOrValueSpecifier.js +212 -0
- package/node_modules/@typescript-eslint/type-utils/dist/builtinSymbolLikes.d.ts +53 -0
- package/node_modules/@typescript-eslint/type-utils/dist/builtinSymbolLikes.js +165 -0
- package/node_modules/@typescript-eslint/type-utils/dist/containsAllTypesByName.d.ts +9 -0
- package/node_modules/@typescript-eslint/type-utils/dist/containsAllTypesByName.js +69 -0
- package/node_modules/@typescript-eslint/type-utils/dist/discriminateAnyType.d.ts +12 -0
- package/node_modules/@typescript-eslint/type-utils/dist/discriminateAnyType.js +77 -0
- package/node_modules/@typescript-eslint/type-utils/dist/getConstrainedTypeAtLocation.d.ts +12 -0
- package/node_modules/@typescript-eslint/type-utils/dist/getConstrainedTypeAtLocation.js +19 -0
- package/node_modules/@typescript-eslint/type-utils/dist/getContextualType.d.ts +7 -0
- package/node_modules/@typescript-eslint/type-utils/dist/getContextualType.js +76 -0
- package/node_modules/@typescript-eslint/type-utils/dist/getDeclaration.d.ts +6 -0
- package/node_modules/@typescript-eslint/type-utils/dist/getDeclaration.js +14 -0
- package/node_modules/@typescript-eslint/type-utils/dist/getSourceFileOfNode.d.ts +6 -0
- package/node_modules/@typescript-eslint/type-utils/dist/getSourceFileOfNode.js +47 -0
- package/node_modules/@typescript-eslint/type-utils/dist/getTypeName.d.ts +7 -0
- package/node_modules/@typescript-eslint/type-utils/dist/getTypeName.js +84 -0
- package/node_modules/@typescript-eslint/type-utils/dist/index.d.ts +18 -0
- package/node_modules/@typescript-eslint/type-utils/dist/index.js +38 -0
- package/node_modules/@typescript-eslint/type-utils/dist/isSymbolFromDefaultLibrary.d.ts +2 -0
- package/node_modules/@typescript-eslint/type-utils/dist/isSymbolFromDefaultLibrary.js +16 -0
- package/node_modules/@typescript-eslint/type-utils/dist/isTypeBrandedLiteralLike.d.ts +2 -0
- package/node_modules/@typescript-eslint/type-utils/dist/isTypeBrandedLiteralLike.js +74 -0
- package/node_modules/@typescript-eslint/type-utils/dist/isTypeReadonly.d.ts +100 -0
- package/node_modules/@typescript-eslint/type-utils/dist/isTypeReadonly.js +255 -0
- package/node_modules/@typescript-eslint/type-utils/dist/isUnsafeAssignment.d.ts +16 -0
- package/node_modules/@typescript-eslint/type-utils/dist/isUnsafeAssignment.js +114 -0
- package/node_modules/@typescript-eslint/type-utils/dist/predicates.d.ts +37 -0
- package/node_modules/@typescript-eslint/type-utils/dist/predicates.js +157 -0
- package/node_modules/@typescript-eslint/type-utils/dist/propertyTypes.d.ts +3 -0
- package/node_modules/@typescript-eslint/type-utils/dist/propertyTypes.js +35 -0
- package/node_modules/@typescript-eslint/type-utils/dist/requiresQuoting.d.ts +3 -0
- package/node_modules/@typescript-eslint/type-utils/dist/requiresQuoting.js +52 -0
- package/node_modules/@typescript-eslint/type-utils/dist/typeFlagUtils.d.ts +17 -0
- package/node_modules/@typescript-eslint/type-utils/dist/typeFlagUtils.js +70 -0
- package/node_modules/@typescript-eslint/type-utils/dist/typeOrValueSpecifiers/specifierNameMatches.d.ts +2 -0
- package/node_modules/@typescript-eslint/type-utils/dist/typeOrValueSpecifiers/specifierNameMatches.js +16 -0
- package/node_modules/@typescript-eslint/type-utils/dist/typeOrValueSpecifiers/typeDeclaredInFile.d.ts +2 -0
- package/node_modules/@typescript-eslint/type-utils/dist/typeOrValueSpecifiers/typeDeclaredInFile.js +16 -0
- package/node_modules/@typescript-eslint/type-utils/dist/typeOrValueSpecifiers/typeDeclaredInLib.d.ts +2 -0
- package/node_modules/@typescript-eslint/type-utils/dist/typeOrValueSpecifiers/typeDeclaredInLib.js +11 -0
- package/node_modules/@typescript-eslint/type-utils/dist/typeOrValueSpecifiers/typeDeclaredInPackageDeclarationFile.d.ts +2 -0
- package/node_modules/@typescript-eslint/type-utils/dist/typeOrValueSpecifiers/typeDeclaredInPackageDeclarationFile.js +70 -0
- package/node_modules/@typescript-eslint/type-utils/package.json +85 -0
- package/node_modules/@typescript-eslint/types/LICENSE +21 -0
- package/node_modules/@typescript-eslint/types/README.md +12 -0
- package/node_modules/@typescript-eslint/types/dist/generated/ast-spec.d.ts +2163 -0
- package/node_modules/@typescript-eslint/types/dist/generated/ast-spec.js +200 -0
- package/node_modules/@typescript-eslint/types/dist/index.d.ts +4 -0
- package/node_modules/@typescript-eslint/types/dist/index.js +23 -0
- package/node_modules/@typescript-eslint/types/dist/lib.d.ts +1 -0
- package/node_modules/@typescript-eslint/types/dist/lib.js +6 -0
- package/node_modules/@typescript-eslint/types/dist/parser-options.d.ts +68 -0
- package/node_modules/@typescript-eslint/types/dist/parser-options.js +2 -0
- package/node_modules/@typescript-eslint/types/dist/ts-estree.d.ts +188 -0
- package/node_modules/@typescript-eslint/types/dist/ts-estree.js +37 -0
- package/node_modules/@typescript-eslint/types/package.json +103 -0
- package/node_modules/@typescript-eslint/typescript-estree/LICENSE +21 -0
- package/node_modules/@typescript-eslint/typescript-estree/README.md +14 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/ast-converter.d.ts +8 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/ast-converter.js +60 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/check-modifiers.d.ts +2 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/check-modifiers.js +289 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/check-syntax-errors.d.ts +3 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/check-syntax-errors.js +440 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/clear-caches.d.ts +9 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/clear-caches.js +27 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/convert-comments.d.ts +9 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/convert-comments.js +61 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/convert.d.ts +142 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/convert.js +2400 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/WatchCompilerHostOfConfigFile.d.ts +12 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/WatchCompilerHostOfConfigFile.js +5 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createIsolatedProgram.d.ts +6 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createIsolatedProgram.js +96 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createProjectProgram.d.ts +8 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createProjectProgram.js +23 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createProjectProgramError.d.ts +3 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createProjectProgramError.js +74 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createSourceFile.d.ts +5 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createSourceFile.js +62 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/describeFilePath.d.ts +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/describeFilePath.js +30 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/getScriptKind.d.ts +3 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/getScriptKind.js +80 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/getWatchProgramsForProjects.d.ts +13 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/getWatchProgramsForProjects.js +380 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/shared.d.ts +27 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/shared.js +130 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/useProvidedPrograms.d.ts +11 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/useProvidedPrograms.js +81 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/validateDefaultProjectForFilesGlob.d.ts +2 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/validateDefaultProjectForFilesGlob.js +23 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/createParserServices.d.ts +4 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/createParserServices.js +33 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/getModifiers.d.ts +3 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/getModifiers.js +74 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/index.d.ts +14 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/index.js +41 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/jsx/xhtml-entities.d.ts +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/jsx/xhtml-entities.js +258 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/node-utils.d.ts +189 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/node-utils.js +673 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/ExpiringCache.d.ts +16 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/ExpiringCache.js +46 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/candidateTSConfigRootDirs.d.ts +3 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/candidateTSConfigRootDirs.js +28 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/createParseSettings.d.ts +6 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/createParseSettings.js +252 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/getProjectConfigFiles.d.ts +12 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/getProjectConfigFiles.js +82 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/index.d.ts +126 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/index.js +2 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/inferSingleRun.d.ts +14 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/inferSingleRun.js +62 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/resolveProjectList.d.ts +18 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/resolveProjectList.js +95 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/warnAboutTSVersion.d.ts +6 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/warnAboutTSVersion.js +81 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/parser-options.d.ts +210 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/parser-options.js +2 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/parser.d.ts +17 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/parser.js +184 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/semantic-or-syntactic-errors.d.ts +12 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/semantic-or-syntactic-errors.js +94 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/simple-traverse.d.ts +11 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/simple-traverse.js +58 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/source-files.d.ts +3 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/source-files.js +49 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/estree-to-ts-node-types.d.ts +178 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/estree-to-ts-node-types.js +2 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/index.d.ts +3 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/index.js +24 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/ts-nodes.d.ts +17 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/ts-nodes.js +2 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/use-at-your-own-risk.d.ts +7 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/use-at-your-own-risk.js +29 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/useProgramFromProjectService.d.ts +6 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/useProgramFromProjectService.js +205 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/version-check.d.ts +4 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/version-check.js +63 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/version.d.ts +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/version.js +6 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/withoutProjectParserOptions.d.ts +9 -0
- package/node_modules/@typescript-eslint/typescript-estree/dist/withoutProjectParserOptions.js +16 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/balanced-match/LICENSE.md +23 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/balanced-match/README.md +57 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/balanced-match/dist/commonjs/index.d.ts +9 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/balanced-match/dist/commonjs/index.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/balanced-match/dist/commonjs/index.js +59 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/balanced-match/dist/commonjs/index.js.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/balanced-match/dist/commonjs/package.json +3 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/balanced-match/dist/esm/index.d.ts +9 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/balanced-match/dist/esm/index.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/balanced-match/dist/esm/index.js +54 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/balanced-match/dist/esm/index.js.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/balanced-match/dist/esm/package.json +3 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/balanced-match/package.json +68 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion/LICENSE +23 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion/README.md +94 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion/dist/commonjs/index.d.ts +6 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion/dist/commonjs/index.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion/dist/commonjs/index.js +201 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion/dist/commonjs/index.js.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion/dist/commonjs/package.json +3 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion/dist/esm/index.d.ts +6 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion/dist/esm/index.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion/dist/esm/index.js +197 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion/dist/esm/index.js.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion/dist/esm/package.json +3 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion/package.json +64 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/LICENSE.md +55 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/README.md +528 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/assert-valid-pattern.d.ts +2 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/assert-valid-pattern.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/assert-valid-pattern.js +14 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/assert-valid-pattern.js.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/ast.d.ts +22 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/ast.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/ast.js +845 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/ast.js.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/brace-expressions.d.ts +8 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/brace-expressions.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/brace-expressions.js +150 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/brace-expressions.js.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/escape.d.ts +15 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/escape.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/escape.js +30 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/escape.js.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/index.d.ts +174 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/index.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/index.js +1127 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/index.js.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/package.json +3 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/unescape.d.ts +22 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/unescape.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/unescape.js +38 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/unescape.js.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/assert-valid-pattern.d.ts +2 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/assert-valid-pattern.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/assert-valid-pattern.js +10 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/assert-valid-pattern.js.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/ast.d.ts +22 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/ast.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/ast.js +841 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/ast.js.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/brace-expressions.d.ts +8 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/brace-expressions.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/brace-expressions.js +146 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/brace-expressions.js.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/escape.d.ts +15 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/escape.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/escape.js +26 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/escape.js.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/index.d.ts +174 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/index.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/index.js +1114 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/index.js.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/package.json +3 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/unescape.d.ts +22 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/unescape.d.ts.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/unescape.js +34 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/unescape.js.map +1 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/package.json +73 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/LICENSE +15 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/README.md +680 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/bin/semver.js +195 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/classes/comparator.js +143 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/classes/index.js +7 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/classes/range.js +564 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/classes/semver.js +350 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/clean.js +8 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/cmp.js +54 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/coerce.js +62 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/compare-build.js +9 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/compare-loose.js +5 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/compare.js +7 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/diff.js +60 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/eq.js +5 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/gt.js +5 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/gte.js +5 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/inc.js +21 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/lt.js +5 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/lte.js +5 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/major.js +5 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/minor.js +5 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/neq.js +5 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/parse.js +18 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/patch.js +5 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/prerelease.js +8 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/rcompare.js +5 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/rsort.js +5 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/satisfies.js +12 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/sort.js +5 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/truncate.js +48 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/valid.js +8 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/index.js +93 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/internal/constants.js +37 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/internal/debug.js +11 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/internal/identifiers.js +29 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/internal/lrucache.js +42 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/internal/parse-options.js +17 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/internal/re.js +223 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/package.json +78 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/preload.js +4 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/range.bnf +17 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/ranges/gtr.js +6 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/ranges/intersects.js +9 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/ranges/ltr.js +6 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/ranges/max-satisfying.js +27 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/ranges/min-satisfying.js +26 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/ranges/min-version.js +63 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/ranges/outside.js +82 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/ranges/simplify.js +49 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/ranges/subset.js +249 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/ranges/to-comparators.js +10 -0
- package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/ranges/valid.js +13 -0
- package/node_modules/@typescript-eslint/typescript-estree/package.json +95 -0
- package/node_modules/@typescript-eslint/utils/LICENSE +21 -0
- package/node_modules/@typescript-eslint/utils/README.md +12 -0
- package/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/PatternMatcher.d.ts +47 -0
- package/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/PatternMatcher.js +44 -0
- package/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/ReferenceTracker.d.ts +71 -0
- package/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/ReferenceTracker.js +48 -0
- package/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/astUtilities.d.ts +83 -0
- package/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/astUtilities.js +101 -0
- package/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/index.d.ts +5 -0
- package/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/index.js +21 -0
- package/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/predicates.d.ts +31 -0
- package/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/predicates.js +59 -0
- package/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/scopeAnalysis.d.ts +16 -0
- package/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/scopeAnalysis.js +51 -0
- package/node_modules/@typescript-eslint/utils/dist/ast-utils/helpers.d.ts +18 -0
- package/node_modules/@typescript-eslint/utils/dist/ast-utils/helpers.js +21 -0
- package/node_modules/@typescript-eslint/utils/dist/ast-utils/index.d.ts +4 -0
- package/node_modules/@typescript-eslint/utils/dist/ast-utils/index.js +20 -0
- package/node_modules/@typescript-eslint/utils/dist/ast-utils/misc.d.ts +10 -0
- package/node_modules/@typescript-eslint/utils/dist/ast-utils/misc.js +15 -0
- package/node_modules/@typescript-eslint/utils/dist/ast-utils/predicates.d.ts +68 -0
- package/node_modules/@typescript-eslint/utils/dist/ast-utils/predicates.js +108 -0
- package/node_modules/@typescript-eslint/utils/dist/eslint-utils/InferTypesFromRule.d.ts +9 -0
- package/node_modules/@typescript-eslint/utils/dist/eslint-utils/InferTypesFromRule.js +2 -0
- package/node_modules/@typescript-eslint/utils/dist/eslint-utils/RuleCreator.d.ts +32 -0
- package/node_modules/@typescript-eslint/utils/dist/eslint-utils/RuleCreator.js +54 -0
- package/node_modules/@typescript-eslint/utils/dist/eslint-utils/applyDefault.d.ts +8 -0
- package/node_modules/@typescript-eslint/utils/dist/eslint-utils/applyDefault.js +33 -0
- package/node_modules/@typescript-eslint/utils/dist/eslint-utils/deepMerge.d.ts +14 -0
- package/node_modules/@typescript-eslint/utils/dist/eslint-utils/deepMerge.js +46 -0
- package/node_modules/@typescript-eslint/utils/dist/eslint-utils/getParserServices.d.ts +22 -0
- package/node_modules/@typescript-eslint/utils/dist/eslint-utils/getParserServices.js +41 -0
- package/node_modules/@typescript-eslint/utils/dist/eslint-utils/index.d.ts +6 -0
- package/node_modules/@typescript-eslint/utils/dist/eslint-utils/index.js +22 -0
- package/node_modules/@typescript-eslint/utils/dist/eslint-utils/nullThrows.d.ts +12 -0
- package/node_modules/@typescript-eslint/utils/dist/eslint-utils/nullThrows.js +21 -0
- package/node_modules/@typescript-eslint/utils/dist/eslint-utils/parserSeemsToBeTSESLint.d.ts +1 -0
- package/node_modules/@typescript-eslint/utils/dist/eslint-utils/parserSeemsToBeTSESLint.js +6 -0
- package/node_modules/@typescript-eslint/utils/dist/index.d.ts +6 -0
- package/node_modules/@typescript-eslint/utils/dist/index.js +45 -0
- package/node_modules/@typescript-eslint/utils/dist/json-schema.d.ts +387 -0
- package/node_modules/@typescript-eslint/utils/dist/json-schema.js +8 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint/AST.d.ts +8 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint/AST.js +3 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint/Config.d.ts +291 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint/Config.js +3 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint/ESLint.d.ts +7 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint/ESLint.js +13 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint/Linter.d.ts +255 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint/Linter.js +13 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint/Parser.d.ts +94 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint/Parser.js +3 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint/ParserOptions.d.ts +1 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint/ParserOptions.js +2 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint/Processor.d.ts +63 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint/Processor.js +3 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint/Rule.d.ts +614 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint/Rule.js +2 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint/RuleTester.d.ts +183 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint/RuleTester.js +11 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint/Scope.d.ts +42 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint/Scope.js +43 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint/SourceCode.d.ts +354 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint/SourceCode.js +8 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint/eslint/ESLintShared.d.ts +381 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint/eslint/ESLintShared.js +2 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint/eslint/FlatESLint.d.ts +87 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint/eslint/FlatESLint.js +19 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint/eslint/LegacyESLint.d.ts +72 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint/eslint/LegacyESLint.js +36 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint/index.d.ts +11 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-eslint/index.js +27 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-estree.d.ts +3 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-estree.js +9 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-utils/NoInfer.d.ts +9 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-utils/NoInfer.js +2 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-utils/index.d.ts +2 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-utils/index.js +18 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-utils/isArray.d.ts +1 -0
- package/node_modules/@typescript-eslint/utils/dist/ts-utils/isArray.js +7 -0
- package/node_modules/@typescript-eslint/utils/package.json +115 -0
- package/node_modules/@typescript-eslint/visitor-keys/LICENSE +21 -0
- package/node_modules/@typescript-eslint/visitor-keys/README.md +10 -0
- package/node_modules/@typescript-eslint/visitor-keys/dist/get-keys.d.ts +2 -0
- package/node_modules/@typescript-eslint/visitor-keys/dist/get-keys.js +5 -0
- package/node_modules/@typescript-eslint/visitor-keys/dist/index.d.ts +2 -0
- package/node_modules/@typescript-eslint/visitor-keys/dist/index.js +7 -0
- package/node_modules/@typescript-eslint/visitor-keys/dist/visitor-keys.d.ts +2 -0
- package/node_modules/@typescript-eslint/visitor-keys/dist/visitor-keys.js +194 -0
- package/node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys/LICENSE +201 -0
- package/node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys/README.md +123 -0
- package/node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys/dist/eslint-visitor-keys.cjs +187 -0
- package/node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys/dist/eslint-visitor-keys.d.cts +28 -0
- package/node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys/dist/index.d.ts +16 -0
- package/node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys/dist/visitor-keys.d.ts +12 -0
- package/node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys/lib/index.js +67 -0
- package/node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys/lib/visitor-keys.js +118 -0
- package/node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys/package.json +57 -0
- package/node_modules/@typescript-eslint/visitor-keys/package.json +76 -0
- package/node_modules/acorn/CHANGELOG.md +972 -0
- package/node_modules/acorn/LICENSE +21 -0
- package/node_modules/acorn/README.md +301 -0
- package/node_modules/acorn/bin/acorn +4 -0
- package/node_modules/acorn/dist/acorn.d.mts +883 -0
- package/node_modules/acorn/dist/acorn.d.ts +883 -0
- package/node_modules/acorn/dist/acorn.js +6295 -0
- package/node_modules/acorn/dist/acorn.mjs +6266 -0
- package/node_modules/acorn/dist/bin.js +90 -0
- package/node_modules/acorn/package.json +50 -0
- package/node_modules/acorn-jsx/LICENSE +19 -0
- package/node_modules/acorn-jsx/README.md +40 -0
- package/node_modules/acorn-jsx/index.d.ts +12 -0
- package/node_modules/acorn-jsx/index.js +488 -0
- package/node_modules/acorn-jsx/package.json +27 -0
- package/node_modules/acorn-jsx/xhtml.js +255 -0
- package/node_modules/ajv/.tonic_example.js +20 -0
- package/node_modules/ajv/LICENSE +22 -0
- package/node_modules/ajv/README.md +1505 -0
- package/node_modules/ajv/dist/ajv.bundle.js +7201 -0
- package/node_modules/ajv/dist/ajv.min.js +3 -0
- package/node_modules/ajv/dist/ajv.min.js.map +1 -0
- package/node_modules/ajv/lib/ajv.d.ts +402 -0
- package/node_modules/ajv/lib/ajv.js +506 -0
- package/node_modules/ajv/lib/cache.js +26 -0
- package/node_modules/ajv/lib/compile/async.js +90 -0
- package/node_modules/ajv/lib/compile/equal.js +5 -0
- package/node_modules/ajv/lib/compile/error_classes.js +34 -0
- package/node_modules/ajv/lib/compile/formats.js +142 -0
- package/node_modules/ajv/lib/compile/index.js +389 -0
- package/node_modules/ajv/lib/compile/resolve.js +270 -0
- package/node_modules/ajv/lib/compile/rules.js +66 -0
- package/node_modules/ajv/lib/compile/schema_obj.js +9 -0
- package/node_modules/ajv/lib/compile/ucs2length.js +20 -0
- package/node_modules/ajv/lib/compile/util.js +239 -0
- package/node_modules/ajv/lib/data.js +49 -0
- package/node_modules/ajv/lib/definition_schema.js +37 -0
- package/node_modules/ajv/lib/dot/_limit.jst +113 -0
- package/node_modules/ajv/lib/dot/_limitItems.jst +12 -0
- package/node_modules/ajv/lib/dot/_limitLength.jst +12 -0
- package/node_modules/ajv/lib/dot/_limitProperties.jst +12 -0
- package/node_modules/ajv/lib/dot/allOf.jst +32 -0
- package/node_modules/ajv/lib/dot/anyOf.jst +46 -0
- package/node_modules/ajv/lib/dot/coerce.def +51 -0
- package/node_modules/ajv/lib/dot/comment.jst +9 -0
- package/node_modules/ajv/lib/dot/const.jst +11 -0
- package/node_modules/ajv/lib/dot/contains.jst +55 -0
- package/node_modules/ajv/lib/dot/custom.jst +191 -0
- package/node_modules/ajv/lib/dot/defaults.def +47 -0
- package/node_modules/ajv/lib/dot/definitions.def +203 -0
- package/node_modules/ajv/lib/dot/dependencies.jst +79 -0
- package/node_modules/ajv/lib/dot/enum.jst +30 -0
- package/node_modules/ajv/lib/dot/errors.def +194 -0
- package/node_modules/ajv/lib/dot/format.jst +106 -0
- package/node_modules/ajv/lib/dot/if.jst +73 -0
- package/node_modules/ajv/lib/dot/items.jst +98 -0
- package/node_modules/ajv/lib/dot/missing.def +39 -0
- package/node_modules/ajv/lib/dot/multipleOf.jst +22 -0
- package/node_modules/ajv/lib/dot/not.jst +43 -0
- package/node_modules/ajv/lib/dot/oneOf.jst +54 -0
- package/node_modules/ajv/lib/dot/pattern.jst +25 -0
- package/node_modules/ajv/lib/dot/properties.jst +245 -0
- package/node_modules/ajv/lib/dot/propertyNames.jst +52 -0
- package/node_modules/ajv/lib/dot/ref.jst +85 -0
- package/node_modules/ajv/lib/dot/required.jst +108 -0
- package/node_modules/ajv/lib/dot/uniqueItems.jst +62 -0
- package/node_modules/ajv/lib/dot/validate.jst +276 -0
- package/node_modules/ajv/lib/dotjs/README.md +3 -0
- package/node_modules/ajv/lib/dotjs/_limit.js +163 -0
- package/node_modules/ajv/lib/dotjs/_limitItems.js +80 -0
- package/node_modules/ajv/lib/dotjs/_limitLength.js +85 -0
- package/node_modules/ajv/lib/dotjs/_limitProperties.js +80 -0
- package/node_modules/ajv/lib/dotjs/allOf.js +42 -0
- package/node_modules/ajv/lib/dotjs/anyOf.js +73 -0
- package/node_modules/ajv/lib/dotjs/comment.js +14 -0
- package/node_modules/ajv/lib/dotjs/const.js +56 -0
- package/node_modules/ajv/lib/dotjs/contains.js +81 -0
- package/node_modules/ajv/lib/dotjs/custom.js +228 -0
- package/node_modules/ajv/lib/dotjs/dependencies.js +168 -0
- package/node_modules/ajv/lib/dotjs/enum.js +66 -0
- package/node_modules/ajv/lib/dotjs/format.js +150 -0
- package/node_modules/ajv/lib/dotjs/if.js +103 -0
- package/node_modules/ajv/lib/dotjs/index.js +33 -0
- package/node_modules/ajv/lib/dotjs/items.js +140 -0
- package/node_modules/ajv/lib/dotjs/multipleOf.js +80 -0
- package/node_modules/ajv/lib/dotjs/not.js +84 -0
- package/node_modules/ajv/lib/dotjs/oneOf.js +73 -0
- package/node_modules/ajv/lib/dotjs/pattern.js +85 -0
- package/node_modules/ajv/lib/dotjs/properties.js +335 -0
- package/node_modules/ajv/lib/dotjs/propertyNames.js +81 -0
- package/node_modules/ajv/lib/dotjs/ref.js +124 -0
- package/node_modules/ajv/lib/dotjs/required.js +270 -0
- package/node_modules/ajv/lib/dotjs/uniqueItems.js +86 -0
- package/node_modules/ajv/lib/dotjs/validate.js +482 -0
- package/node_modules/ajv/lib/keyword.js +146 -0
- package/node_modules/ajv/lib/refs/data.json +17 -0
- package/node_modules/ajv/lib/refs/json-schema-draft-04.json +149 -0
- package/node_modules/ajv/lib/refs/json-schema-draft-06.json +154 -0
- package/node_modules/ajv/lib/refs/json-schema-draft-07.json +168 -0
- package/node_modules/ajv/lib/refs/json-schema-secure.json +94 -0
- package/node_modules/ajv/package.json +107 -0
- package/node_modules/ajv/scripts/.eslintrc.yml +3 -0
- package/node_modules/ajv/scripts/bundle.js +61 -0
- package/node_modules/ajv/scripts/compile-dots.js +73 -0
- package/node_modules/ajv/scripts/info +10 -0
- package/node_modules/ajv/scripts/prepare-tests +12 -0
- package/node_modules/ajv/scripts/publish-built-version +32 -0
- package/node_modules/ajv/scripts/travis-gh-pages +23 -0
- package/node_modules/ansi-styles/index.d.ts +345 -0
- package/node_modules/ansi-styles/index.js +163 -0
- package/node_modules/ansi-styles/license +9 -0
- package/node_modules/ansi-styles/package.json +56 -0
- package/node_modules/ansi-styles/readme.md +152 -0
- package/node_modules/balanced-match/.github/FUNDING.yml +2 -0
- package/node_modules/balanced-match/LICENSE.md +21 -0
- package/node_modules/balanced-match/README.md +97 -0
- package/node_modules/balanced-match/index.js +62 -0
- package/node_modules/balanced-match/package.json +48 -0
- package/node_modules/callsites/index.d.ts +96 -0
- package/node_modules/callsites/index.js +13 -0
- package/node_modules/callsites/license +9 -0
- package/node_modules/callsites/package.json +39 -0
- package/node_modules/callsites/readme.md +48 -0
- package/node_modules/chalk/index.d.ts +415 -0
- package/node_modules/chalk/license +9 -0
- package/node_modules/chalk/package.json +68 -0
- package/node_modules/chalk/readme.md +341 -0
- package/node_modules/chalk/source/index.js +229 -0
- package/node_modules/chalk/source/templates.js +134 -0
- package/node_modules/chalk/source/util.js +39 -0
- package/node_modules/color-convert/LICENSE +21 -0
- package/node_modules/color-convert/README.md +68 -0
- package/node_modules/color-convert/conversions.js +839 -0
- package/node_modules/color-convert/index.js +81 -0
- package/node_modules/color-convert/package.json +48 -0
- package/node_modules/color-convert/route.js +97 -0
- package/node_modules/color-name/LICENSE +8 -0
- package/node_modules/color-name/README.md +11 -0
- package/node_modules/color-name/index.js +152 -0
- package/node_modules/color-name/package.json +28 -0
- package/node_modules/concat-map/.travis.yml +4 -0
- package/node_modules/concat-map/LICENSE +18 -0
- package/node_modules/concat-map/README.markdown +62 -0
- package/node_modules/concat-map/example/map.js +6 -0
- package/node_modules/concat-map/index.js +13 -0
- package/node_modules/concat-map/package.json +43 -0
- package/node_modules/concat-map/test/map.js +39 -0
- package/node_modules/cross-spawn/LICENSE +21 -0
- package/node_modules/cross-spawn/README.md +89 -0
- package/node_modules/cross-spawn/index.js +39 -0
- package/node_modules/cross-spawn/lib/enoent.js +59 -0
- package/node_modules/cross-spawn/lib/parse.js +91 -0
- package/node_modules/cross-spawn/lib/util/escape.js +47 -0
- package/node_modules/cross-spawn/lib/util/readShebang.js +23 -0
- package/node_modules/cross-spawn/lib/util/resolveCommand.js +52 -0
- package/node_modules/cross-spawn/package.json +73 -0
- package/node_modules/debug/LICENSE +20 -0
- package/node_modules/debug/README.md +481 -0
- package/node_modules/debug/package.json +64 -0
- package/node_modules/debug/src/browser.js +272 -0
- package/node_modules/debug/src/common.js +292 -0
- package/node_modules/debug/src/index.js +10 -0
- package/node_modules/debug/src/node.js +263 -0
- package/node_modules/deep-is/.travis.yml +5 -0
- package/node_modules/deep-is/LICENSE +22 -0
- package/node_modules/deep-is/README.markdown +70 -0
- package/node_modules/deep-is/example/cmp.js +11 -0
- package/node_modules/deep-is/index.js +102 -0
- package/node_modules/deep-is/package.json +58 -0
- package/node_modules/deep-is/test/NaN.js +16 -0
- package/node_modules/deep-is/test/cmp.js +23 -0
- package/node_modules/deep-is/test/neg-vs-pos-0.js +15 -0
- package/node_modules/eslint/LICENSE +19 -0
- package/node_modules/eslint/README.md +354 -0
- package/node_modules/eslint/bin/eslint.js +196 -0
- package/node_modules/eslint/conf/default-cli-options.js +32 -0
- package/node_modules/eslint/conf/ecma-version.js +16 -0
- package/node_modules/eslint/conf/globals.js +169 -0
- package/node_modules/eslint/conf/replacements.json +26 -0
- package/node_modules/eslint/conf/rule-type-list.json +91 -0
- package/node_modules/eslint/lib/api.js +50 -0
- package/node_modules/eslint/lib/cli-engine/cli-engine.js +1109 -0
- package/node_modules/eslint/lib/cli-engine/file-enumerator.js +541 -0
- package/node_modules/eslint/lib/cli-engine/formatters/formatters-meta.json +18 -0
- package/node_modules/eslint/lib/cli-engine/formatters/html.js +359 -0
- package/node_modules/eslint/lib/cli-engine/formatters/json-with-metadata.js +16 -0
- package/node_modules/eslint/lib/cli-engine/formatters/json.js +13 -0
- package/node_modules/eslint/lib/cli-engine/formatters/stylish.js +122 -0
- package/node_modules/eslint/lib/cli-engine/hash.js +35 -0
- package/node_modules/eslint/lib/cli-engine/index.js +7 -0
- package/node_modules/eslint/lib/cli-engine/lint-result-cache.js +220 -0
- package/node_modules/eslint/lib/cli-engine/load-rules.js +46 -0
- package/node_modules/eslint/lib/cli.js +553 -0
- package/node_modules/eslint/lib/config/config-loader.js +816 -0
- package/node_modules/eslint/lib/config/config.js +674 -0
- package/node_modules/eslint/lib/config/default-config.js +78 -0
- package/node_modules/eslint/lib/config/flat-config-array.js +217 -0
- package/node_modules/eslint/lib/config/flat-config-schema.js +598 -0
- package/node_modules/eslint/lib/config-api.js +12 -0
- package/node_modules/eslint/lib/eslint/eslint-helpers.js +1465 -0
- package/node_modules/eslint/lib/eslint/eslint.js +1362 -0
- package/node_modules/eslint/lib/eslint/index.js +9 -0
- package/node_modules/eslint/lib/eslint/legacy-eslint.js +786 -0
- package/node_modules/eslint/lib/eslint/worker.js +173 -0
- package/node_modules/eslint/lib/languages/js/index.js +336 -0
- package/node_modules/eslint/lib/languages/js/source-code/index.js +7 -0
- package/node_modules/eslint/lib/languages/js/source-code/source-code.js +1364 -0
- package/node_modules/eslint/lib/languages/js/source-code/token-store/backward-token-comment-cursor.js +61 -0
- package/node_modules/eslint/lib/languages/js/source-code/token-store/backward-token-cursor.js +57 -0
- package/node_modules/eslint/lib/languages/js/source-code/token-store/cursor.js +76 -0
- package/node_modules/eslint/lib/languages/js/source-code/token-store/cursors.js +120 -0
- package/node_modules/eslint/lib/languages/js/source-code/token-store/decorative-cursor.js +38 -0
- package/node_modules/eslint/lib/languages/js/source-code/token-store/filter-cursor.js +42 -0
- package/node_modules/eslint/lib/languages/js/source-code/token-store/forward-token-comment-cursor.js +65 -0
- package/node_modules/eslint/lib/languages/js/source-code/token-store/forward-token-cursor.js +62 -0
- package/node_modules/eslint/lib/languages/js/source-code/token-store/index.js +721 -0
- package/node_modules/eslint/lib/languages/js/source-code/token-store/limit-cursor.js +39 -0
- package/node_modules/eslint/lib/languages/js/source-code/token-store/padded-token-cursor.js +45 -0
- package/node_modules/eslint/lib/languages/js/source-code/token-store/skip-cursor.js +41 -0
- package/node_modules/eslint/lib/languages/js/source-code/token-store/utils.js +110 -0
- package/node_modules/eslint/lib/languages/js/validate-language-options.js +196 -0
- package/node_modules/eslint/lib/linter/apply-disable-directives.js +584 -0
- package/node_modules/eslint/lib/linter/code-path-analysis/code-path-analyzer.js +828 -0
- package/node_modules/eslint/lib/linter/code-path-analysis/code-path-segment.js +262 -0
- package/node_modules/eslint/lib/linter/code-path-analysis/code-path-state.js +2370 -0
- package/node_modules/eslint/lib/linter/code-path-analysis/code-path.js +332 -0
- package/node_modules/eslint/lib/linter/code-path-analysis/debug-helpers.js +223 -0
- package/node_modules/eslint/lib/linter/code-path-analysis/fork-context.js +374 -0
- package/node_modules/eslint/lib/linter/code-path-analysis/id-generator.js +44 -0
- package/node_modules/eslint/lib/linter/esquery.js +332 -0
- package/node_modules/eslint/lib/linter/file-context.js +144 -0
- package/node_modules/eslint/lib/linter/file-report.js +608 -0
- package/node_modules/eslint/lib/linter/index.js +11 -0
- package/node_modules/eslint/lib/linter/interpolate.js +50 -0
- package/node_modules/eslint/lib/linter/linter.js +2676 -0
- package/node_modules/eslint/lib/linter/rule-fixer.js +169 -0
- package/node_modules/eslint/lib/linter/rules.js +71 -0
- package/node_modules/eslint/lib/linter/source-code-fixer.js +154 -0
- package/node_modules/eslint/lib/linter/source-code-traverser.js +333 -0
- package/node_modules/eslint/lib/linter/source-code-visitor.js +81 -0
- package/node_modules/eslint/lib/linter/timing.js +209 -0
- package/node_modules/eslint/lib/linter/vfile.js +115 -0
- package/node_modules/eslint/lib/options.js +536 -0
- package/node_modules/eslint/lib/rule-tester/index.js +7 -0
- package/node_modules/eslint/lib/rule-tester/rule-tester.js +1579 -0
- package/node_modules/eslint/lib/rules/accessor-pairs.js +420 -0
- package/node_modules/eslint/lib/rules/array-bracket-newline.js +291 -0
- package/node_modules/eslint/lib/rules/array-bracket-spacing.js +301 -0
- package/node_modules/eslint/lib/rules/array-callback-return.js +493 -0
- package/node_modules/eslint/lib/rules/array-element-newline.js +374 -0
- package/node_modules/eslint/lib/rules/arrow-body-style.js +418 -0
- package/node_modules/eslint/lib/rules/arrow-parens.js +237 -0
- package/node_modules/eslint/lib/rules/arrow-spacing.js +188 -0
- package/node_modules/eslint/lib/rules/block-scoped-var.js +137 -0
- package/node_modules/eslint/lib/rules/block-spacing.js +202 -0
- package/node_modules/eslint/lib/rules/brace-style.js +278 -0
- package/node_modules/eslint/lib/rules/callback-return.js +216 -0
- package/node_modules/eslint/lib/rules/camelcase.js +422 -0
- package/node_modules/eslint/lib/rules/capitalized-comments.js +325 -0
- package/node_modules/eslint/lib/rules/class-methods-use-this.js +250 -0
- package/node_modules/eslint/lib/rules/comma-dangle.js +424 -0
- package/node_modules/eslint/lib/rules/comma-spacing.js +208 -0
- package/node_modules/eslint/lib/rules/comma-style.js +391 -0
- package/node_modules/eslint/lib/rules/complexity.js +201 -0
- package/node_modules/eslint/lib/rules/computed-property-spacing.js +251 -0
- package/node_modules/eslint/lib/rules/consistent-return.js +221 -0
- package/node_modules/eslint/lib/rules/consistent-this.js +179 -0
- package/node_modules/eslint/lib/rules/constructor-super.js +453 -0
- package/node_modules/eslint/lib/rules/curly.js +425 -0
- package/node_modules/eslint/lib/rules/default-case-last.js +51 -0
- package/node_modules/eslint/lib/rules/default-case.js +103 -0
- package/node_modules/eslint/lib/rules/default-param-last.js +78 -0
- package/node_modules/eslint/lib/rules/dot-location.js +138 -0
- package/node_modules/eslint/lib/rules/dot-notation.js +216 -0
- package/node_modules/eslint/lib/rules/eol-last.js +135 -0
- package/node_modules/eslint/lib/rules/eqeqeq.js +210 -0
- package/node_modules/eslint/lib/rules/for-direction.js +168 -0
- package/node_modules/eslint/lib/rules/func-call-spacing.js +281 -0
- package/node_modules/eslint/lib/rules/func-name-matching.js +338 -0
- package/node_modules/eslint/lib/rules/func-names.js +192 -0
- package/node_modules/eslint/lib/rules/func-style.js +221 -0
- package/node_modules/eslint/lib/rules/function-call-argument-newline.js +166 -0
- package/node_modules/eslint/lib/rules/function-paren-newline.js +368 -0
- package/node_modules/eslint/lib/rules/generator-star-spacing.js +246 -0
- package/node_modules/eslint/lib/rules/getter-return.js +242 -0
- package/node_modules/eslint/lib/rules/global-require.js +117 -0
- package/node_modules/eslint/lib/rules/grouped-accessor-pairs.js +268 -0
- package/node_modules/eslint/lib/rules/guard-for-in.js +85 -0
- package/node_modules/eslint/lib/rules/handle-callback-err.js +122 -0
- package/node_modules/eslint/lib/rules/id-blacklist.js +241 -0
- package/node_modules/eslint/lib/rules/id-denylist.js +223 -0
- package/node_modules/eslint/lib/rules/id-length.js +217 -0
- package/node_modules/eslint/lib/rules/id-match.js +363 -0
- package/node_modules/eslint/lib/rules/implicit-arrow-linebreak.js +125 -0
- package/node_modules/eslint/lib/rules/indent-legacy.js +1369 -0
- package/node_modules/eslint/lib/rules/indent.js +2334 -0
- package/node_modules/eslint/lib/rules/index.js +332 -0
- package/node_modules/eslint/lib/rules/init-declarations.js +172 -0
- package/node_modules/eslint/lib/rules/jsx-quotes.js +128 -0
- package/node_modules/eslint/lib/rules/key-spacing.js +822 -0
- package/node_modules/eslint/lib/rules/keyword-spacing.js +701 -0
- package/node_modules/eslint/lib/rules/line-comment-position.js +157 -0
- package/node_modules/eslint/lib/rules/linebreak-style.js +135 -0
- package/node_modules/eslint/lib/rules/lines-around-comment.js +581 -0
- package/node_modules/eslint/lib/rules/lines-around-directive.js +249 -0
- package/node_modules/eslint/lib/rules/lines-between-class-members.js +358 -0
- package/node_modules/eslint/lib/rules/logical-assignment-operators.js +688 -0
- package/node_modules/eslint/lib/rules/max-classes-per-file.js +90 -0
- package/node_modules/eslint/lib/rules/max-depth.js +159 -0
- package/node_modules/eslint/lib/rules/max-len.js +497 -0
- package/node_modules/eslint/lib/rules/max-lines-per-function.js +238 -0
- package/node_modules/eslint/lib/rules/max-lines.js +189 -0
- package/node_modules/eslint/lib/rules/max-nested-callbacks.js +115 -0
- package/node_modules/eslint/lib/rules/max-params.js +129 -0
- package/node_modules/eslint/lib/rules/max-statements-per-line.js +224 -0
- package/node_modules/eslint/lib/rules/max-statements.js +188 -0
- package/node_modules/eslint/lib/rules/multiline-comment-style.js +652 -0
- package/node_modules/eslint/lib/rules/multiline-ternary.js +257 -0
- package/node_modules/eslint/lib/rules/new-cap.js +277 -0
- package/node_modules/eslint/lib/rules/new-parens.js +120 -0
- package/node_modules/eslint/lib/rules/newline-after-var.js +307 -0
- package/node_modules/eslint/lib/rules/newline-before-return.js +242 -0
- package/node_modules/eslint/lib/rules/newline-per-chained-call.js +159 -0
- package/node_modules/eslint/lib/rules/no-alert.js +149 -0
- package/node_modules/eslint/lib/rules/no-array-constructor.js +195 -0
- package/node_modules/eslint/lib/rules/no-async-promise-executor.js +45 -0
- package/node_modules/eslint/lib/rules/no-await-in-loop.js +115 -0
- package/node_modules/eslint/lib/rules/no-bitwise.js +145 -0
- package/node_modules/eslint/lib/rules/no-buffer-constructor.js +74 -0
- package/node_modules/eslint/lib/rules/no-caller.js +52 -0
- package/node_modules/eslint/lib/rules/no-case-declarations.js +80 -0
- package/node_modules/eslint/lib/rules/no-catch-shadow.js +96 -0
- package/node_modules/eslint/lib/rules/no-class-assign.js +66 -0
- package/node_modules/eslint/lib/rules/no-compare-neg-zero.js +74 -0
- package/node_modules/eslint/lib/rules/no-cond-assign.js +175 -0
- package/node_modules/eslint/lib/rules/no-confusing-arrow.js +127 -0
- package/node_modules/eslint/lib/rules/no-console.js +221 -0
- package/node_modules/eslint/lib/rules/no-const-assign.js +73 -0
- package/node_modules/eslint/lib/rules/no-constant-binary-expression.js +603 -0
- package/node_modules/eslint/lib/rules/no-constant-condition.js +177 -0
- package/node_modules/eslint/lib/rules/no-constructor-return.js +62 -0
- package/node_modules/eslint/lib/rules/no-continue.js +38 -0
- package/node_modules/eslint/lib/rules/no-control-regex.js +142 -0
- package/node_modules/eslint/lib/rules/no-debugger.js +41 -0
- package/node_modules/eslint/lib/rules/no-delete-var.js +42 -0
- package/node_modules/eslint/lib/rules/no-div-regex.js +60 -0
- package/node_modules/eslint/lib/rules/no-dupe-args.js +92 -0
- package/node_modules/eslint/lib/rules/no-dupe-class-members.js +117 -0
- package/node_modules/eslint/lib/rules/no-dupe-else-if.js +145 -0
- package/node_modules/eslint/lib/rules/no-dupe-keys.js +165 -0
- package/node_modules/eslint/lib/rules/no-duplicate-case.js +78 -0
- package/node_modules/eslint/lib/rules/no-duplicate-imports.js +368 -0
- package/node_modules/eslint/lib/rules/no-else-return.js +450 -0
- package/node_modules/eslint/lib/rules/no-empty-character-class.js +83 -0
- package/node_modules/eslint/lib/rules/no-empty-function.js +236 -0
- package/node_modules/eslint/lib/rules/no-empty-pattern.js +85 -0
- package/node_modules/eslint/lib/rules/no-empty-static-block.js +73 -0
- package/node_modules/eslint/lib/rules/no-empty.js +153 -0
- package/node_modules/eslint/lib/rules/no-eq-null.js +51 -0
- package/node_modules/eslint/lib/rules/no-eval.js +295 -0
- package/node_modules/eslint/lib/rules/no-ex-assign.js +57 -0
- package/node_modules/eslint/lib/rules/no-extend-native.js +180 -0
- package/node_modules/eslint/lib/rules/no-extra-bind.js +224 -0
- package/node_modules/eslint/lib/rules/no-extra-boolean-cast.js +420 -0
- package/node_modules/eslint/lib/rules/no-extra-label.js +169 -0
- package/node_modules/eslint/lib/rules/no-extra-parens.js +1669 -0
- package/node_modules/eslint/lib/rules/no-extra-semi.js +167 -0
- package/node_modules/eslint/lib/rules/no-fallthrough.js +260 -0
- package/node_modules/eslint/lib/rules/no-floating-decimal.js +99 -0
- package/node_modules/eslint/lib/rules/no-func-assign.js +77 -0
- package/node_modules/eslint/lib/rules/no-global-assign.js +101 -0
- package/node_modules/eslint/lib/rules/no-implicit-coercion.js +468 -0
- package/node_modules/eslint/lib/rules/no-implicit-globals.js +187 -0
- package/node_modules/eslint/lib/rules/no-implied-eval.js +170 -0
- package/node_modules/eslint/lib/rules/no-import-assign.js +227 -0
- package/node_modules/eslint/lib/rules/no-inline-comments.js +115 -0
- package/node_modules/eslint/lib/rules/no-inner-declarations.js +147 -0
- package/node_modules/eslint/lib/rules/no-invalid-regexp.js +243 -0
- package/node_modules/eslint/lib/rules/no-invalid-this.js +178 -0
- package/node_modules/eslint/lib/rules/no-irregular-whitespace.js +292 -0
- package/node_modules/eslint/lib/rules/no-iterator.js +48 -0
- package/node_modules/eslint/lib/rules/no-label-var.js +78 -0
- package/node_modules/eslint/lib/rules/no-labels.js +156 -0
- package/node_modules/eslint/lib/rules/no-lone-blocks.js +140 -0
- package/node_modules/eslint/lib/rules/no-lonely-if.js +126 -0
- package/node_modules/eslint/lib/rules/no-loop-func.js +267 -0
- package/node_modules/eslint/lib/rules/no-loss-of-precision.js +249 -0
- package/node_modules/eslint/lib/rules/no-magic-numbers.js +365 -0
- package/node_modules/eslint/lib/rules/no-misleading-character-class.js +595 -0
- package/node_modules/eslint/lib/rules/no-mixed-operators.js +253 -0
- package/node_modules/eslint/lib/rules/no-mixed-requires.js +267 -0
- package/node_modules/eslint/lib/rules/no-mixed-spaces-and-tabs.js +148 -0
- package/node_modules/eslint/lib/rules/no-multi-assign.js +66 -0
- package/node_modules/eslint/lib/rules/no-multi-spaces.js +179 -0
- package/node_modules/eslint/lib/rules/no-multi-str.js +67 -0
- package/node_modules/eslint/lib/rules/no-multiple-empty-lines.js +210 -0
- package/node_modules/eslint/lib/rules/no-native-reassign.js +114 -0
- package/node_modules/eslint/lib/rules/no-negated-condition.js +100 -0
- package/node_modules/eslint/lib/rules/no-negated-in-lhs.js +59 -0
- package/node_modules/eslint/lib/rules/no-nested-ternary.js +46 -0
- package/node_modules/eslint/lib/rules/no-new-func.js +96 -0
- package/node_modules/eslint/lib/rules/no-new-native-nonconstructor.js +70 -0
- package/node_modules/eslint/lib/rules/no-new-object.js +76 -0
- package/node_modules/eslint/lib/rules/no-new-require.js +67 -0
- package/node_modules/eslint/lib/rules/no-new-symbol.js +74 -0
- package/node_modules/eslint/lib/rules/no-new-wrappers.js +62 -0
- package/node_modules/eslint/lib/rules/no-new.js +42 -0
- package/node_modules/eslint/lib/rules/no-nonoctal-decimal-escape.js +176 -0
- package/node_modules/eslint/lib/rules/no-obj-calls.js +99 -0
- package/node_modules/eslint/lib/rules/no-object-constructor.js +124 -0
- package/node_modules/eslint/lib/rules/no-octal-escape.js +53 -0
- package/node_modules/eslint/lib/rules/no-octal.js +42 -0
- package/node_modules/eslint/lib/rules/no-param-reassign.js +248 -0
- package/node_modules/eslint/lib/rules/no-path-concat.js +79 -0
- package/node_modules/eslint/lib/rules/no-plusplus.js +102 -0
- package/node_modules/eslint/lib/rules/no-process-env.js +68 -0
- package/node_modules/eslint/lib/rules/no-process-exit.js +67 -0
- package/node_modules/eslint/lib/rules/no-promise-executor-return.js +264 -0
- package/node_modules/eslint/lib/rules/no-proto.js +45 -0
- package/node_modules/eslint/lib/rules/no-prototype-builtins.js +181 -0
- package/node_modules/eslint/lib/rules/no-redeclare.js +173 -0
- package/node_modules/eslint/lib/rules/no-regex-spaces.js +219 -0
- package/node_modules/eslint/lib/rules/no-restricted-exports.js +227 -0
- package/node_modules/eslint/lib/rules/no-restricted-globals.js +266 -0
- package/node_modules/eslint/lib/rules/no-restricted-imports.js +850 -0
- package/node_modules/eslint/lib/rules/no-restricted-modules.js +249 -0
- package/node_modules/eslint/lib/rules/no-restricted-properties.js +233 -0
- package/node_modules/eslint/lib/rules/no-restricted-syntax.js +74 -0
- package/node_modules/eslint/lib/rules/no-return-assign.js +87 -0
- package/node_modules/eslint/lib/rules/no-return-await.js +162 -0
- package/node_modules/eslint/lib/rules/no-script-url.js +68 -0
- package/node_modules/eslint/lib/rules/no-self-assign.js +186 -0
- package/node_modules/eslint/lib/rules/no-self-compare.js +77 -0
- package/node_modules/eslint/lib/rules/no-sequences.js +158 -0
- package/node_modules/eslint/lib/rules/no-setter-return.js +224 -0
- package/node_modules/eslint/lib/rules/no-shadow-restricted-names.js +113 -0
- package/node_modules/eslint/lib/rules/no-shadow.js +624 -0
- package/node_modules/eslint/lib/rules/no-spaced-func.js +105 -0
- package/node_modules/eslint/lib/rules/no-sparse-arrays.js +68 -0
- package/node_modules/eslint/lib/rules/no-sync.js +81 -0
- package/node_modules/eslint/lib/rules/no-tabs.js +110 -0
- package/node_modules/eslint/lib/rules/no-template-curly-in-string.js +45 -0
- package/node_modules/eslint/lib/rules/no-ternary.js +38 -0
- package/node_modules/eslint/lib/rules/no-this-before-super.js +365 -0
- package/node_modules/eslint/lib/rules/no-throw-literal.js +46 -0
- package/node_modules/eslint/lib/rules/no-trailing-spaces.js +227 -0
- package/node_modules/eslint/lib/rules/no-unassigned-vars.js +80 -0
- package/node_modules/eslint/lib/rules/no-undef-init.js +101 -0
- package/node_modules/eslint/lib/rules/no-undef.js +84 -0
- package/node_modules/eslint/lib/rules/no-undefined.js +85 -0
- package/node_modules/eslint/lib/rules/no-underscore-dangle.js +383 -0
- package/node_modules/eslint/lib/rules/no-unexpected-multiline.js +130 -0
- package/node_modules/eslint/lib/rules/no-unmodified-loop-condition.js +360 -0
- package/node_modules/eslint/lib/rules/no-unneeded-ternary.js +232 -0
- package/node_modules/eslint/lib/rules/no-unreachable-loop.js +190 -0
- package/node_modules/eslint/lib/rules/no-unreachable.js +300 -0
- package/node_modules/eslint/lib/rules/no-unsafe-finally.js +119 -0
- package/node_modules/eslint/lib/rules/no-unsafe-negation.js +152 -0
- package/node_modules/eslint/lib/rules/no-unsafe-optional-chaining.js +221 -0
- package/node_modules/eslint/lib/rules/no-unused-expressions.js +227 -0
- package/node_modules/eslint/lib/rules/no-unused-labels.js +158 -0
- package/node_modules/eslint/lib/rules/no-unused-private-class-members.js +219 -0
- package/node_modules/eslint/lib/rules/no-unused-vars.js +1739 -0
- package/node_modules/eslint/lib/rules/no-use-before-define.js +446 -0
- package/node_modules/eslint/lib/rules/no-useless-assignment.js +654 -0
- package/node_modules/eslint/lib/rules/no-useless-backreference.js +263 -0
- package/node_modules/eslint/lib/rules/no-useless-call.js +95 -0
- package/node_modules/eslint/lib/rules/no-useless-catch.js +57 -0
- package/node_modules/eslint/lib/rules/no-useless-computed-key.js +204 -0
- package/node_modules/eslint/lib/rules/no-useless-concat.js +121 -0
- package/node_modules/eslint/lib/rules/no-useless-constructor.js +252 -0
- package/node_modules/eslint/lib/rules/no-useless-escape.js +406 -0
- package/node_modules/eslint/lib/rules/no-useless-rename.js +202 -0
- package/node_modules/eslint/lib/rules/no-useless-return.js +401 -0
- package/node_modules/eslint/lib/rules/no-var.js +367 -0
- package/node_modules/eslint/lib/rules/no-void.js +69 -0
- package/node_modules/eslint/lib/rules/no-warning-comments.js +209 -0
- package/node_modules/eslint/lib/rules/no-whitespace-before-property.js +150 -0
- package/node_modules/eslint/lib/rules/no-with.js +37 -0
- package/node_modules/eslint/lib/rules/nonblock-statement-body-position.js +164 -0
- package/node_modules/eslint/lib/rules/object-curly-newline.js +383 -0
- package/node_modules/eslint/lib/rules/object-curly-spacing.js +375 -0
- package/node_modules/eslint/lib/rules/object-property-newline.js +151 -0
- package/node_modules/eslint/lib/rules/object-shorthand.js +652 -0
- package/node_modules/eslint/lib/rules/one-var-declaration-per-line.js +117 -0
- package/node_modules/eslint/lib/rules/one-var.js +717 -0
- package/node_modules/eslint/lib/rules/operator-assignment.js +270 -0
- package/node_modules/eslint/lib/rules/operator-linebreak.js +315 -0
- package/node_modules/eslint/lib/rules/padded-blocks.js +366 -0
- package/node_modules/eslint/lib/rules/padding-line-between-statements.js +612 -0
- package/node_modules/eslint/lib/rules/prefer-arrow-callback.js +437 -0
- package/node_modules/eslint/lib/rules/prefer-const.js +546 -0
- package/node_modules/eslint/lib/rules/prefer-destructuring.js +332 -0
- package/node_modules/eslint/lib/rules/prefer-exponentiation-operator.js +235 -0
- package/node_modules/eslint/lib/rules/prefer-named-capture-group.js +197 -0
- package/node_modules/eslint/lib/rules/prefer-numeric-literals.js +157 -0
- package/node_modules/eslint/lib/rules/prefer-object-has-own.js +148 -0
- package/node_modules/eslint/lib/rules/prefer-object-spread.js +319 -0
- package/node_modules/eslint/lib/rules/prefer-promise-reject-errors.js +154 -0
- package/node_modules/eslint/lib/rules/prefer-reflect.js +150 -0
- package/node_modules/eslint/lib/rules/prefer-regex-literals.js +605 -0
- package/node_modules/eslint/lib/rules/prefer-rest-params.js +117 -0
- package/node_modules/eslint/lib/rules/prefer-spread.js +91 -0
- package/node_modules/eslint/lib/rules/prefer-template.js +347 -0
- package/node_modules/eslint/lib/rules/preserve-caught-error.js +535 -0
- package/node_modules/eslint/lib/rules/quote-props.js +394 -0
- package/node_modules/eslint/lib/rules/quotes.js +416 -0
- package/node_modules/eslint/lib/rules/radix.js +216 -0
- package/node_modules/eslint/lib/rules/require-atomic-updates.js +365 -0
- package/node_modules/eslint/lib/rules/require-await.js +184 -0
- package/node_modules/eslint/lib/rules/require-unicode-regexp.js +317 -0
- package/node_modules/eslint/lib/rules/require-yield.js +76 -0
- package/node_modules/eslint/lib/rules/rest-spread-spacing.js +153 -0
- package/node_modules/eslint/lib/rules/semi-spacing.js +297 -0
- package/node_modules/eslint/lib/rules/semi-style.js +218 -0
- package/node_modules/eslint/lib/rules/semi.js +476 -0
- package/node_modules/eslint/lib/rules/sort-imports.js +319 -0
- package/node_modules/eslint/lib/rules/sort-keys.js +268 -0
- package/node_modules/eslint/lib/rules/sort-vars.js +140 -0
- package/node_modules/eslint/lib/rules/space-before-blocks.js +232 -0
- package/node_modules/eslint/lib/rules/space-before-function-paren.js +205 -0
- package/node_modules/eslint/lib/rules/space-in-parens.js +374 -0
- package/node_modules/eslint/lib/rules/space-infix-ops.js +252 -0
- package/node_modules/eslint/lib/rules/space-unary-ops.js +400 -0
- package/node_modules/eslint/lib/rules/spaced-comment.js +447 -0
- package/node_modules/eslint/lib/rules/strict.js +314 -0
- package/node_modules/eslint/lib/rules/switch-colon-spacing.js +158 -0
- package/node_modules/eslint/lib/rules/symbol-description.js +70 -0
- package/node_modules/eslint/lib/rules/template-curly-spacing.js +168 -0
- package/node_modules/eslint/lib/rules/template-tag-spacing.js +121 -0
- package/node_modules/eslint/lib/rules/unicode-bom.js +73 -0
- package/node_modules/eslint/lib/rules/use-isnan.js +268 -0
- package/node_modules/eslint/lib/rules/utils/ast-utils.js +2733 -0
- package/node_modules/eslint/lib/rules/utils/char-source.js +247 -0
- package/node_modules/eslint/lib/rules/utils/fix-tracker.js +125 -0
- package/node_modules/eslint/lib/rules/utils/keywords.js +67 -0
- package/node_modules/eslint/lib/rules/utils/lazy-loading-rule-map.js +118 -0
- package/node_modules/eslint/lib/rules/utils/regular-expressions.js +58 -0
- package/node_modules/eslint/lib/rules/utils/unicode/index.js +16 -0
- package/node_modules/eslint/lib/rules/utils/unicode/is-combining-character.js +13 -0
- package/node_modules/eslint/lib/rules/utils/unicode/is-emoji-modifier.js +13 -0
- package/node_modules/eslint/lib/rules/utils/unicode/is-regional-indicator-symbol.js +13 -0
- package/node_modules/eslint/lib/rules/utils/unicode/is-surrogate-pair.js +14 -0
- package/node_modules/eslint/lib/rules/valid-typeof.js +171 -0
- package/node_modules/eslint/lib/rules/vars-on-top.js +165 -0
- package/node_modules/eslint/lib/rules/wrap-iife.js +238 -0
- package/node_modules/eslint/lib/rules/wrap-regex.js +91 -0
- package/node_modules/eslint/lib/rules/yield-star-spacing.js +159 -0
- package/node_modules/eslint/lib/rules/yoda.js +362 -0
- package/node_modules/eslint/lib/services/parser-service.js +65 -0
- package/node_modules/eslint/lib/services/processor-service.js +101 -0
- package/node_modules/eslint/lib/services/suppressions-service.js +302 -0
- package/node_modules/eslint/lib/services/warning-service.js +111 -0
- package/node_modules/eslint/lib/shared/ajv.js +34 -0
- package/node_modules/eslint/lib/shared/assert.js +21 -0
- package/node_modules/eslint/lib/shared/ast-utils.js +30 -0
- package/node_modules/eslint/lib/shared/deep-merge-arrays.js +62 -0
- package/node_modules/eslint/lib/shared/directives.js +16 -0
- package/node_modules/eslint/lib/shared/flags.js +108 -0
- package/node_modules/eslint/lib/shared/logging.js +38 -0
- package/node_modules/eslint/lib/shared/naming.js +109 -0
- package/node_modules/eslint/lib/shared/option-utils.js +63 -0
- package/node_modules/eslint/lib/shared/relative-module-resolver.js +28 -0
- package/node_modules/eslint/lib/shared/runtime-info.js +177 -0
- package/node_modules/eslint/lib/shared/serialization.js +78 -0
- package/node_modules/eslint/lib/shared/severity.js +49 -0
- package/node_modules/eslint/lib/shared/stats.js +30 -0
- package/node_modules/eslint/lib/shared/string-utils.js +58 -0
- package/node_modules/eslint/lib/shared/text-table.js +68 -0
- package/node_modules/eslint/lib/shared/translate-cli-options.js +281 -0
- package/node_modules/eslint/lib/shared/traverser.js +202 -0
- package/node_modules/eslint/lib/types/config-api.d.ts +12 -0
- package/node_modules/eslint/lib/types/index.d.ts +1915 -0
- package/node_modules/eslint/lib/types/rules.d.ts +5589 -0
- package/node_modules/eslint/lib/types/universal.d.ts +6 -0
- package/node_modules/eslint/lib/types/use-at-your-own-risk.d.ts +87 -0
- package/node_modules/eslint/lib/universal.js +10 -0
- package/node_modules/eslint/lib/unsupported-api.js +29 -0
- package/node_modules/eslint/messages/all-files-ignored.js +16 -0
- package/node_modules/eslint/messages/all-matched-files-ignored.js +21 -0
- package/node_modules/eslint/messages/config-file-missing.js +16 -0
- package/node_modules/eslint/messages/config-plugin-missing.js +14 -0
- package/node_modules/eslint/messages/config-serialize-function.js +30 -0
- package/node_modules/eslint/messages/eslintrc-incompat.js +117 -0
- package/node_modules/eslint/messages/eslintrc-plugins.js +27 -0
- package/node_modules/eslint/messages/extend-config-missing.js +13 -0
- package/node_modules/eslint/messages/failed-to-read-json.js +11 -0
- package/node_modules/eslint/messages/file-not-found.js +10 -0
- package/node_modules/eslint/messages/invalid-rule-options.js +17 -0
- package/node_modules/eslint/messages/invalid-rule-severity.js +13 -0
- package/node_modules/eslint/messages/no-config-found.js +15 -0
- package/node_modules/eslint/messages/plugin-conflict.js +22 -0
- package/node_modules/eslint/messages/plugin-invalid.js +16 -0
- package/node_modules/eslint/messages/plugin-missing.js +19 -0
- package/node_modules/eslint/messages/print-config-with-directory-path.js +8 -0
- package/node_modules/eslint/messages/shared.js +23 -0
- package/node_modules/eslint/messages/whitespace-found.js +11 -0
- package/node_modules/eslint/node_modules/brace-expansion/LICENSE +21 -0
- package/node_modules/eslint/node_modules/brace-expansion/README.md +129 -0
- package/node_modules/eslint/node_modules/brace-expansion/index.js +203 -0
- package/node_modules/eslint/node_modules/brace-expansion/package.json +50 -0
- package/node_modules/eslint/node_modules/escape-string-regexp/index.d.ts +18 -0
- package/node_modules/eslint/node_modules/escape-string-regexp/index.js +13 -0
- package/node_modules/eslint/node_modules/escape-string-regexp/license +9 -0
- package/node_modules/eslint/node_modules/escape-string-regexp/package.json +38 -0
- package/node_modules/eslint/node_modules/escape-string-regexp/readme.md +34 -0
- package/node_modules/eslint/node_modules/find-up/index.d.ts +138 -0
- package/node_modules/eslint/node_modules/find-up/index.js +89 -0
- package/node_modules/eslint/node_modules/find-up/license +9 -0
- package/node_modules/eslint/node_modules/find-up/package.json +54 -0
- package/node_modules/eslint/node_modules/find-up/readme.md +151 -0
- package/node_modules/eslint/node_modules/glob-parent/LICENSE +15 -0
- package/node_modules/eslint/node_modules/glob-parent/README.md +134 -0
- package/node_modules/eslint/node_modules/glob-parent/index.js +75 -0
- package/node_modules/eslint/node_modules/glob-parent/package.json +54 -0
- package/node_modules/eslint/node_modules/locate-path/index.d.ts +83 -0
- package/node_modules/eslint/node_modules/locate-path/index.js +68 -0
- package/node_modules/eslint/node_modules/locate-path/license +9 -0
- package/node_modules/eslint/node_modules/locate-path/package.json +46 -0
- package/node_modules/eslint/node_modules/locate-path/readme.md +125 -0
- package/node_modules/eslint/node_modules/minimatch/LICENSE +15 -0
- package/node_modules/eslint/node_modules/minimatch/README.md +267 -0
- package/node_modules/eslint/node_modules/minimatch/minimatch.js +1005 -0
- package/node_modules/eslint/node_modules/minimatch/package.json +33 -0
- package/node_modules/eslint/node_modules/p-locate/index.d.ts +53 -0
- package/node_modules/eslint/node_modules/p-locate/index.js +50 -0
- package/node_modules/eslint/node_modules/p-locate/license +9 -0
- package/node_modules/eslint/node_modules/p-locate/package.json +54 -0
- package/node_modules/eslint/node_modules/p-locate/readme.md +93 -0
- package/node_modules/eslint/package.json +226 -0
- package/node_modules/eslint-scope/LICENSE +22 -0
- package/node_modules/eslint-scope/README.md +198 -0
- package/node_modules/eslint-scope/dist/eslint-scope.cjs +2339 -0
- package/node_modules/eslint-scope/lib/assert.js +17 -0
- package/node_modules/eslint-scope/lib/definition.js +85 -0
- package/node_modules/eslint-scope/lib/index.js +170 -0
- package/node_modules/eslint-scope/lib/pattern-visitor.js +154 -0
- package/node_modules/eslint-scope/lib/reference.js +166 -0
- package/node_modules/eslint-scope/lib/referencer.js +708 -0
- package/node_modules/eslint-scope/lib/scope-manager.js +253 -0
- package/node_modules/eslint-scope/lib/scope.js +793 -0
- package/node_modules/eslint-scope/lib/variable.js +87 -0
- package/node_modules/eslint-scope/lib/version.js +3 -0
- package/node_modules/eslint-scope/package.json +64 -0
- package/node_modules/eslint-visitor-keys/LICENSE +201 -0
- package/node_modules/eslint-visitor-keys/README.md +121 -0
- package/node_modules/eslint-visitor-keys/dist/eslint-visitor-keys.cjs +396 -0
- package/node_modules/eslint-visitor-keys/dist/eslint-visitor-keys.d.cts +28 -0
- package/node_modules/eslint-visitor-keys/dist/index.d.ts +16 -0
- package/node_modules/eslint-visitor-keys/dist/visitor-keys.d.ts +12 -0
- package/node_modules/eslint-visitor-keys/lib/index.js +67 -0
- package/node_modules/eslint-visitor-keys/lib/visitor-keys.js +327 -0
- package/node_modules/eslint-visitor-keys/package.json +70 -0
- package/node_modules/espree/LICENSE +25 -0
- package/node_modules/espree/README.md +262 -0
- package/node_modules/espree/dist/espree.cjs +940 -0
- package/node_modules/espree/espree.js +174 -0
- package/node_modules/espree/lib/espree.js +349 -0
- package/node_modules/espree/lib/features.js +27 -0
- package/node_modules/espree/lib/options.js +125 -0
- package/node_modules/espree/lib/token-translator.js +263 -0
- package/node_modules/espree/lib/version.js +3 -0
- package/node_modules/espree/package.json +77 -0
- package/node_modules/esquery/README.md +27 -0
- package/node_modules/esquery/dist/esquery.esm.js +4418 -0
- package/node_modules/esquery/dist/esquery.esm.min.js +2 -0
- package/node_modules/esquery/dist/esquery.esm.min.js.map +1 -0
- package/node_modules/esquery/dist/esquery.js +4426 -0
- package/node_modules/esquery/dist/esquery.lite.js +3716 -0
- package/node_modules/esquery/dist/esquery.lite.min.js +2 -0
- package/node_modules/esquery/dist/esquery.lite.min.js.map +1 -0
- package/node_modules/esquery/dist/esquery.min.js +2 -0
- package/node_modules/esquery/dist/esquery.min.js.map +1 -0
- package/node_modules/esquery/license.txt +24 -0
- package/node_modules/esquery/package.json +78 -0
- package/node_modules/esquery/parser.js +2941 -0
- package/node_modules/esrecurse/.babelrc +3 -0
- package/node_modules/esrecurse/README.md +171 -0
- package/node_modules/esrecurse/esrecurse.js +117 -0
- package/node_modules/esrecurse/gulpfile.babel.js +92 -0
- package/node_modules/esrecurse/package.json +52 -0
- package/node_modules/estraverse/.jshintrc +16 -0
- package/node_modules/estraverse/LICENSE.BSD +19 -0
- package/node_modules/estraverse/README.md +153 -0
- package/node_modules/estraverse/estraverse.js +805 -0
- package/node_modules/estraverse/gulpfile.js +70 -0
- package/node_modules/estraverse/package.json +40 -0
- package/node_modules/esutils/LICENSE.BSD +19 -0
- package/node_modules/esutils/README.md +174 -0
- package/node_modules/esutils/lib/ast.js +144 -0
- package/node_modules/esutils/lib/code.js +135 -0
- package/node_modules/esutils/lib/keyword.js +165 -0
- package/node_modules/esutils/lib/utils.js +33 -0
- package/node_modules/esutils/package.json +44 -0
- package/node_modules/fast-deep-equal/LICENSE +21 -0
- package/node_modules/fast-deep-equal/README.md +96 -0
- package/node_modules/fast-deep-equal/es6/index.d.ts +2 -0
- package/node_modules/fast-deep-equal/es6/index.js +72 -0
- package/node_modules/fast-deep-equal/es6/react.d.ts +2 -0
- package/node_modules/fast-deep-equal/es6/react.js +79 -0
- package/node_modules/fast-deep-equal/index.d.ts +4 -0
- package/node_modules/fast-deep-equal/index.js +46 -0
- package/node_modules/fast-deep-equal/package.json +61 -0
- package/node_modules/fast-deep-equal/react.d.ts +2 -0
- package/node_modules/fast-deep-equal/react.js +53 -0
- package/node_modules/fast-json-stable-stringify/.eslintrc.yml +26 -0
- package/node_modules/fast-json-stable-stringify/.github/FUNDING.yml +1 -0
- package/node_modules/fast-json-stable-stringify/.travis.yml +8 -0
- package/node_modules/fast-json-stable-stringify/LICENSE +21 -0
- package/node_modules/fast-json-stable-stringify/README.md +131 -0
- package/node_modules/fast-json-stable-stringify/benchmark/index.js +31 -0
- package/node_modules/fast-json-stable-stringify/benchmark/test.json +137 -0
- package/node_modules/fast-json-stable-stringify/example/key_cmp.js +7 -0
- package/node_modules/fast-json-stable-stringify/example/nested.js +3 -0
- package/node_modules/fast-json-stable-stringify/example/str.js +3 -0
- package/node_modules/fast-json-stable-stringify/example/value_cmp.js +7 -0
- package/node_modules/fast-json-stable-stringify/index.d.ts +4 -0
- package/node_modules/fast-json-stable-stringify/index.js +59 -0
- package/node_modules/fast-json-stable-stringify/package.json +52 -0
- package/node_modules/fast-json-stable-stringify/test/cmp.js +13 -0
- package/node_modules/fast-json-stable-stringify/test/nested.js +44 -0
- package/node_modules/fast-json-stable-stringify/test/str.js +46 -0
- package/node_modules/fast-json-stable-stringify/test/to-json.js +22 -0
- package/node_modules/fast-levenshtein/LICENSE.md +25 -0
- package/node_modules/fast-levenshtein/README.md +104 -0
- package/node_modules/fast-levenshtein/levenshtein.js +136 -0
- package/node_modules/fast-levenshtein/package.json +39 -0
- package/node_modules/fdir/LICENSE +7 -0
- package/node_modules/fdir/README.md +91 -0
- package/node_modules/fdir/dist/index.cjs +588 -0
- package/node_modules/fdir/dist/index.d.cts +155 -0
- package/node_modules/fdir/dist/index.d.mts +155 -0
- package/node_modules/fdir/dist/index.mjs +570 -0
- package/node_modules/fdir/package.json +103 -0
- package/node_modules/file-entry-cache/LICENSE +22 -0
- package/node_modules/file-entry-cache/README.md +115 -0
- package/node_modules/file-entry-cache/cache.js +291 -0
- package/node_modules/file-entry-cache/package.json +56 -0
- package/node_modules/flat-cache/LICENSE +22 -0
- package/node_modules/flat-cache/README.md +77 -0
- package/node_modules/flat-cache/package.json +63 -0
- package/node_modules/flat-cache/src/cache.js +214 -0
- package/node_modules/flat-cache/src/del.js +30 -0
- package/node_modules/flat-cache/src/utils.js +42 -0
- package/node_modules/flatted/LICENSE +15 -0
- package/node_modules/flatted/README.md +111 -0
- package/node_modules/flatted/cjs/index.js +132 -0
- package/node_modules/flatted/cjs/package.json +1 -0
- package/node_modules/flatted/es.js +1 -0
- package/node_modules/flatted/esm/index.js +127 -0
- package/node_modules/flatted/esm.js +1 -0
- package/node_modules/flatted/golang/README.md +60 -0
- package/node_modules/flatted/golang/pkg/flatted/flatted.go +277 -0
- package/node_modules/flatted/index.js +155 -0
- package/node_modules/flatted/min.js +1 -0
- package/node_modules/flatted/package.json +80 -0
- package/node_modules/flatted/php/flatted.php +156 -0
- package/node_modules/flatted/python/flatted.py +144 -0
- package/node_modules/flatted/types/index.d.ts +4 -0
- package/node_modules/globals/globals.json +1998 -0
- package/node_modules/globals/index.d.ts +2077 -0
- package/node_modules/globals/index.js +2 -0
- package/node_modules/globals/license +9 -0
- package/node_modules/globals/package.json +58 -0
- package/node_modules/globals/readme.md +44 -0
- package/node_modules/has-flag/index.d.ts +39 -0
- package/node_modules/has-flag/index.js +8 -0
- package/node_modules/has-flag/license +9 -0
- package/node_modules/has-flag/package.json +46 -0
- package/node_modules/has-flag/readme.md +89 -0
- package/node_modules/ignore/LICENSE-MIT +21 -0
- package/node_modules/ignore/README.md +412 -0
- package/node_modules/ignore/index.d.ts +61 -0
- package/node_modules/ignore/index.js +636 -0
- package/node_modules/ignore/legacy.js +559 -0
- package/node_modules/ignore/package.json +74 -0
- package/node_modules/import-fresh/index.d.ts +30 -0
- package/node_modules/import-fresh/index.js +34 -0
- package/node_modules/import-fresh/license +9 -0
- package/node_modules/import-fresh/node_modules/resolve-from/index.js +47 -0
- package/node_modules/import-fresh/node_modules/resolve-from/license +9 -0
- package/node_modules/import-fresh/node_modules/resolve-from/package.json +34 -0
- package/node_modules/import-fresh/node_modules/resolve-from/readme.md +72 -0
- package/node_modules/import-fresh/package.json +48 -0
- package/node_modules/import-fresh/readme.md +54 -0
- package/node_modules/imurmurhash/README.md +122 -0
- package/node_modules/imurmurhash/imurmurhash.js +138 -0
- package/node_modules/imurmurhash/imurmurhash.min.js +12 -0
- package/node_modules/imurmurhash/package.json +40 -0
- package/node_modules/is-extglob/LICENSE +21 -0
- package/node_modules/is-extglob/README.md +107 -0
- package/node_modules/is-extglob/index.js +20 -0
- package/node_modules/is-extglob/package.json +69 -0
- package/node_modules/is-glob/LICENSE +21 -0
- package/node_modules/is-glob/README.md +206 -0
- package/node_modules/is-glob/index.js +150 -0
- package/node_modules/is-glob/package.json +81 -0
- package/node_modules/isexe/.npmignore +2 -0
- package/node_modules/isexe/LICENSE +15 -0
- package/node_modules/isexe/README.md +51 -0
- package/node_modules/isexe/index.js +57 -0
- package/node_modules/isexe/mode.js +41 -0
- package/node_modules/isexe/package.json +31 -0
- package/node_modules/isexe/test/basic.js +221 -0
- package/node_modules/isexe/windows.js +42 -0
- package/node_modules/json-buffer/.travis.yml +3 -0
- package/node_modules/json-buffer/LICENSE +22 -0
- package/node_modules/json-buffer/README.md +24 -0
- package/node_modules/json-buffer/index.js +58 -0
- package/node_modules/json-buffer/package.json +34 -0
- package/node_modules/json-buffer/test/index.js +63 -0
- package/node_modules/json-schema-traverse/.eslintrc.yml +27 -0
- package/node_modules/json-schema-traverse/.travis.yml +8 -0
- package/node_modules/json-schema-traverse/LICENSE +21 -0
- package/node_modules/json-schema-traverse/README.md +83 -0
- package/node_modules/json-schema-traverse/index.js +89 -0
- package/node_modules/json-schema-traverse/package.json +43 -0
- package/node_modules/json-schema-traverse/spec/.eslintrc.yml +6 -0
- package/node_modules/json-schema-traverse/spec/fixtures/schema.js +125 -0
- package/node_modules/json-schema-traverse/spec/index.spec.js +171 -0
- package/node_modules/json-stable-stringify-without-jsonify/.npmignore +1 -0
- package/node_modules/json-stable-stringify-without-jsonify/.travis.yml +4 -0
- package/node_modules/json-stable-stringify-without-jsonify/LICENSE +18 -0
- package/node_modules/json-stable-stringify-without-jsonify/example/key_cmp.js +7 -0
- package/node_modules/json-stable-stringify-without-jsonify/example/nested.js +3 -0
- package/node_modules/json-stable-stringify-without-jsonify/example/str.js +3 -0
- package/node_modules/json-stable-stringify-without-jsonify/example/value_cmp.js +7 -0
- package/node_modules/json-stable-stringify-without-jsonify/index.js +82 -0
- package/node_modules/json-stable-stringify-without-jsonify/package.json +43 -0
- package/node_modules/json-stable-stringify-without-jsonify/readme.markdown +132 -0
- package/node_modules/json-stable-stringify-without-jsonify/test/cmp.js +11 -0
- package/node_modules/json-stable-stringify-without-jsonify/test/nested.js +42 -0
- package/node_modules/json-stable-stringify-without-jsonify/test/replacer.js +74 -0
- package/node_modules/json-stable-stringify-without-jsonify/test/space.js +59 -0
- package/node_modules/json-stable-stringify-without-jsonify/test/str.js +32 -0
- package/node_modules/json-stable-stringify-without-jsonify/test/to-json.js +20 -0
- package/node_modules/keyv/README.md +429 -0
- package/node_modules/keyv/package.json +57 -0
- package/node_modules/keyv/src/index.d.ts +112 -0
- package/node_modules/keyv/src/index.js +259 -0
- package/node_modules/levn/LICENSE +22 -0
- package/node_modules/levn/README.md +196 -0
- package/node_modules/levn/lib/cast.js +327 -0
- package/node_modules/levn/lib/index.js +22 -0
- package/node_modules/levn/lib/parse-string.js +113 -0
- package/node_modules/levn/package.json +46 -0
- package/node_modules/lodash.merge/LICENSE +47 -0
- package/node_modules/lodash.merge/README.md +18 -0
- package/node_modules/lodash.merge/index.js +1977 -0
- package/node_modules/lodash.merge/package.json +16 -0
- package/node_modules/ms/index.js +162 -0
- package/node_modules/ms/license.md +21 -0
- package/node_modules/ms/package.json +38 -0
- package/node_modules/ms/readme.md +59 -0
- package/node_modules/natural-compare/README.md +125 -0
- package/node_modules/natural-compare/index.js +57 -0
- package/node_modules/natural-compare/package.json +42 -0
- package/node_modules/optionator/LICENSE +22 -0
- package/node_modules/optionator/README.md +238 -0
- package/node_modules/optionator/lib/help.js +260 -0
- package/node_modules/optionator/lib/index.js +465 -0
- package/node_modules/optionator/lib/util.js +54 -0
- package/node_modules/optionator/package.json +43 -0
- package/node_modules/p-limit/index.d.ts +42 -0
- package/node_modules/p-limit/index.js +71 -0
- package/node_modules/p-limit/license +9 -0
- package/node_modules/p-limit/package.json +52 -0
- package/node_modules/p-limit/readme.md +101 -0
- package/node_modules/parent-module/index.js +37 -0
- package/node_modules/parent-module/license +9 -0
- package/node_modules/parent-module/package.json +46 -0
- package/node_modules/parent-module/readme.md +67 -0
- package/node_modules/path-exists/index.d.ts +28 -0
- package/node_modules/path-exists/index.js +23 -0
- package/node_modules/path-exists/license +9 -0
- package/node_modules/path-exists/package.json +39 -0
- package/node_modules/path-exists/readme.md +52 -0
- package/node_modules/path-key/index.d.ts +40 -0
- package/node_modules/path-key/index.js +16 -0
- package/node_modules/path-key/license +9 -0
- package/node_modules/path-key/package.json +39 -0
- package/node_modules/path-key/readme.md +61 -0
- package/node_modules/picomatch/LICENSE +21 -0
- package/node_modules/picomatch/README.md +749 -0
- package/node_modules/picomatch/index.js +17 -0
- package/node_modules/picomatch/lib/constants.js +184 -0
- package/node_modules/picomatch/lib/parse.js +1386 -0
- package/node_modules/picomatch/lib/picomatch.js +349 -0
- package/node_modules/picomatch/lib/scan.js +391 -0
- package/node_modules/picomatch/lib/utils.js +72 -0
- package/node_modules/picomatch/package.json +82 -0
- package/node_modules/picomatch/posix.js +3 -0
- package/node_modules/prelude-ls/LICENSE +22 -0
- package/node_modules/prelude-ls/README.md +15 -0
- package/node_modules/prelude-ls/lib/Func.js +69 -0
- package/node_modules/prelude-ls/lib/List.js +716 -0
- package/node_modules/prelude-ls/lib/Num.js +130 -0
- package/node_modules/prelude-ls/lib/Obj.js +154 -0
- package/node_modules/prelude-ls/lib/Str.js +92 -0
- package/node_modules/prelude-ls/lib/index.js +178 -0
- package/node_modules/prelude-ls/package.json +46 -0
- package/node_modules/punycode/LICENSE-MIT.txt +20 -0
- package/node_modules/punycode/README.md +148 -0
- package/node_modules/punycode/package.json +58 -0
- package/node_modules/punycode/punycode.es6.js +444 -0
- package/node_modules/punycode/punycode.js +443 -0
- package/node_modules/shebang-command/index.js +19 -0
- package/node_modules/shebang-command/license +9 -0
- package/node_modules/shebang-command/package.json +34 -0
- package/node_modules/shebang-command/readme.md +34 -0
- package/node_modules/shebang-regex/index.d.ts +22 -0
- package/node_modules/shebang-regex/index.js +2 -0
- package/node_modules/shebang-regex/license +9 -0
- package/node_modules/shebang-regex/package.json +35 -0
- package/node_modules/shebang-regex/readme.md +33 -0
- package/node_modules/strip-json-comments/index.d.ts +36 -0
- package/node_modules/strip-json-comments/index.js +77 -0
- package/node_modules/strip-json-comments/license +9 -0
- package/node_modules/strip-json-comments/package.json +47 -0
- package/node_modules/strip-json-comments/readme.md +78 -0
- package/node_modules/supports-color/browser.js +5 -0
- package/node_modules/supports-color/index.js +135 -0
- package/node_modules/supports-color/license +9 -0
- package/node_modules/supports-color/package.json +53 -0
- package/node_modules/supports-color/readme.md +76 -0
- package/node_modules/tinyglobby/LICENSE +21 -0
- package/node_modules/tinyglobby/README.md +25 -0
- package/node_modules/tinyglobby/dist/index.cjs +335 -0
- package/node_modules/tinyglobby/dist/index.d.cts +148 -0
- package/node_modules/tinyglobby/dist/index.d.mts +148 -0
- package/node_modules/tinyglobby/dist/index.mjs +307 -0
- package/node_modules/tinyglobby/package.json +70 -0
- package/node_modules/ts-api-utils/LICENSE.md +20 -0
- package/node_modules/ts-api-utils/README.md +40 -0
- package/node_modules/ts-api-utils/lib/index.cjs +2308 -0
- package/node_modules/ts-api-utils/lib/index.d.cts +3053 -0
- package/node_modules/ts-api-utils/lib/index.d.ts +3053 -0
- package/node_modules/ts-api-utils/lib/index.js +2107 -0
- package/node_modules/ts-api-utils/package.json +101 -0
- package/node_modules/type-check/LICENSE +22 -0
- package/node_modules/type-check/README.md +210 -0
- package/node_modules/type-check/lib/check.js +128 -0
- package/node_modules/type-check/lib/index.js +16 -0
- package/node_modules/type-check/lib/parse-type.js +198 -0
- package/node_modules/type-check/package.json +39 -0
- package/node_modules/typescript-eslint/LICENSE +21 -0
- package/node_modules/typescript-eslint/README.md +12 -0
- package/node_modules/typescript-eslint/dist/compatibility-types.d.ts +16 -0
- package/node_modules/typescript-eslint/dist/compatibility-types.js +7 -0
- package/node_modules/typescript-eslint/dist/config-helper.d.ts +70 -0
- package/node_modules/typescript-eslint/dist/config-helper.js +130 -0
- package/node_modules/typescript-eslint/dist/getTSConfigRootDirFromStack.d.ts +8 -0
- package/node_modules/typescript-eslint/dist/getTSConfigRootDirFromStack.js +52 -0
- package/node_modules/typescript-eslint/dist/index.d.ts +155 -0
- package/node_modules/typescript-eslint/dist/index.js +173 -0
- package/node_modules/typescript-eslint/package.json +104 -0
- package/node_modules/uri-js/LICENSE +11 -0
- package/node_modules/uri-js/README.md +203 -0
- package/node_modules/uri-js/dist/es5/uri.all.d.ts +59 -0
- package/node_modules/uri-js/dist/es5/uri.all.js +1443 -0
- package/node_modules/uri-js/dist/es5/uri.all.js.map +1 -0
- package/node_modules/uri-js/dist/es5/uri.all.min.d.ts +59 -0
- package/node_modules/uri-js/dist/es5/uri.all.min.js +3 -0
- package/node_modules/uri-js/dist/es5/uri.all.min.js.map +1 -0
- package/node_modules/uri-js/dist/esnext/index.d.ts +1 -0
- package/node_modules/uri-js/dist/esnext/index.js +17 -0
- package/node_modules/uri-js/dist/esnext/index.js.map +1 -0
- package/node_modules/uri-js/dist/esnext/regexps-iri.d.ts +3 -0
- package/node_modules/uri-js/dist/esnext/regexps-iri.js +3 -0
- package/node_modules/uri-js/dist/esnext/regexps-iri.js.map +1 -0
- package/node_modules/uri-js/dist/esnext/regexps-uri.d.ts +4 -0
- package/node_modules/uri-js/dist/esnext/regexps-uri.js +42 -0
- package/node_modules/uri-js/dist/esnext/regexps-uri.js.map +1 -0
- package/node_modules/uri-js/dist/esnext/schemes/http.d.ts +3 -0
- package/node_modules/uri-js/dist/esnext/schemes/http.js +28 -0
- package/node_modules/uri-js/dist/esnext/schemes/http.js.map +1 -0
- package/node_modules/uri-js/dist/esnext/schemes/https.d.ts +3 -0
- package/node_modules/uri-js/dist/esnext/schemes/https.js +9 -0
- package/node_modules/uri-js/dist/esnext/schemes/https.js.map +1 -0
- package/node_modules/uri-js/dist/esnext/schemes/mailto.d.ts +12 -0
- package/node_modules/uri-js/dist/esnext/schemes/mailto.js +148 -0
- package/node_modules/uri-js/dist/esnext/schemes/mailto.js.map +1 -0
- package/node_modules/uri-js/dist/esnext/schemes/urn-uuid.d.ts +7 -0
- package/node_modules/uri-js/dist/esnext/schemes/urn-uuid.js +23 -0
- package/node_modules/uri-js/dist/esnext/schemes/urn-uuid.js.map +1 -0
- package/node_modules/uri-js/dist/esnext/schemes/urn.d.ts +10 -0
- package/node_modules/uri-js/dist/esnext/schemes/urn.js +49 -0
- package/node_modules/uri-js/dist/esnext/schemes/urn.js.map +1 -0
- package/node_modules/uri-js/dist/esnext/schemes/ws.d.ts +7 -0
- package/node_modules/uri-js/dist/esnext/schemes/ws.js +41 -0
- package/node_modules/uri-js/dist/esnext/schemes/ws.js.map +1 -0
- package/node_modules/uri-js/dist/esnext/schemes/wss.d.ts +3 -0
- package/node_modules/uri-js/dist/esnext/schemes/wss.js +9 -0
- package/node_modules/uri-js/dist/esnext/schemes/wss.js.map +1 -0
- package/node_modules/uri-js/dist/esnext/uri.d.ts +59 -0
- package/node_modules/uri-js/dist/esnext/uri.js +480 -0
- package/node_modules/uri-js/dist/esnext/uri.js.map +1 -0
- package/node_modules/uri-js/dist/esnext/util.d.ts +6 -0
- package/node_modules/uri-js/dist/esnext/util.js +36 -0
- package/node_modules/uri-js/dist/esnext/util.js.map +1 -0
- package/node_modules/uri-js/package.json +77 -0
- package/node_modules/which/LICENSE +15 -0
- package/node_modules/which/README.md +54 -0
- package/node_modules/which/bin/node-which +52 -0
- package/node_modules/which/package.json +43 -0
- package/node_modules/which/which.js +125 -0
- package/node_modules/word-wrap/LICENSE +21 -0
- package/node_modules/word-wrap/README.md +201 -0
- package/node_modules/word-wrap/index.d.ts +50 -0
- package/node_modules/word-wrap/index.js +61 -0
- package/node_modules/word-wrap/package.json +77 -0
- package/node_modules/yocto-queue/index.d.ts +56 -0
- package/node_modules/yocto-queue/index.js +68 -0
- package/node_modules/yocto-queue/license +9 -0
- package/node_modules/yocto-queue/package.json +43 -0
- package/node_modules/yocto-queue/readme.md +64 -0
- package/package.json +7 -5
- package/s9pk.mk +8 -4
- package/node_modules/@start9labs/start-core/osBindings/BindingSetGuaAccessParams.d.ts +0 -7
- package/node_modules/@start9labs/start-core/osBindings/BindingSetGuaAccessParams.js +0 -3
- package/node_modules/@start9labs/start-core/osBindings/BindingSetGuaAccessParams.js.map +0 -1
- package/node_modules/@start9labs/start-core/osBindings/GuaAccess.d.ts +0 -18
- package/node_modules/@start9labs/start-core/osBindings/GuaAccess.js +0 -4
- package/node_modules/@start9labs/start-core/osBindings/GuaAccess.js.map +0 -1
- package/node_modules/@start9labs/start-core/osBindings/tunnel/SetIpv6Params.d.ts +0 -7
- package/node_modules/@start9labs/start-core/osBindings/tunnel/SetIpv6Params.js +0 -4
- package/node_modules/@start9labs/start-core/osBindings/tunnel/SetIpv6Params.js.map +0 -1
- /package/node_modules/{@iarna → @start9labs/start-core/node_modules/@iarna}/toml/LICENSE +0 -0
- /package/node_modules/{@iarna → @start9labs/start-core/node_modules/@iarna}/toml/README.md +0 -0
- /package/node_modules/{@iarna → @start9labs/start-core/node_modules/@iarna}/toml/index.d.ts +0 -0
- /package/node_modules/{@iarna → @start9labs/start-core/node_modules/@iarna}/toml/lib/create-date.js +0 -0
- /package/node_modules/{@iarna → @start9labs/start-core/node_modules/@iarna}/toml/lib/create-datetime-float.js +0 -0
- /package/node_modules/{@iarna → @start9labs/start-core/node_modules/@iarna}/toml/lib/create-datetime.js +0 -0
- /package/node_modules/{@iarna → @start9labs/start-core/node_modules/@iarna}/toml/lib/create-time.js +0 -0
- /package/node_modules/{@iarna → @start9labs/start-core/node_modules/@iarna}/toml/lib/format-num.js +0 -0
- /package/node_modules/{@iarna → @start9labs/start-core/node_modules/@iarna}/toml/lib/parser-debug.js +0 -0
- /package/node_modules/{@iarna → @start9labs/start-core/node_modules/@iarna}/toml/lib/parser.js +0 -0
- /package/node_modules/{@iarna → @start9labs/start-core/node_modules/@iarna}/toml/lib/toml-parser.js +0 -0
- /package/node_modules/{@iarna → @start9labs/start-core/node_modules/@iarna}/toml/package.json +0 -0
- /package/node_modules/{@iarna → @start9labs/start-core/node_modules/@iarna}/toml/parse-async.js +0 -0
- /package/node_modules/{@iarna → @start9labs/start-core/node_modules/@iarna}/toml/parse-pretty-error.js +0 -0
- /package/node_modules/{@iarna → @start9labs/start-core/node_modules/@iarna}/toml/parse-stream.js +0 -0
- /package/node_modules/{@iarna → @start9labs/start-core/node_modules/@iarna}/toml/parse-string.js +0 -0
- /package/node_modules/{@iarna → @start9labs/start-core/node_modules/@iarna}/toml/parse.js +0 -0
- /package/node_modules/{@iarna → @start9labs/start-core/node_modules/@iarna}/toml/stringify.js +0 -0
- /package/node_modules/{@iarna → @start9labs/start-core/node_modules/@iarna}/toml/toml.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/LICENSE +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/README.md +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/_shortw_utils.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/_shortw_utils.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/_shortw_utils.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/_shortw_utils.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/bls.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/bls.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/bls.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/bls.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/curve.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/curve.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/curve.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/curve.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/edwards.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/edwards.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/edwards.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/edwards.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/fft.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/fft.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/fft.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/fft.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/hash-to-curve.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/hash-to-curve.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/hash-to-curve.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/hash-to-curve.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/modular.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/modular.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/modular.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/modular.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/montgomery.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/montgomery.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/montgomery.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/montgomery.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/poseidon.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/poseidon.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/poseidon.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/poseidon.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/tower.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/tower.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/tower.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/tower.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/utils.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/utils.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/utils.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/utils.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/weierstrass.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/weierstrass.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/weierstrass.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/weierstrass.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/bls12-381.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/bls12-381.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/bls12-381.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/bls12-381.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/bn254.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/bn254.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/bn254.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/bn254.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/ed25519.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/ed25519.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/ed25519.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/ed25519.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/ed448.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/ed448.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/ed448.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/ed448.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/_shortw_utils.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/_shortw_utils.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/_shortw_utils.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/_shortw_utils.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/bls.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/bls.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/bls.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/bls.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/curve.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/curve.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/curve.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/curve.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/edwards.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/edwards.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/edwards.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/edwards.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/fft.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/fft.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/fft.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/fft.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/hash-to-curve.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/hash-to-curve.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/hash-to-curve.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/hash-to-curve.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/modular.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/modular.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/modular.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/modular.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/montgomery.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/montgomery.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/montgomery.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/montgomery.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/poseidon.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/poseidon.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/poseidon.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/poseidon.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/tower.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/tower.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/tower.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/tower.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/utils.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/utils.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/utils.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/utils.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/weierstrass.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/weierstrass.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/weierstrass.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/weierstrass.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/bls12-381.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/bls12-381.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/bls12-381.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/bls12-381.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/bn254.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/bn254.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/bn254.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/bn254.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/ed25519.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/ed25519.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/ed25519.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/ed25519.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/ed448.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/ed448.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/ed448.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/ed448.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/index.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/index.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/index.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/index.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/jubjub.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/jubjub.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/jubjub.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/jubjub.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/misc.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/misc.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/misc.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/misc.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/nist.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/nist.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/nist.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/nist.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/p256.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/p256.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/p256.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/p256.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/p384.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/p384.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/p384.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/p384.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/p521.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/p521.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/p521.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/p521.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/package.json +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/pasta.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/pasta.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/pasta.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/pasta.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/secp256k1.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/secp256k1.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/secp256k1.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/secp256k1.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/utils.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/utils.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/utils.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/utils.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/index.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/index.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/index.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/index.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/jubjub.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/jubjub.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/jubjub.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/jubjub.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/misc.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/misc.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/misc.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/misc.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/nist.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/nist.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/nist.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/nist.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/p256.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/p256.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/p256.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/p256.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/p384.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/p384.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/p384.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/p384.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/p521.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/p521.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/p521.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/p521.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/package.json +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/pasta.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/pasta.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/pasta.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/pasta.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/secp256k1.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/secp256k1.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/secp256k1.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/secp256k1.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/_shortw_utils.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/abstract/bls.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/abstract/curve.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/abstract/edwards.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/abstract/fft.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/abstract/hash-to-curve.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/abstract/modular.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/abstract/montgomery.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/abstract/poseidon.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/abstract/tower.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/abstract/utils.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/abstract/weierstrass.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/bls12-381.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/bn254.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/ed25519.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/ed448.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/index.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/jubjub.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/misc.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/nist.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/p256.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/p384.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/p521.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/package.json +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/pasta.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/secp256k1.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/utils.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/utils.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/utils.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/utils.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/utils.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/LICENSE +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/README.md +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/_assert.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/_assert.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/_assert.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/_assert.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/_blake.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/_blake.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/_blake.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/_blake.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/_md.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/_md.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/_md.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/_md.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/_u64.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/_u64.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/_u64.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/_u64.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/argon2.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/argon2.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/argon2.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/argon2.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/blake1.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/blake1.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/blake1.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/blake1.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/blake2.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/blake2.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/blake2.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/blake2.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/blake2b.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/blake2b.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/blake2b.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/blake2b.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/blake2s.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/blake2s.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/blake2s.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/blake2s.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/blake3.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/blake3.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/blake3.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/blake3.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/crypto.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/crypto.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/crypto.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/crypto.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/cryptoNode.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/cryptoNode.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/cryptoNode.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/cryptoNode.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/eskdf.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/eskdf.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/eskdf.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/eskdf.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/_assert.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/_assert.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/_assert.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/_assert.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/_blake.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/_blake.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/_blake.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/_blake.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/_md.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/_md.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/_md.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/_md.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/_u64.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/_u64.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/_u64.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/_u64.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/argon2.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/argon2.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/argon2.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/argon2.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/blake1.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/blake1.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/blake1.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/blake1.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/blake2.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/blake2.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/blake2.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/blake2.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/blake2b.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/blake2b.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/blake2b.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/blake2b.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/blake2s.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/blake2s.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/blake2s.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/blake2s.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/blake3.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/blake3.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/blake3.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/blake3.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/crypto.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/crypto.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/crypto.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/crypto.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/cryptoNode.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/cryptoNode.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/cryptoNode.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/cryptoNode.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/eskdf.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/eskdf.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/eskdf.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/eskdf.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/hkdf.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/hkdf.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/hkdf.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/hkdf.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/hmac.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/hmac.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/hmac.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/hmac.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/index.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/index.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/index.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/index.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/legacy.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/legacy.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/legacy.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/legacy.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/package.json +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/pbkdf2.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/pbkdf2.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/pbkdf2.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/pbkdf2.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/ripemd160.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/ripemd160.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/ripemd160.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/ripemd160.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/scrypt.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/scrypt.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/scrypt.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/scrypt.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/sha1.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/sha1.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/sha1.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/sha1.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/sha2.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/sha2.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/sha2.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/sha2.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/sha256.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/sha256.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/sha256.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/sha256.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/sha3-addons.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/sha3-addons.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/sha3-addons.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/sha3-addons.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/sha3.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/sha3.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/sha3.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/sha3.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/sha512.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/sha512.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/sha512.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/sha512.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/utils.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/utils.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/utils.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/utils.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/hkdf.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/hkdf.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/hkdf.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/hkdf.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/hmac.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/hmac.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/hmac.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/hmac.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/index.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/index.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/index.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/index.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/legacy.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/legacy.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/legacy.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/legacy.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/package.json +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/pbkdf2.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/pbkdf2.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/pbkdf2.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/pbkdf2.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/ripemd160.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/ripemd160.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/ripemd160.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/ripemd160.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/scrypt.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/scrypt.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/scrypt.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/scrypt.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/sha1.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/sha1.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/sha1.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/sha1.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/sha2.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/sha2.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/sha2.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/sha2.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/sha256.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/sha256.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/sha256.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/sha256.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/sha3-addons.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/sha3-addons.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/sha3-addons.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/sha3-addons.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/sha3.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/sha3.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/sha3.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/sha3.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/sha512.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/sha512.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/sha512.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/sha512.js.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/_assert.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/_blake.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/_md.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/_u64.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/argon2.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/blake1.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/blake2.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/blake2b.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/blake2s.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/blake3.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/crypto.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/cryptoNode.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/eskdf.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/hkdf.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/hmac.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/index.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/legacy.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/pbkdf2.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/ripemd160.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/scrypt.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/sha1.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/sha2.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/sha256.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/sha3-addons.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/sha3.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/sha512.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/utils.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/utils.d.ts +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/utils.d.ts.map +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/utils.js +0 -0
- /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/utils.js.map +0 -0
- /package/node_modules/{isomorphic-fetch → @start9labs/start-core/node_modules/isomorphic-fetch}/.editorconfig +0 -0
- /package/node_modules/{isomorphic-fetch → @start9labs/start-core/node_modules/isomorphic-fetch}/.jshintrc +0 -0
- /package/node_modules/{isomorphic-fetch → @start9labs/start-core/node_modules/isomorphic-fetch}/.travis.yml +0 -0
- /package/node_modules/{isomorphic-fetch → @start9labs/start-core/node_modules/isomorphic-fetch}/LICENSE +0 -0
- /package/node_modules/{isomorphic-fetch → @start9labs/start-core/node_modules/isomorphic-fetch}/README.md +0 -0
- /package/node_modules/{isomorphic-fetch → @start9labs/start-core/node_modules/isomorphic-fetch}/bower.json +0 -0
- /package/node_modules/{isomorphic-fetch → @start9labs/start-core/node_modules/isomorphic-fetch}/fetch-bower.js +0 -0
- /package/node_modules/{isomorphic-fetch → @start9labs/start-core/node_modules/isomorphic-fetch}/fetch-npm-browserify.js +0 -0
- /package/node_modules/{isomorphic-fetch → @start9labs/start-core/node_modules/isomorphic-fetch}/fetch-npm-node.js +0 -0
- /package/node_modules/{isomorphic-fetch → @start9labs/start-core/node_modules/isomorphic-fetch}/package.json +0 -0
- /package/node_modules/{isomorphic-fetch → @start9labs/start-core/node_modules/isomorphic-fetch}/test/api.test.js +0 -0
- /package/node_modules/{mime → @start9labs/start-core/node_modules/mime}/LICENSE +0 -0
- /package/node_modules/{mime → @start9labs/start-core/node_modules/mime}/README.md +0 -0
- /package/node_modules/{mime → @start9labs/start-core/node_modules/mime}/bin/cli.js +0 -0
- /package/node_modules/{mime → @start9labs/start-core/node_modules/mime}/dist/src/Mime.d.ts +0 -0
- /package/node_modules/{mime → @start9labs/start-core/node_modules/mime}/dist/src/Mime.js +0 -0
- /package/node_modules/{mime → @start9labs/start-core/node_modules/mime}/dist/src/index.d.ts +0 -0
- /package/node_modules/{mime → @start9labs/start-core/node_modules/mime}/dist/src/index.js +0 -0
- /package/node_modules/{mime → @start9labs/start-core/node_modules/mime}/dist/src/index_lite.d.ts +0 -0
- /package/node_modules/{mime → @start9labs/start-core/node_modules/mime}/dist/src/index_lite.js +0 -0
- /package/node_modules/{mime → @start9labs/start-core/node_modules/mime}/dist/src/mime_cli.d.ts +0 -0
- /package/node_modules/{mime → @start9labs/start-core/node_modules/mime}/dist/src/mime_cli.js +0 -0
- /package/node_modules/{mime → @start9labs/start-core/node_modules/mime}/dist/types/other.d.ts +0 -0
- /package/node_modules/{mime → @start9labs/start-core/node_modules/mime}/dist/types/other.js +0 -0
- /package/node_modules/{mime → @start9labs/start-core/node_modules/mime}/dist/types/standard.d.ts +0 -0
- /package/node_modules/{mime → @start9labs/start-core/node_modules/mime}/dist/types/standard.js +0 -0
- /package/node_modules/{mime → @start9labs/start-core/node_modules/mime}/package.json +0 -0
- /package/node_modules/{mime → @start9labs/start-core/node_modules/mime}/src/Mime.ts +0 -0
- /package/node_modules/{mime → @start9labs/start-core/node_modules/mime}/src/index.ts +0 -0
- /package/node_modules/{mime → @start9labs/start-core/node_modules/mime}/src/index_lite.ts +0 -0
- /package/node_modules/{mime → @start9labs/start-core/node_modules/mime}/src/mime_cli.ts +0 -0
- /package/node_modules/{mime → @start9labs/start-core/node_modules/mime}/types/other.ts +0 -0
- /package/node_modules/{mime → @start9labs/start-core/node_modules/mime}/types/standard.ts +0 -0
- /package/node_modules/{node-fetch → @start9labs/start-core/node_modules/node-fetch}/LICENSE.md +0 -0
- /package/node_modules/{node-fetch → @start9labs/start-core/node_modules/node-fetch}/README.md +0 -0
- /package/node_modules/{node-fetch → @start9labs/start-core/node_modules/node-fetch}/browser.js +0 -0
- /package/node_modules/{node-fetch → @start9labs/start-core/node_modules/node-fetch}/lib/index.es.js +0 -0
- /package/node_modules/{node-fetch → @start9labs/start-core/node_modules/node-fetch}/lib/index.js +0 -0
- /package/node_modules/{node-fetch → @start9labs/start-core/node_modules/node-fetch}/lib/index.mjs +0 -0
- /package/node_modules/{node-fetch → @start9labs/start-core/node_modules/node-fetch}/package.json +0 -0
- /package/node_modules/{object-hash → @start9labs/start-core/node_modules/object-hash}/LICENSE +0 -0
- /package/node_modules/{object-hash → @start9labs/start-core/node_modules/object-hash}/dist/object_hash.js +0 -0
- /package/node_modules/{object-hash → @start9labs/start-core/node_modules/object-hash}/index.js +0 -0
- /package/node_modules/{object-hash → @start9labs/start-core/node_modules/object-hash}/package.json +0 -0
- /package/node_modules/{object-hash → @start9labs/start-core/node_modules/object-hash}/readme.markdown +0 -0
- /package/node_modules/{tr46 → @start9labs/start-core/node_modules/tr46}/.npmignore +0 -0
- /package/node_modules/{tr46 → @start9labs/start-core/node_modules/tr46}/index.js +0 -0
- /package/node_modules/{tr46 → @start9labs/start-core/node_modules/tr46}/lib/.gitkeep +0 -0
- /package/node_modules/{tr46 → @start9labs/start-core/node_modules/tr46}/lib/mappingTable.json +0 -0
- /package/node_modules/{tr46 → @start9labs/start-core/node_modules/tr46}/package.json +0 -0
- /package/node_modules/{webidl-conversions → @start9labs/start-core/node_modules/webidl-conversions}/LICENSE.md +0 -0
- /package/node_modules/{webidl-conversions → @start9labs/start-core/node_modules/webidl-conversions}/README.md +0 -0
- /package/node_modules/{webidl-conversions → @start9labs/start-core/node_modules/webidl-conversions}/lib/index.js +0 -0
- /package/node_modules/{webidl-conversions → @start9labs/start-core/node_modules/webidl-conversions}/package.json +0 -0
- /package/node_modules/{whatwg-fetch → @start9labs/start-core/node_modules/whatwg-fetch}/LICENSE +0 -0
- /package/node_modules/{whatwg-fetch → @start9labs/start-core/node_modules/whatwg-fetch}/README.md +0 -0
- /package/node_modules/{whatwg-fetch → @start9labs/start-core/node_modules/whatwg-fetch}/dist/fetch.umd.js +0 -0
- /package/node_modules/{whatwg-fetch → @start9labs/start-core/node_modules/whatwg-fetch}/dist/fetch.umd.js.flow +0 -0
- /package/node_modules/{whatwg-fetch → @start9labs/start-core/node_modules/whatwg-fetch}/fetch.js +0 -0
- /package/node_modules/{whatwg-fetch → @start9labs/start-core/node_modules/whatwg-fetch}/fetch.js.flow +0 -0
- /package/node_modules/{whatwg-fetch → @start9labs/start-core/node_modules/whatwg-fetch}/package.json +0 -0
- /package/node_modules/{whatwg-url → @start9labs/start-core/node_modules/whatwg-url}/LICENSE.txt +0 -0
- /package/node_modules/{whatwg-url → @start9labs/start-core/node_modules/whatwg-url}/README.md +0 -0
- /package/node_modules/{whatwg-url → @start9labs/start-core/node_modules/whatwg-url}/lib/URL-impl.js +0 -0
- /package/node_modules/{whatwg-url → @start9labs/start-core/node_modules/whatwg-url}/lib/URL.js +0 -0
- /package/node_modules/{whatwg-url → @start9labs/start-core/node_modules/whatwg-url}/lib/public-api.js +0 -0
- /package/node_modules/{whatwg-url → @start9labs/start-core/node_modules/whatwg-url}/lib/url-state-machine.js +0 -0
- /package/node_modules/{whatwg-url → @start9labs/start-core/node_modules/whatwg-url}/lib/utils.js +0 -0
- /package/node_modules/{whatwg-url → @start9labs/start-core/node_modules/whatwg-url}/package.json +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/LICENSE +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/README.md +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/bin.mjs +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/compose/compose-collection.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/compose/compose-doc.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/compose/compose-node.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/compose/compose-scalar.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/compose/composer.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/compose/resolve-block-map.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/compose/resolve-block-scalar.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/compose/resolve-block-seq.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/compose/resolve-end.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/compose/resolve-flow-collection.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/compose/resolve-flow-scalar.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/compose/resolve-props.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/compose/util-contains-newline.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/compose/util-empty-scalar-position.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/compose/util-flow-indent-check.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/compose/util-map-includes.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/doc/Document.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/doc/anchors.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/doc/applyReviver.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/doc/createNode.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/doc/directives.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/errors.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/index.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/log.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/nodes/Alias.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/nodes/Collection.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/nodes/Node.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/nodes/Pair.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/nodes/Scalar.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/nodes/YAMLMap.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/nodes/YAMLSeq.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/nodes/addPairToJSMap.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/nodes/identity.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/nodes/toJS.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/parse/cst-scalar.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/parse/cst-stringify.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/parse/cst-visit.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/parse/cst.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/parse/lexer.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/parse/line-counter.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/parse/parser.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/public-api.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/schema/Schema.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/schema/common/map.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/schema/common/null.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/schema/common/seq.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/schema/common/string.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/schema/core/bool.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/schema/core/float.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/schema/core/int.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/schema/core/schema.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/schema/json/schema.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/schema/tags.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/schema/yaml-1.1/binary.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/schema/yaml-1.1/bool.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/schema/yaml-1.1/float.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/schema/yaml-1.1/int.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/schema/yaml-1.1/merge.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/schema/yaml-1.1/omap.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/schema/yaml-1.1/pairs.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/schema/yaml-1.1/schema.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/schema/yaml-1.1/set.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/schema/yaml-1.1/timestamp.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/stringify/foldFlowLines.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/stringify/stringify.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/stringify/stringifyCollection.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/stringify/stringifyComment.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/stringify/stringifyDocument.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/stringify/stringifyNumber.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/stringify/stringifyPair.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/stringify/stringifyString.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/util.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/visit.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/index.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/package.json +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/cli.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/cli.mjs +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/compose-collection.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/compose-collection.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/compose-doc.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/compose-doc.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/compose-node.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/compose-node.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/compose-scalar.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/compose-scalar.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/composer.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/composer.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/resolve-block-map.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/resolve-block-map.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/resolve-block-scalar.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/resolve-block-scalar.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/resolve-block-seq.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/resolve-block-seq.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/resolve-end.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/resolve-end.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/resolve-flow-collection.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/resolve-flow-collection.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/resolve-flow-scalar.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/resolve-flow-scalar.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/resolve-props.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/resolve-props.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/util-contains-newline.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/util-contains-newline.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/util-empty-scalar-position.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/util-empty-scalar-position.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/util-flow-indent-check.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/util-flow-indent-check.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/util-map-includes.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/util-map-includes.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/doc/Document.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/doc/Document.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/doc/anchors.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/doc/anchors.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/doc/applyReviver.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/doc/applyReviver.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/doc/createNode.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/doc/createNode.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/doc/directives.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/doc/directives.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/errors.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/errors.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/index.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/index.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/log.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/log.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/nodes/Alias.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/nodes/Alias.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/nodes/Collection.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/nodes/Collection.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/nodes/Node.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/nodes/Node.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/nodes/Pair.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/nodes/Pair.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/nodes/Scalar.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/nodes/Scalar.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/nodes/YAMLMap.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/nodes/YAMLMap.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/nodes/YAMLSeq.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/nodes/YAMLSeq.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/nodes/addPairToJSMap.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/nodes/addPairToJSMap.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/nodes/identity.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/nodes/identity.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/nodes/toJS.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/nodes/toJS.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/options.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/parse/cst-scalar.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/parse/cst-scalar.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/parse/cst-stringify.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/parse/cst-stringify.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/parse/cst-visit.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/parse/cst-visit.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/parse/cst.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/parse/cst.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/parse/lexer.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/parse/lexer.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/parse/line-counter.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/parse/line-counter.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/parse/parser.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/parse/parser.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/public-api.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/public-api.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/Schema.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/Schema.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/common/map.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/common/map.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/common/null.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/common/null.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/common/seq.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/common/seq.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/common/string.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/common/string.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/core/bool.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/core/bool.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/core/float.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/core/float.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/core/int.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/core/int.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/core/schema.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/core/schema.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/json/schema.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/json/schema.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/json-schema.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/tags.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/tags.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/types.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/yaml-1.1/binary.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/yaml-1.1/binary.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/yaml-1.1/bool.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/yaml-1.1/bool.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/yaml-1.1/float.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/yaml-1.1/float.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/yaml-1.1/int.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/yaml-1.1/int.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/yaml-1.1/merge.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/yaml-1.1/merge.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/yaml-1.1/omap.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/yaml-1.1/omap.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/yaml-1.1/pairs.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/yaml-1.1/pairs.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/yaml-1.1/schema.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/yaml-1.1/schema.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/yaml-1.1/set.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/yaml-1.1/set.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/yaml-1.1/timestamp.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/yaml-1.1/timestamp.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/stringify/foldFlowLines.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/stringify/foldFlowLines.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/stringify/stringify.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/stringify/stringify.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/stringify/stringifyCollection.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/stringify/stringifyCollection.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/stringify/stringifyComment.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/stringify/stringifyComment.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/stringify/stringifyDocument.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/stringify/stringifyDocument.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/stringify/stringifyNumber.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/stringify/stringifyNumber.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/stringify/stringifyPair.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/stringify/stringifyPair.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/stringify/stringifyString.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/stringify/stringifyString.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/test-events.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/test-events.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/util.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/util.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/visit.d.ts +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/visit.js +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/package.json +0 -0
- /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/util.js +0 -0
- /package/node_modules/{zod-deep-partial → @start9labs/start-core/node_modules/zod-deep-partial}/LICENSE +0 -0
- /package/node_modules/{zod-deep-partial → @start9labs/start-core/node_modules/zod-deep-partial}/README.md +0 -0
- /package/node_modules/{zod-deep-partial → @start9labs/start-core/node_modules/zod-deep-partial}/dist/index.d.ts +0 -0
- /package/node_modules/{zod-deep-partial → @start9labs/start-core/node_modules/zod-deep-partial}/dist/index.js +0 -0
- /package/node_modules/{zod-deep-partial → @start9labs/start-core/node_modules/zod-deep-partial}/dist/index.js.map +0 -0
- /package/node_modules/{zod-deep-partial → @start9labs/start-core/node_modules/zod-deep-partial}/dist/types.d.ts +0 -0
- /package/node_modules/{zod-deep-partial → @start9labs/start-core/node_modules/zod-deep-partial}/dist/types.js +0 -0
- /package/node_modules/{zod-deep-partial → @start9labs/start-core/node_modules/zod-deep-partial}/dist/types.js.map +0 -0
- /package/node_modules/{zod-deep-partial → @start9labs/start-core/node_modules/zod-deep-partial}/package.json +0 -0
|
@@ -0,0 +1,2308 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var ts9 = require('typescript');
|
|
4
|
+
|
|
5
|
+
function _interopDefault (e) { return e && e.__esModule ? e : { default: e }; }
|
|
6
|
+
|
|
7
|
+
var ts9__default = /*#__PURE__*/_interopDefault(ts9);
|
|
8
|
+
|
|
9
|
+
// src/comments.ts
|
|
10
|
+
function forEachToken(node, callback, sourceFile = node.getSourceFile()) {
|
|
11
|
+
for (const token of iterateTokens(node, sourceFile)) {
|
|
12
|
+
callback(token);
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
function* iterateTokens(node, sourceFile = node.getSourceFile()) {
|
|
16
|
+
const queue = [];
|
|
17
|
+
while (true) {
|
|
18
|
+
if (ts9__default.default.isTokenKind(node.kind)) {
|
|
19
|
+
yield node;
|
|
20
|
+
} else {
|
|
21
|
+
const children = node.getChildren(sourceFile);
|
|
22
|
+
if (children.length === 1) {
|
|
23
|
+
node = children[0];
|
|
24
|
+
continue;
|
|
25
|
+
}
|
|
26
|
+
for (let i = children.length - 1; i >= 0; --i) {
|
|
27
|
+
queue.push(children[i]);
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
if (queue.length === 0) {
|
|
31
|
+
break;
|
|
32
|
+
}
|
|
33
|
+
node = queue.pop();
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
// src/comments.ts
|
|
38
|
+
function forEachComment(node, callback, sourceFile = node.getSourceFile()) {
|
|
39
|
+
const fullText = sourceFile.text;
|
|
40
|
+
for (const { end, kind, pos } of iterateComments(node, sourceFile)) {
|
|
41
|
+
callback(fullText, { end, kind, pos });
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
function* iterateComments(node, sourceFile = node.getSourceFile()) {
|
|
45
|
+
const fullText = sourceFile.text;
|
|
46
|
+
const notJsx = sourceFile.languageVariant !== ts9__default.default.LanguageVariant.JSX;
|
|
47
|
+
for (const token of iterateTokens(node, sourceFile)) {
|
|
48
|
+
if (token.pos === token.end) {
|
|
49
|
+
continue;
|
|
50
|
+
}
|
|
51
|
+
if (token.kind !== ts9__default.default.SyntaxKind.JsxText) {
|
|
52
|
+
yield* collectComments((callback) => {
|
|
53
|
+
ts9__default.default.forEachLeadingCommentRange(
|
|
54
|
+
fullText,
|
|
55
|
+
// skip shebang at position 0
|
|
56
|
+
token.pos === 0 ? (ts9__default.default.getShebang(fullText) ?? "").length : token.pos,
|
|
57
|
+
callback
|
|
58
|
+
);
|
|
59
|
+
}, fullText);
|
|
60
|
+
}
|
|
61
|
+
if (notJsx || canHaveTrailingTrivia(token)) {
|
|
62
|
+
yield* collectComments((callback) => {
|
|
63
|
+
ts9__default.default.forEachTrailingCommentRange(fullText, token.end, callback);
|
|
64
|
+
}, fullText);
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
function canHaveTrailingTrivia(token) {
|
|
69
|
+
switch (token.kind) {
|
|
70
|
+
case ts9__default.default.SyntaxKind.CloseBraceToken:
|
|
71
|
+
return token.parent.kind !== ts9__default.default.SyntaxKind.JsxExpression || !isJsxElementOrFragment(token.parent.parent);
|
|
72
|
+
case ts9__default.default.SyntaxKind.GreaterThanToken:
|
|
73
|
+
switch (token.parent.kind) {
|
|
74
|
+
case ts9__default.default.SyntaxKind.JsxClosingElement:
|
|
75
|
+
case ts9__default.default.SyntaxKind.JsxClosingFragment:
|
|
76
|
+
return !isJsxElementOrFragment(token.parent.parent.parent);
|
|
77
|
+
case ts9__default.default.SyntaxKind.JsxOpeningElement:
|
|
78
|
+
return token.end !== token.parent.end;
|
|
79
|
+
case ts9__default.default.SyntaxKind.JsxOpeningFragment:
|
|
80
|
+
return false;
|
|
81
|
+
// would be inside the fragment
|
|
82
|
+
case ts9__default.default.SyntaxKind.JsxSelfClosingElement:
|
|
83
|
+
return token.end !== token.parent.end || // if end is not equal, this is part of the type arguments list
|
|
84
|
+
!isJsxElementOrFragment(token.parent.parent);
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
return true;
|
|
88
|
+
}
|
|
89
|
+
function collectComments(execute, fullText) {
|
|
90
|
+
const comments = [];
|
|
91
|
+
execute((pos, end, kind) => {
|
|
92
|
+
const text = fullText.slice(pos, end);
|
|
93
|
+
const value = text.slice(
|
|
94
|
+
2,
|
|
95
|
+
kind === ts9__default.default.SyntaxKind.SingleLineCommentTrivia ? void 0 : -2
|
|
96
|
+
);
|
|
97
|
+
comments.push({ end, kind, pos, text, value });
|
|
98
|
+
});
|
|
99
|
+
return comments;
|
|
100
|
+
}
|
|
101
|
+
function isJsxElementOrFragment(node) {
|
|
102
|
+
return node.kind === ts9__default.default.SyntaxKind.JsxElement || node.kind === ts9__default.default.SyntaxKind.JsxFragment;
|
|
103
|
+
}
|
|
104
|
+
var [tsMajor, tsMinor] = ts9__default.default.versionMajorMinor.split(".").map((raw) => Number.parseInt(raw, 10));
|
|
105
|
+
function isTsVersionAtLeast(major, minor = 0) {
|
|
106
|
+
return tsMajor > major || tsMajor === major && tsMinor >= minor;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
// src/compilerOptions.ts
|
|
110
|
+
function isCompilerOptionEnabled(options, option) {
|
|
111
|
+
switch (option) {
|
|
112
|
+
case "allowJs":
|
|
113
|
+
return options.allowJs === void 0 ? isCompilerOptionEnabled(options, "checkJs") : options.allowJs;
|
|
114
|
+
case "allowSyntheticDefaultImports":
|
|
115
|
+
return options.allowSyntheticDefaultImports !== void 0 ? options.allowSyntheticDefaultImports : isCompilerOptionEnabled(options, "esModuleInterop") || options.module === ts9__default.default.ModuleKind.System;
|
|
116
|
+
case "alwaysStrict":
|
|
117
|
+
case "noImplicitAny":
|
|
118
|
+
case "noImplicitThis":
|
|
119
|
+
case "strictBindCallApply":
|
|
120
|
+
case "strictFunctionTypes":
|
|
121
|
+
case "strictNullChecks":
|
|
122
|
+
case "strictPropertyInitialization":
|
|
123
|
+
return isStrictCompilerOptionEnabled(
|
|
124
|
+
options,
|
|
125
|
+
option
|
|
126
|
+
);
|
|
127
|
+
case "declaration":
|
|
128
|
+
return options.declaration || isCompilerOptionEnabled(options, "composite");
|
|
129
|
+
case "declarationMap":
|
|
130
|
+
case "emitDeclarationOnly":
|
|
131
|
+
case "stripInternal":
|
|
132
|
+
return options[option] === true && isCompilerOptionEnabled(options, "declaration");
|
|
133
|
+
case "incremental":
|
|
134
|
+
return options.incremental === void 0 ? isCompilerOptionEnabled(options, "composite") : options.incremental;
|
|
135
|
+
case "noUncheckedIndexedAccess":
|
|
136
|
+
return options.noUncheckedIndexedAccess === true && isCompilerOptionEnabled(options, "strictNullChecks");
|
|
137
|
+
case "skipDefaultLibCheck":
|
|
138
|
+
return options.skipDefaultLibCheck || isCompilerOptionEnabled(options, "skipLibCheck");
|
|
139
|
+
case "suppressImplicitAnyIndexErrors":
|
|
140
|
+
return (
|
|
141
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
|
142
|
+
options.suppressImplicitAnyIndexErrors === true && isCompilerOptionEnabled(options, "noImplicitAny")
|
|
143
|
+
);
|
|
144
|
+
}
|
|
145
|
+
return options[option] === true;
|
|
146
|
+
}
|
|
147
|
+
function isStrictCompilerOptionEnabled(options, option) {
|
|
148
|
+
if (option === "strictPropertyInitialization") {
|
|
149
|
+
if (!isStrictCompilerOptionEnabled(options, "strictNullChecks")) {
|
|
150
|
+
return false;
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
return options[option] ?? options.strict ?? isTsVersionAtLeast(6);
|
|
154
|
+
}
|
|
155
|
+
function isModifierFlagSet(node, flag) {
|
|
156
|
+
return isFlagSet(ts9__default.default.getCombinedModifierFlags(node), flag);
|
|
157
|
+
}
|
|
158
|
+
function isFlagSet(allFlags, flag) {
|
|
159
|
+
return (allFlags & flag) !== 0;
|
|
160
|
+
}
|
|
161
|
+
function isFlagSetOnObject(obj, flag) {
|
|
162
|
+
return isFlagSet(obj.flags, flag);
|
|
163
|
+
}
|
|
164
|
+
var isNodeFlagSet = isFlagSetOnObject;
|
|
165
|
+
function isObjectFlagSet(objectType, flag) {
|
|
166
|
+
return isFlagSet(objectType.objectFlags, flag);
|
|
167
|
+
}
|
|
168
|
+
var isSymbolFlagSet = isFlagSetOnObject;
|
|
169
|
+
function isTransientSymbolLinksFlagSet(links, flag) {
|
|
170
|
+
return isFlagSet(links.checkFlags, flag);
|
|
171
|
+
}
|
|
172
|
+
var isTypeFlagSet = isFlagSetOnObject;
|
|
173
|
+
|
|
174
|
+
// src/modifiers.ts
|
|
175
|
+
function includesModifier(modifiers, ...kinds) {
|
|
176
|
+
if (modifiers === void 0) {
|
|
177
|
+
return false;
|
|
178
|
+
}
|
|
179
|
+
for (const modifier of modifiers) {
|
|
180
|
+
if (kinds.includes(modifier.kind)) {
|
|
181
|
+
return true;
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
return false;
|
|
185
|
+
}
|
|
186
|
+
function isAssignmentKind(kind) {
|
|
187
|
+
return kind >= ts9__default.default.SyntaxKind.FirstAssignment && kind <= ts9__default.default.SyntaxKind.LastAssignment;
|
|
188
|
+
}
|
|
189
|
+
function isNumericPropertyName(name) {
|
|
190
|
+
return String(+name) === name;
|
|
191
|
+
}
|
|
192
|
+
function isValidPropertyAccess(text, languageVersion = ts9__default.default.ScriptTarget.Latest) {
|
|
193
|
+
if (text.length === 0) {
|
|
194
|
+
return false;
|
|
195
|
+
}
|
|
196
|
+
let ch = text.codePointAt(0);
|
|
197
|
+
if (!ts9__default.default.isIdentifierStart(ch, languageVersion)) {
|
|
198
|
+
return false;
|
|
199
|
+
}
|
|
200
|
+
for (let i = charSize(ch); i < text.length; i += charSize(ch)) {
|
|
201
|
+
ch = text.codePointAt(i);
|
|
202
|
+
if (!ts9__default.default.isIdentifierPart(ch, languageVersion)) {
|
|
203
|
+
return false;
|
|
204
|
+
}
|
|
205
|
+
}
|
|
206
|
+
return true;
|
|
207
|
+
}
|
|
208
|
+
function charSize(ch) {
|
|
209
|
+
return ch >= 65536 ? 2 : 1;
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
// src/nodes/access.ts
|
|
213
|
+
var AccessKind = /* @__PURE__ */ ((AccessKind2) => {
|
|
214
|
+
AccessKind2[AccessKind2["None"] = 0] = "None";
|
|
215
|
+
AccessKind2[AccessKind2["Read"] = 1] = "Read";
|
|
216
|
+
AccessKind2[AccessKind2["Write"] = 2] = "Write";
|
|
217
|
+
AccessKind2[AccessKind2["Delete"] = 4] = "Delete";
|
|
218
|
+
AccessKind2[AccessKind2["ReadWrite"] = 3] = "ReadWrite";
|
|
219
|
+
return AccessKind2;
|
|
220
|
+
})(AccessKind || {});
|
|
221
|
+
function getAccessKind(node) {
|
|
222
|
+
const parent = node.parent;
|
|
223
|
+
switch (parent.kind) {
|
|
224
|
+
case ts9__default.default.SyntaxKind.ArrayLiteralExpression:
|
|
225
|
+
case ts9__default.default.SyntaxKind.SpreadAssignment:
|
|
226
|
+
case ts9__default.default.SyntaxKind.SpreadElement:
|
|
227
|
+
return isInDestructuringAssignment(
|
|
228
|
+
parent
|
|
229
|
+
) ? 2 /* Write */ : 1 /* Read */;
|
|
230
|
+
case ts9__default.default.SyntaxKind.ArrowFunction:
|
|
231
|
+
return parent.body === node ? 1 /* Read */ : 2 /* Write */;
|
|
232
|
+
case ts9__default.default.SyntaxKind.AsExpression:
|
|
233
|
+
case ts9__default.default.SyntaxKind.NonNullExpression:
|
|
234
|
+
case ts9__default.default.SyntaxKind.ParenthesizedExpression:
|
|
235
|
+
case ts9__default.default.SyntaxKind.TypeAssertionExpression:
|
|
236
|
+
return getAccessKind(parent);
|
|
237
|
+
case ts9__default.default.SyntaxKind.AwaitExpression:
|
|
238
|
+
case ts9__default.default.SyntaxKind.CallExpression:
|
|
239
|
+
case ts9__default.default.SyntaxKind.CaseClause:
|
|
240
|
+
case ts9__default.default.SyntaxKind.ComputedPropertyName:
|
|
241
|
+
case ts9__default.default.SyntaxKind.ConditionalExpression:
|
|
242
|
+
case ts9__default.default.SyntaxKind.Decorator:
|
|
243
|
+
case ts9__default.default.SyntaxKind.DoStatement:
|
|
244
|
+
case ts9__default.default.SyntaxKind.ElementAccessExpression:
|
|
245
|
+
case ts9__default.default.SyntaxKind.ExpressionStatement:
|
|
246
|
+
case ts9__default.default.SyntaxKind.ForStatement:
|
|
247
|
+
case ts9__default.default.SyntaxKind.IfStatement:
|
|
248
|
+
case ts9__default.default.SyntaxKind.JsxElement:
|
|
249
|
+
case ts9__default.default.SyntaxKind.JsxExpression:
|
|
250
|
+
case ts9__default.default.SyntaxKind.JsxOpeningElement:
|
|
251
|
+
case ts9__default.default.SyntaxKind.JsxSelfClosingElement:
|
|
252
|
+
case ts9__default.default.SyntaxKind.JsxSpreadAttribute:
|
|
253
|
+
case ts9__default.default.SyntaxKind.NewExpression:
|
|
254
|
+
case ts9__default.default.SyntaxKind.ReturnStatement:
|
|
255
|
+
case ts9__default.default.SyntaxKind.SwitchStatement:
|
|
256
|
+
case ts9__default.default.SyntaxKind.TaggedTemplateExpression:
|
|
257
|
+
case ts9__default.default.SyntaxKind.TemplateSpan:
|
|
258
|
+
case ts9__default.default.SyntaxKind.ThrowStatement:
|
|
259
|
+
case ts9__default.default.SyntaxKind.TypeOfExpression:
|
|
260
|
+
case ts9__default.default.SyntaxKind.VoidExpression:
|
|
261
|
+
case ts9__default.default.SyntaxKind.WhileStatement:
|
|
262
|
+
case ts9__default.default.SyntaxKind.WithStatement:
|
|
263
|
+
case ts9__default.default.SyntaxKind.YieldExpression:
|
|
264
|
+
return 1 /* Read */;
|
|
265
|
+
case ts9__default.default.SyntaxKind.BinaryExpression:
|
|
266
|
+
return parent.right === node ? 1 /* Read */ : !isAssignmentKind(parent.operatorToken.kind) ? 1 /* Read */ : parent.operatorToken.kind === ts9__default.default.SyntaxKind.EqualsToken ? 2 /* Write */ : 3 /* ReadWrite */;
|
|
267
|
+
case ts9__default.default.SyntaxKind.BindingElement:
|
|
268
|
+
case ts9__default.default.SyntaxKind.EnumMember:
|
|
269
|
+
case ts9__default.default.SyntaxKind.JsxAttribute:
|
|
270
|
+
case ts9__default.default.SyntaxKind.Parameter:
|
|
271
|
+
case ts9__default.default.SyntaxKind.PropertyDeclaration:
|
|
272
|
+
case ts9__default.default.SyntaxKind.VariableDeclaration:
|
|
273
|
+
return parent.initializer === node ? 1 /* Read */ : 0 /* None */;
|
|
274
|
+
case ts9__default.default.SyntaxKind.DeleteExpression:
|
|
275
|
+
return 4 /* Delete */;
|
|
276
|
+
case ts9__default.default.SyntaxKind.ExportAssignment:
|
|
277
|
+
return parent.isExportEquals ? 1 /* Read */ : 0 /* None */;
|
|
278
|
+
case ts9__default.default.SyntaxKind.ExpressionWithTypeArguments:
|
|
279
|
+
return parent.parent.token === ts9__default.default.SyntaxKind.ExtendsKeyword && parent.parent.parent.kind !== ts9__default.default.SyntaxKind.InterfaceDeclaration ? 1 /* Read */ : 0 /* None */;
|
|
280
|
+
case ts9__default.default.SyntaxKind.ForInStatement:
|
|
281
|
+
case ts9__default.default.SyntaxKind.ForOfStatement:
|
|
282
|
+
return parent.initializer === node ? 2 /* Write */ : 1 /* Read */;
|
|
283
|
+
case ts9__default.default.SyntaxKind.PostfixUnaryExpression:
|
|
284
|
+
return 3 /* ReadWrite */;
|
|
285
|
+
case ts9__default.default.SyntaxKind.PrefixUnaryExpression:
|
|
286
|
+
return parent.operator === ts9__default.default.SyntaxKind.PlusPlusToken || parent.operator === ts9__default.default.SyntaxKind.MinusMinusToken ? 3 /* ReadWrite */ : 1 /* Read */;
|
|
287
|
+
case ts9__default.default.SyntaxKind.PropertyAccessExpression:
|
|
288
|
+
return parent.expression === node ? 1 /* Read */ : 0 /* None */;
|
|
289
|
+
case ts9__default.default.SyntaxKind.PropertyAssignment:
|
|
290
|
+
return parent.name === node ? 0 /* None */ : isInDestructuringAssignment(parent) ? 2 /* Write */ : 1 /* Read */;
|
|
291
|
+
case ts9__default.default.SyntaxKind.ShorthandPropertyAssignment:
|
|
292
|
+
return parent.objectAssignmentInitializer === node ? 1 /* Read */ : isInDestructuringAssignment(parent) ? 2 /* Write */ : 1 /* Read */;
|
|
293
|
+
}
|
|
294
|
+
return 0 /* None */;
|
|
295
|
+
}
|
|
296
|
+
function isInDestructuringAssignment(node) {
|
|
297
|
+
switch (node.kind) {
|
|
298
|
+
case ts9__default.default.SyntaxKind.ShorthandPropertyAssignment:
|
|
299
|
+
if (node.objectAssignmentInitializer !== void 0) {
|
|
300
|
+
return true;
|
|
301
|
+
}
|
|
302
|
+
// falls through
|
|
303
|
+
case ts9__default.default.SyntaxKind.PropertyAssignment:
|
|
304
|
+
case ts9__default.default.SyntaxKind.SpreadAssignment:
|
|
305
|
+
node = node.parent;
|
|
306
|
+
break;
|
|
307
|
+
case ts9__default.default.SyntaxKind.SpreadElement:
|
|
308
|
+
if (node.parent.kind !== ts9__default.default.SyntaxKind.ArrayLiteralExpression) {
|
|
309
|
+
return false;
|
|
310
|
+
}
|
|
311
|
+
node = node.parent;
|
|
312
|
+
}
|
|
313
|
+
while (true) {
|
|
314
|
+
switch (node.parent.kind) {
|
|
315
|
+
case ts9__default.default.SyntaxKind.ArrayLiteralExpression:
|
|
316
|
+
case ts9__default.default.SyntaxKind.ObjectLiteralExpression:
|
|
317
|
+
node = node.parent;
|
|
318
|
+
break;
|
|
319
|
+
case ts9__default.default.SyntaxKind.BinaryExpression:
|
|
320
|
+
return node.parent.left === node && node.parent.operatorToken.kind === ts9__default.default.SyntaxKind.EqualsToken;
|
|
321
|
+
case ts9__default.default.SyntaxKind.ForOfStatement:
|
|
322
|
+
return node.parent.initializer === node;
|
|
323
|
+
case ts9__default.default.SyntaxKind.PropertyAssignment:
|
|
324
|
+
case ts9__default.default.SyntaxKind.SpreadAssignment:
|
|
325
|
+
node = node.parent.parent;
|
|
326
|
+
break;
|
|
327
|
+
case ts9__default.default.SyntaxKind.SpreadElement:
|
|
328
|
+
if (node.parent.parent.kind !== ts9__default.default.SyntaxKind.ArrayLiteralExpression) {
|
|
329
|
+
return false;
|
|
330
|
+
}
|
|
331
|
+
node = node.parent.parent;
|
|
332
|
+
break;
|
|
333
|
+
default:
|
|
334
|
+
return false;
|
|
335
|
+
}
|
|
336
|
+
}
|
|
337
|
+
}
|
|
338
|
+
function isAbstractKeyword(node) {
|
|
339
|
+
return node.kind === ts9__default.default.SyntaxKind.AbstractKeyword;
|
|
340
|
+
}
|
|
341
|
+
function isAccessorKeyword(node) {
|
|
342
|
+
return node.kind === ts9__default.default.SyntaxKind.AccessorKeyword;
|
|
343
|
+
}
|
|
344
|
+
function isAnyKeyword(node) {
|
|
345
|
+
return node.kind === ts9__default.default.SyntaxKind.AnyKeyword;
|
|
346
|
+
}
|
|
347
|
+
function isAssertKeyword(node) {
|
|
348
|
+
return node.kind === ts9__default.default.SyntaxKind.AssertKeyword;
|
|
349
|
+
}
|
|
350
|
+
function isAssertsKeyword(node) {
|
|
351
|
+
return node.kind === ts9__default.default.SyntaxKind.AssertsKeyword;
|
|
352
|
+
}
|
|
353
|
+
function isAsyncKeyword(node) {
|
|
354
|
+
return node.kind === ts9__default.default.SyntaxKind.AsyncKeyword;
|
|
355
|
+
}
|
|
356
|
+
function isAwaitKeyword(node) {
|
|
357
|
+
return node.kind === ts9__default.default.SyntaxKind.AwaitKeyword;
|
|
358
|
+
}
|
|
359
|
+
function isBigIntKeyword(node) {
|
|
360
|
+
return node.kind === ts9__default.default.SyntaxKind.BigIntKeyword;
|
|
361
|
+
}
|
|
362
|
+
function isBooleanKeyword(node) {
|
|
363
|
+
return node.kind === ts9__default.default.SyntaxKind.BooleanKeyword;
|
|
364
|
+
}
|
|
365
|
+
function isColonToken(node) {
|
|
366
|
+
return node.kind === ts9__default.default.SyntaxKind.ColonToken;
|
|
367
|
+
}
|
|
368
|
+
function isConstKeyword(node) {
|
|
369
|
+
return node.kind === ts9__default.default.SyntaxKind.ConstKeyword;
|
|
370
|
+
}
|
|
371
|
+
function isDeclareKeyword(node) {
|
|
372
|
+
return node.kind === ts9__default.default.SyntaxKind.DeclareKeyword;
|
|
373
|
+
}
|
|
374
|
+
function isDefaultKeyword(node) {
|
|
375
|
+
return node.kind === ts9__default.default.SyntaxKind.DefaultKeyword;
|
|
376
|
+
}
|
|
377
|
+
function isDotToken(node) {
|
|
378
|
+
return node.kind === ts9__default.default.SyntaxKind.DotToken;
|
|
379
|
+
}
|
|
380
|
+
function isEndOfFileToken(node) {
|
|
381
|
+
return node.kind === ts9__default.default.SyntaxKind.EndOfFileToken;
|
|
382
|
+
}
|
|
383
|
+
function isEqualsGreaterThanToken(node) {
|
|
384
|
+
return node.kind === ts9__default.default.SyntaxKind.EqualsGreaterThanToken;
|
|
385
|
+
}
|
|
386
|
+
function isEqualsToken(node) {
|
|
387
|
+
return node.kind === ts9__default.default.SyntaxKind.EqualsToken;
|
|
388
|
+
}
|
|
389
|
+
function isExclamationToken(node) {
|
|
390
|
+
return node.kind === ts9__default.default.SyntaxKind.ExclamationToken;
|
|
391
|
+
}
|
|
392
|
+
function isExportKeyword(node) {
|
|
393
|
+
return node.kind === ts9__default.default.SyntaxKind.ExportKeyword;
|
|
394
|
+
}
|
|
395
|
+
function isFalseKeyword(node) {
|
|
396
|
+
return node.kind === ts9__default.default.SyntaxKind.FalseKeyword;
|
|
397
|
+
}
|
|
398
|
+
function isFalseLiteral(node) {
|
|
399
|
+
return node.kind === ts9__default.default.SyntaxKind.FalseKeyword;
|
|
400
|
+
}
|
|
401
|
+
function isImportExpression(node) {
|
|
402
|
+
return node.kind === ts9__default.default.SyntaxKind.ImportKeyword;
|
|
403
|
+
}
|
|
404
|
+
function isImportKeyword(node) {
|
|
405
|
+
return node.kind === ts9__default.default.SyntaxKind.ImportKeyword;
|
|
406
|
+
}
|
|
407
|
+
function isInKeyword(node) {
|
|
408
|
+
return node.kind === ts9__default.default.SyntaxKind.InKeyword;
|
|
409
|
+
}
|
|
410
|
+
function isJSDocText(node) {
|
|
411
|
+
return node.kind === ts9__default.default.SyntaxKind.JSDocText;
|
|
412
|
+
}
|
|
413
|
+
function isJsonMinusNumericLiteral(node) {
|
|
414
|
+
return node.kind === ts9__default.default.SyntaxKind.PrefixUnaryExpression;
|
|
415
|
+
}
|
|
416
|
+
function isNeverKeyword(node) {
|
|
417
|
+
return node.kind === ts9__default.default.SyntaxKind.NeverKeyword;
|
|
418
|
+
}
|
|
419
|
+
function isNullKeyword(node) {
|
|
420
|
+
return node.kind === ts9__default.default.SyntaxKind.NullKeyword;
|
|
421
|
+
}
|
|
422
|
+
function isNullLiteral(node) {
|
|
423
|
+
return node.kind === ts9__default.default.SyntaxKind.NullKeyword;
|
|
424
|
+
}
|
|
425
|
+
function isNumberKeyword(node) {
|
|
426
|
+
return node.kind === ts9__default.default.SyntaxKind.NumberKeyword;
|
|
427
|
+
}
|
|
428
|
+
function isObjectKeyword(node) {
|
|
429
|
+
return node.kind === ts9__default.default.SyntaxKind.ObjectKeyword;
|
|
430
|
+
}
|
|
431
|
+
function isOutKeyword(node) {
|
|
432
|
+
return node.kind === ts9__default.default.SyntaxKind.OutKeyword;
|
|
433
|
+
}
|
|
434
|
+
function isOverrideKeyword(node) {
|
|
435
|
+
return node.kind === ts9__default.default.SyntaxKind.OverrideKeyword;
|
|
436
|
+
}
|
|
437
|
+
function isPrivateKeyword(node) {
|
|
438
|
+
return node.kind === ts9__default.default.SyntaxKind.PrivateKeyword;
|
|
439
|
+
}
|
|
440
|
+
function isProtectedKeyword(node) {
|
|
441
|
+
return node.kind === ts9__default.default.SyntaxKind.ProtectedKeyword;
|
|
442
|
+
}
|
|
443
|
+
function isPublicKeyword(node) {
|
|
444
|
+
return node.kind === ts9__default.default.SyntaxKind.PublicKeyword;
|
|
445
|
+
}
|
|
446
|
+
function isQuestionDotToken(node) {
|
|
447
|
+
return node.kind === ts9__default.default.SyntaxKind.QuestionDotToken;
|
|
448
|
+
}
|
|
449
|
+
function isQuestionToken(node) {
|
|
450
|
+
return node.kind === ts9__default.default.SyntaxKind.QuestionToken;
|
|
451
|
+
}
|
|
452
|
+
function isReadonlyKeyword(node) {
|
|
453
|
+
return node.kind === ts9__default.default.SyntaxKind.ReadonlyKeyword;
|
|
454
|
+
}
|
|
455
|
+
function isStaticKeyword(node) {
|
|
456
|
+
return node.kind === ts9__default.default.SyntaxKind.StaticKeyword;
|
|
457
|
+
}
|
|
458
|
+
function isStringKeyword(node) {
|
|
459
|
+
return node.kind === ts9__default.default.SyntaxKind.StringKeyword;
|
|
460
|
+
}
|
|
461
|
+
function isSuperExpression(node) {
|
|
462
|
+
return node.kind === ts9__default.default.SyntaxKind.SuperKeyword;
|
|
463
|
+
}
|
|
464
|
+
function isSuperKeyword(node) {
|
|
465
|
+
return node.kind === ts9__default.default.SyntaxKind.SuperKeyword;
|
|
466
|
+
}
|
|
467
|
+
function isSymbolKeyword(node) {
|
|
468
|
+
return node.kind === ts9__default.default.SyntaxKind.SymbolKeyword;
|
|
469
|
+
}
|
|
470
|
+
function isSyntaxList(node) {
|
|
471
|
+
return node.kind === ts9__default.default.SyntaxKind.SyntaxList;
|
|
472
|
+
}
|
|
473
|
+
function isThisExpression(node) {
|
|
474
|
+
return node.kind === ts9__default.default.SyntaxKind.ThisKeyword;
|
|
475
|
+
}
|
|
476
|
+
function isThisKeyword(node) {
|
|
477
|
+
return node.kind === ts9__default.default.SyntaxKind.ThisKeyword;
|
|
478
|
+
}
|
|
479
|
+
function isTrueKeyword(node) {
|
|
480
|
+
return node.kind === ts9__default.default.SyntaxKind.TrueKeyword;
|
|
481
|
+
}
|
|
482
|
+
function isTrueLiteral(node) {
|
|
483
|
+
return node.kind === ts9__default.default.SyntaxKind.TrueKeyword;
|
|
484
|
+
}
|
|
485
|
+
function isUndefinedKeyword(node) {
|
|
486
|
+
return node.kind === ts9__default.default.SyntaxKind.UndefinedKeyword;
|
|
487
|
+
}
|
|
488
|
+
function isUnknownKeyword(node) {
|
|
489
|
+
return node.kind === ts9__default.default.SyntaxKind.UnknownKeyword;
|
|
490
|
+
}
|
|
491
|
+
function isVoidKeyword(node) {
|
|
492
|
+
return node.kind === ts9__default.default.SyntaxKind.VoidKeyword;
|
|
493
|
+
}
|
|
494
|
+
function hasDecorators(node) {
|
|
495
|
+
return ts9__default.default.isParameter(node) || ts9__default.default.isPropertyDeclaration(node) || ts9__default.default.isMethodDeclaration(node) || ts9__default.default.isGetAccessorDeclaration(node) || ts9__default.default.isSetAccessorDeclaration(node) || ts9__default.default.isClassExpression(node) || ts9__default.default.isClassDeclaration(node);
|
|
496
|
+
}
|
|
497
|
+
function hasExpressionInitializer(node) {
|
|
498
|
+
return ts9__default.default.isVariableDeclaration(node) || ts9__default.default.isParameter(node) || ts9__default.default.isBindingElement(node) || ts9__default.default.isPropertyDeclaration(node) || ts9__default.default.isPropertyAssignment(node) || ts9__default.default.isEnumMember(node);
|
|
499
|
+
}
|
|
500
|
+
function hasInitializer(node) {
|
|
501
|
+
return hasExpressionInitializer(node) || ts9__default.default.isForStatement(node) || ts9__default.default.isForInStatement(node) || ts9__default.default.isForOfStatement(node) || ts9__default.default.isJsxAttribute(node);
|
|
502
|
+
}
|
|
503
|
+
function hasJSDoc(node) {
|
|
504
|
+
if (
|
|
505
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated -- Keep compatibility with ts <5
|
|
506
|
+
isAccessorDeclaration(node) || ts9__default.default.isArrowFunction(node) || ts9__default.default.isBlock(node) || ts9__default.default.isBreakStatement(node) || ts9__default.default.isCallSignatureDeclaration(node) || ts9__default.default.isCaseClause(node) || // eslint-disable-next-line @typescript-eslint/no-deprecated -- Keep compatibility with ts <5
|
|
507
|
+
isClassLikeDeclaration(node) || ts9__default.default.isConstructorDeclaration(node) || ts9__default.default.isConstructorTypeNode(node) || ts9__default.default.isConstructSignatureDeclaration(node) || ts9__default.default.isContinueStatement(node) || ts9__default.default.isDebuggerStatement(node) || ts9__default.default.isDoStatement(node) || ts9__default.default.isEmptyStatement(node) || isEndOfFileToken(node) || ts9__default.default.isEnumDeclaration(node) || ts9__default.default.isEnumMember(node) || ts9__default.default.isExportAssignment(node) || ts9__default.default.isExportDeclaration(node) || ts9__default.default.isExportSpecifier(node) || ts9__default.default.isExpressionStatement(node) || ts9__default.default.isForInStatement(node) || ts9__default.default.isForOfStatement(node) || ts9__default.default.isForStatement(node) || ts9__default.default.isFunctionDeclaration(node) || ts9__default.default.isFunctionExpression(node) || ts9__default.default.isFunctionTypeNode(node) || ts9__default.default.isIfStatement(node) || ts9__default.default.isImportDeclaration(node) || ts9__default.default.isImportEqualsDeclaration(node) || ts9__default.default.isIndexSignatureDeclaration(node) || ts9__default.default.isInterfaceDeclaration(node) || ts9__default.default.isJSDocFunctionType(node) || ts9__default.default.isLabeledStatement(node) || ts9__default.default.isMethodDeclaration(node) || ts9__default.default.isMethodSignature(node) || ts9__default.default.isModuleDeclaration(node) || ts9__default.default.isNamedTupleMember(node) || ts9__default.default.isNamespaceExportDeclaration(node) || ts9__default.default.isParameter(node) || ts9__default.default.isParenthesizedExpression(node) || ts9__default.default.isPropertyAssignment(node) || ts9__default.default.isPropertyDeclaration(node) || ts9__default.default.isPropertySignature(node) || ts9__default.default.isReturnStatement(node) || ts9__default.default.isShorthandPropertyAssignment(node) || ts9__default.default.isSpreadAssignment(node) || ts9__default.default.isSwitchStatement(node) || ts9__default.default.isThrowStatement(node) || ts9__default.default.isTryStatement(node) || ts9__default.default.isTypeAliasDeclaration(node) || ts9__default.default.isVariableDeclaration(node) || ts9__default.default.isVariableStatement(node) || ts9__default.default.isWhileStatement(node) || ts9__default.default.isWithStatement(node)
|
|
508
|
+
) {
|
|
509
|
+
return true;
|
|
510
|
+
}
|
|
511
|
+
if (isTsVersionAtLeast(4, 4) && ts9__default.default.isClassStaticBlockDeclaration(node)) {
|
|
512
|
+
return true;
|
|
513
|
+
}
|
|
514
|
+
if (isTsVersionAtLeast(5, 0) && (ts9__default.default.isBinaryExpression(node) || ts9__default.default.isElementAccessExpression(node) || ts9__default.default.isIdentifier(node) || ts9__default.default.isJSDocSignature(node) || ts9__default.default.isObjectLiteralExpression(node) || ts9__default.default.isPropertyAccessExpression(node) || ts9__default.default.isTypeParameterDeclaration(node))) {
|
|
515
|
+
return true;
|
|
516
|
+
}
|
|
517
|
+
return false;
|
|
518
|
+
}
|
|
519
|
+
function hasModifiers(node) {
|
|
520
|
+
return ts9__default.default.isTypeParameterDeclaration(node) || ts9__default.default.isParameter(node) || ts9__default.default.isConstructorTypeNode(node) || ts9__default.default.isPropertySignature(node) || ts9__default.default.isPropertyDeclaration(node) || ts9__default.default.isMethodSignature(node) || ts9__default.default.isMethodDeclaration(node) || ts9__default.default.isConstructorDeclaration(node) || ts9__default.default.isGetAccessorDeclaration(node) || ts9__default.default.isSetAccessorDeclaration(node) || ts9__default.default.isIndexSignatureDeclaration(node) || ts9__default.default.isFunctionExpression(node) || ts9__default.default.isArrowFunction(node) || ts9__default.default.isClassExpression(node) || ts9__default.default.isVariableStatement(node) || ts9__default.default.isFunctionDeclaration(node) || ts9__default.default.isClassDeclaration(node) || ts9__default.default.isInterfaceDeclaration(node) || ts9__default.default.isTypeAliasDeclaration(node) || ts9__default.default.isEnumDeclaration(node) || ts9__default.default.isModuleDeclaration(node) || ts9__default.default.isImportEqualsDeclaration(node) || ts9__default.default.isImportDeclaration(node) || ts9__default.default.isExportAssignment(node) || ts9__default.default.isExportDeclaration(node);
|
|
521
|
+
}
|
|
522
|
+
function hasType(node) {
|
|
523
|
+
return isSignatureDeclaration(node) || ts9__default.default.isVariableDeclaration(node) || ts9__default.default.isParameter(node) || ts9__default.default.isPropertySignature(node) || ts9__default.default.isPropertyDeclaration(node) || ts9__default.default.isTypePredicateNode(node) || ts9__default.default.isParenthesizedTypeNode(node) || ts9__default.default.isTypeOperatorNode(node) || ts9__default.default.isMappedTypeNode(node) || ts9__default.default.isAssertionExpression(node) || ts9__default.default.isTypeAliasDeclaration(node) || ts9__default.default.isJSDocTypeExpression(node) || ts9__default.default.isJSDocNonNullableType(node) || ts9__default.default.isJSDocNullableType(node) || ts9__default.default.isJSDocOptionalType(node) || ts9__default.default.isJSDocVariadicType(node);
|
|
524
|
+
}
|
|
525
|
+
function hasTypeArguments(node) {
|
|
526
|
+
return ts9__default.default.isCallExpression(node) || ts9__default.default.isNewExpression(node) || ts9__default.default.isTaggedTemplateExpression(node) || ts9__default.default.isJsxOpeningElement(node) || ts9__default.default.isJsxSelfClosingElement(node);
|
|
527
|
+
}
|
|
528
|
+
function isAccessExpression(node) {
|
|
529
|
+
return ts9__default.default.isPropertyAccessExpression(node) || ts9__default.default.isElementAccessExpression(node);
|
|
530
|
+
}
|
|
531
|
+
function isAccessibilityModifier(node) {
|
|
532
|
+
return isPublicKeyword(node) || isPrivateKeyword(node) || isProtectedKeyword(node);
|
|
533
|
+
}
|
|
534
|
+
function isAccessorDeclaration(node) {
|
|
535
|
+
return ts9__default.default.isGetAccessorDeclaration(node) || ts9__default.default.isSetAccessorDeclaration(node);
|
|
536
|
+
}
|
|
537
|
+
function isArrayBindingElement(node) {
|
|
538
|
+
return ts9__default.default.isBindingElement(node) || ts9__default.default.isOmittedExpression(node);
|
|
539
|
+
}
|
|
540
|
+
function isArrayBindingOrAssignmentPattern(node) {
|
|
541
|
+
return ts9__default.default.isArrayBindingPattern(node) || ts9__default.default.isArrayLiteralExpression(node);
|
|
542
|
+
}
|
|
543
|
+
function isAssignmentPattern(node) {
|
|
544
|
+
return ts9__default.default.isObjectLiteralExpression(node) || ts9__default.default.isArrayLiteralExpression(node);
|
|
545
|
+
}
|
|
546
|
+
function isBindingOrAssignmentElementRestIndicator(node) {
|
|
547
|
+
if (ts9__default.default.isSpreadElement(node) || ts9__default.default.isSpreadAssignment(node)) {
|
|
548
|
+
return true;
|
|
549
|
+
}
|
|
550
|
+
if (isTsVersionAtLeast(4, 4)) {
|
|
551
|
+
return ts9__default.default.isDotDotDotToken(node);
|
|
552
|
+
}
|
|
553
|
+
return false;
|
|
554
|
+
}
|
|
555
|
+
function isBindingOrAssignmentElementTarget(node) {
|
|
556
|
+
return isBindingOrAssignmentPattern(node) || ts9__default.default.isIdentifier(node) || ts9__default.default.isPropertyAccessExpression(node) || ts9__default.default.isElementAccessExpression(node) || ts9__default.default.isOmittedExpression(node);
|
|
557
|
+
}
|
|
558
|
+
function isBindingOrAssignmentPattern(node) {
|
|
559
|
+
return isObjectBindingOrAssignmentPattern(node) || isArrayBindingOrAssignmentPattern(node);
|
|
560
|
+
}
|
|
561
|
+
function isBindingPattern(node) {
|
|
562
|
+
return ts9__default.default.isObjectBindingPattern(node) || ts9__default.default.isArrayBindingPattern(node);
|
|
563
|
+
}
|
|
564
|
+
function isBlockLike(node) {
|
|
565
|
+
return ts9__default.default.isSourceFile(node) || ts9__default.default.isBlock(node) || ts9__default.default.isModuleBlock(node) || ts9__default.default.isCaseOrDefaultClause(node);
|
|
566
|
+
}
|
|
567
|
+
function isBooleanLiteral(node) {
|
|
568
|
+
return isTrueLiteral(node) || isFalseLiteral(node);
|
|
569
|
+
}
|
|
570
|
+
function isClassLikeDeclaration(node) {
|
|
571
|
+
return ts9__default.default.isClassDeclaration(node) || ts9__default.default.isClassExpression(node);
|
|
572
|
+
}
|
|
573
|
+
function isClassMemberModifier(node) {
|
|
574
|
+
return isAccessibilityModifier(node) || isReadonlyKeyword(node) || isStaticKeyword(node) || isAccessorKeyword(node);
|
|
575
|
+
}
|
|
576
|
+
function isDeclarationName(node) {
|
|
577
|
+
return ts9__default.default.isIdentifier(node) || ts9__default.default.isPrivateIdentifier(node) || ts9__default.default.isStringLiteralLike(node) || ts9__default.default.isNumericLiteral(node) || ts9__default.default.isComputedPropertyName(node) || ts9__default.default.isElementAccessExpression(node) || isBindingPattern(node) || isEntityNameExpression(node);
|
|
578
|
+
}
|
|
579
|
+
function isDeclarationWithTypeParameterChildren(node) {
|
|
580
|
+
return isSignatureDeclaration(node) || // eslint-disable-next-line @typescript-eslint/no-deprecated -- Keep compatibility with ts <5
|
|
581
|
+
isClassLikeDeclaration(node) || ts9__default.default.isInterfaceDeclaration(node) || ts9__default.default.isTypeAliasDeclaration(node) || ts9__default.default.isJSDocTemplateTag(node);
|
|
582
|
+
}
|
|
583
|
+
function isDeclarationWithTypeParameters(node) {
|
|
584
|
+
return isDeclarationWithTypeParameterChildren(node) || ts9__default.default.isJSDocTypedefTag(node) || ts9__default.default.isJSDocCallbackTag(node) || ts9__default.default.isJSDocSignature(node);
|
|
585
|
+
}
|
|
586
|
+
function isDestructuringPattern(node) {
|
|
587
|
+
return isBindingPattern(node) || ts9__default.default.isObjectLiteralExpression(node) || ts9__default.default.isArrayLiteralExpression(node);
|
|
588
|
+
}
|
|
589
|
+
function isEntityNameExpression(node) {
|
|
590
|
+
return ts9__default.default.isIdentifier(node) || isPropertyAccessEntityNameExpression(node);
|
|
591
|
+
}
|
|
592
|
+
function isEntityNameOrEntityNameExpression(node) {
|
|
593
|
+
return ts9__default.default.isEntityName(node) || isEntityNameExpression(node);
|
|
594
|
+
}
|
|
595
|
+
function isForInOrOfStatement(node) {
|
|
596
|
+
return ts9__default.default.isForInStatement(node) || ts9__default.default.isForOfStatement(node);
|
|
597
|
+
}
|
|
598
|
+
function isFunctionLikeDeclaration(node) {
|
|
599
|
+
return ts9__default.default.isFunctionDeclaration(node) || ts9__default.default.isMethodDeclaration(node) || ts9__default.default.isGetAccessorDeclaration(node) || ts9__default.default.isSetAccessorDeclaration(node) || ts9__default.default.isConstructorDeclaration(node) || ts9__default.default.isFunctionExpression(node) || ts9__default.default.isArrowFunction(node);
|
|
600
|
+
}
|
|
601
|
+
function isJSDocComment(node) {
|
|
602
|
+
if (isJSDocText(node)) {
|
|
603
|
+
return true;
|
|
604
|
+
}
|
|
605
|
+
if (isTsVersionAtLeast(4, 4)) {
|
|
606
|
+
return ts9__default.default.isJSDocLink(node) || ts9__default.default.isJSDocLinkCode(node) || ts9__default.default.isJSDocLinkPlain(node);
|
|
607
|
+
}
|
|
608
|
+
return false;
|
|
609
|
+
}
|
|
610
|
+
function isJSDocNamespaceBody(node) {
|
|
611
|
+
return ts9__default.default.isIdentifier(node) || isJSDocNamespaceDeclaration(node);
|
|
612
|
+
}
|
|
613
|
+
function isJSDocTypeReferencingNode(node) {
|
|
614
|
+
return ts9__default.default.isJSDocVariadicType(node) || ts9__default.default.isJSDocOptionalType(node) || ts9__default.default.isJSDocNullableType(node) || ts9__default.default.isJSDocNonNullableType(node);
|
|
615
|
+
}
|
|
616
|
+
function isJsonObjectExpression(node) {
|
|
617
|
+
return ts9__default.default.isObjectLiteralExpression(node) || ts9__default.default.isArrayLiteralExpression(node) || isJsonMinusNumericLiteral(node) || ts9__default.default.isNumericLiteral(node) || ts9__default.default.isStringLiteral(node) || isBooleanLiteral(node) || isNullLiteral(node);
|
|
618
|
+
}
|
|
619
|
+
function isJsxAttributeLike(node) {
|
|
620
|
+
return ts9__default.default.isJsxAttribute(node) || ts9__default.default.isJsxSpreadAttribute(node);
|
|
621
|
+
}
|
|
622
|
+
function isJsxAttributeValue(node) {
|
|
623
|
+
return ts9__default.default.isStringLiteral(node) || ts9__default.default.isJsxExpression(node) || ts9__default.default.isJsxElement(node) || ts9__default.default.isJsxSelfClosingElement(node) || ts9__default.default.isJsxFragment(node);
|
|
624
|
+
}
|
|
625
|
+
function isJsxChild(node) {
|
|
626
|
+
return ts9__default.default.isJsxText(node) || ts9__default.default.isJsxExpression(node) || ts9__default.default.isJsxElement(node) || ts9__default.default.isJsxSelfClosingElement(node) || ts9__default.default.isJsxFragment(node);
|
|
627
|
+
}
|
|
628
|
+
function isJsxTagNameExpression(node) {
|
|
629
|
+
return ts9__default.default.isIdentifier(node) || isThisExpression(node) || isJsxTagNamePropertyAccess(node);
|
|
630
|
+
}
|
|
631
|
+
function isLiteralToken(node) {
|
|
632
|
+
return ts9__default.default.isNumericLiteral(node) || ts9__default.default.isBigIntLiteral(node) || ts9__default.default.isStringLiteral(node) || ts9__default.default.isJsxText(node) || ts9__default.default.isRegularExpressionLiteral(node) || ts9__default.default.isNoSubstitutionTemplateLiteral(node);
|
|
633
|
+
}
|
|
634
|
+
function isModuleBody(node) {
|
|
635
|
+
return isNamespaceBody(node) || isJSDocNamespaceBody(node);
|
|
636
|
+
}
|
|
637
|
+
function isModuleName(node) {
|
|
638
|
+
return ts9__default.default.isIdentifier(node) || ts9__default.default.isStringLiteral(node);
|
|
639
|
+
}
|
|
640
|
+
function isModuleReference(node) {
|
|
641
|
+
return ts9__default.default.isEntityName(node) || ts9__default.default.isExternalModuleReference(node);
|
|
642
|
+
}
|
|
643
|
+
function isNamedImportBindings(node) {
|
|
644
|
+
return ts9__default.default.isNamespaceImport(node) || ts9__default.default.isNamedImports(node);
|
|
645
|
+
}
|
|
646
|
+
function isNamedImportsOrExports(node) {
|
|
647
|
+
return ts9__default.default.isNamedImports(node) || ts9__default.default.isNamedExports(node);
|
|
648
|
+
}
|
|
649
|
+
function isNamespaceBody(node) {
|
|
650
|
+
return ts9__default.default.isModuleBlock(node) || isNamespaceDeclaration(node);
|
|
651
|
+
}
|
|
652
|
+
function isObjectBindingOrAssignmentElement(node) {
|
|
653
|
+
return ts9__default.default.isBindingElement(node) || ts9__default.default.isPropertyAssignment(node) || ts9__default.default.isShorthandPropertyAssignment(node) || ts9__default.default.isSpreadAssignment(node);
|
|
654
|
+
}
|
|
655
|
+
function isObjectBindingOrAssignmentPattern(node) {
|
|
656
|
+
return ts9__default.default.isObjectBindingPattern(node) || ts9__default.default.isObjectLiteralExpression(node);
|
|
657
|
+
}
|
|
658
|
+
function isObjectTypeDeclaration(node) {
|
|
659
|
+
return (
|
|
660
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated -- Keep compatibility with ts <5
|
|
661
|
+
isClassLikeDeclaration(node) || ts9__default.default.isInterfaceDeclaration(node) || ts9__default.default.isTypeLiteralNode(node)
|
|
662
|
+
);
|
|
663
|
+
}
|
|
664
|
+
function isParameterPropertyModifier(node) {
|
|
665
|
+
return isAccessibilityModifier(node) || isReadonlyKeyword(node);
|
|
666
|
+
}
|
|
667
|
+
function isPropertyNameLiteral(node) {
|
|
668
|
+
return ts9__default.default.isIdentifier(node) || ts9__default.default.isStringLiteralLike(node) || ts9__default.default.isNumericLiteral(node);
|
|
669
|
+
}
|
|
670
|
+
function isPseudoLiteralToken(node) {
|
|
671
|
+
return ts9__default.default.isTemplateHead(node) || ts9__default.default.isTemplateMiddle(node) || ts9__default.default.isTemplateTail(node);
|
|
672
|
+
}
|
|
673
|
+
function isSignatureDeclaration(node) {
|
|
674
|
+
return ts9__default.default.isCallSignatureDeclaration(node) || ts9__default.default.isConstructSignatureDeclaration(node) || ts9__default.default.isMethodSignature(node) || ts9__default.default.isIndexSignatureDeclaration(node) || ts9__default.default.isFunctionTypeNode(node) || ts9__default.default.isConstructorTypeNode(node) || ts9__default.default.isJSDocFunctionType(node) || ts9__default.default.isFunctionDeclaration(node) || ts9__default.default.isMethodDeclaration(node) || ts9__default.default.isConstructorDeclaration(node) || // eslint-disable-next-line @typescript-eslint/no-deprecated -- Keep compatibility with ts <5
|
|
675
|
+
isAccessorDeclaration(node) || ts9__default.default.isFunctionExpression(node) || ts9__default.default.isArrowFunction(node);
|
|
676
|
+
}
|
|
677
|
+
function isSuperProperty(node) {
|
|
678
|
+
return isSuperPropertyAccessExpression(node) || isSuperElementAccessExpression(node);
|
|
679
|
+
}
|
|
680
|
+
function isTypeOnlyCompatibleAliasDeclaration(node) {
|
|
681
|
+
if (ts9__default.default.isImportClause(node) || ts9__default.default.isImportEqualsDeclaration(node) || ts9__default.default.isNamespaceImport(node) || ts9__default.default.isImportOrExportSpecifier(node)) {
|
|
682
|
+
return true;
|
|
683
|
+
}
|
|
684
|
+
if (isTsVersionAtLeast(5, 0) && (ts9__default.default.isExportDeclaration(node) || ts9__default.default.isNamespaceExport(node))) {
|
|
685
|
+
return true;
|
|
686
|
+
}
|
|
687
|
+
return false;
|
|
688
|
+
}
|
|
689
|
+
function isTypeReferenceType(node) {
|
|
690
|
+
return ts9__default.default.isTypeReferenceNode(node) || ts9__default.default.isExpressionWithTypeArguments(node);
|
|
691
|
+
}
|
|
692
|
+
function isUnionOrIntersectionTypeNode(node) {
|
|
693
|
+
return ts9__default.default.isUnionTypeNode(node) || ts9__default.default.isIntersectionTypeNode(node);
|
|
694
|
+
}
|
|
695
|
+
function isVariableLikeDeclaration(node) {
|
|
696
|
+
return ts9__default.default.isVariableDeclaration(node) || ts9__default.default.isParameter(node) || ts9__default.default.isBindingElement(node) || ts9__default.default.isPropertyDeclaration(node) || ts9__default.default.isPropertyAssignment(node) || ts9__default.default.isPropertySignature(node) || ts9__default.default.isJsxAttribute(node) || ts9__default.default.isShorthandPropertyAssignment(node) || ts9__default.default.isEnumMember(node) || ts9__default.default.isJSDocPropertyTag(node) || ts9__default.default.isJSDocParameterTag(node);
|
|
697
|
+
}
|
|
698
|
+
|
|
699
|
+
// src/nodes/typeGuards/compound.ts
|
|
700
|
+
function isConstAssertionExpression(node) {
|
|
701
|
+
return ts9__default.default.isTypeReferenceNode(node.type) && ts9__default.default.isIdentifier(node.type.typeName) && node.type.typeName.escapedText === "const";
|
|
702
|
+
}
|
|
703
|
+
function isIterationStatement(node) {
|
|
704
|
+
switch (node.kind) {
|
|
705
|
+
case ts9__default.default.SyntaxKind.DoStatement:
|
|
706
|
+
case ts9__default.default.SyntaxKind.ForInStatement:
|
|
707
|
+
case ts9__default.default.SyntaxKind.ForOfStatement:
|
|
708
|
+
case ts9__default.default.SyntaxKind.ForStatement:
|
|
709
|
+
case ts9__default.default.SyntaxKind.WhileStatement:
|
|
710
|
+
return true;
|
|
711
|
+
default:
|
|
712
|
+
return false;
|
|
713
|
+
}
|
|
714
|
+
}
|
|
715
|
+
function isJSDocNamespaceDeclaration(node) {
|
|
716
|
+
return ts9__default.default.isModuleDeclaration(node) && ts9__default.default.isIdentifier(node.name) && (node.body === void 0 || isJSDocNamespaceBody(node.body));
|
|
717
|
+
}
|
|
718
|
+
function isJsxTagNamePropertyAccess(node) {
|
|
719
|
+
return ts9__default.default.isPropertyAccessExpression(node) && // eslint-disable-next-line @typescript-eslint/no-deprecated -- Keep compatibility with ts < 5
|
|
720
|
+
isJsxTagNameExpression(node.expression);
|
|
721
|
+
}
|
|
722
|
+
function isNamedDeclarationWithName(node) {
|
|
723
|
+
return "name" in node && node.name !== void 0 && node.name !== null && isDeclarationName(node.name);
|
|
724
|
+
}
|
|
725
|
+
function isNamespaceDeclaration(node) {
|
|
726
|
+
return ts9__default.default.isModuleDeclaration(node) && ts9__default.default.isIdentifier(node.name) && node.body !== void 0 && isNamespaceBody(node.body);
|
|
727
|
+
}
|
|
728
|
+
function isNumericOrStringLikeLiteral(node) {
|
|
729
|
+
switch (node.kind) {
|
|
730
|
+
case ts9__default.default.SyntaxKind.NoSubstitutionTemplateLiteral:
|
|
731
|
+
case ts9__default.default.SyntaxKind.NumericLiteral:
|
|
732
|
+
case ts9__default.default.SyntaxKind.StringLiteral:
|
|
733
|
+
return true;
|
|
734
|
+
default:
|
|
735
|
+
return false;
|
|
736
|
+
}
|
|
737
|
+
}
|
|
738
|
+
function isPropertyAccessEntityNameExpression(node) {
|
|
739
|
+
return ts9__default.default.isPropertyAccessExpression(node) && ts9__default.default.isIdentifier(node.name) && isEntityNameExpression(node.expression);
|
|
740
|
+
}
|
|
741
|
+
function isSuperElementAccessExpression(node) {
|
|
742
|
+
return ts9__default.default.isElementAccessExpression(node) && isSuperExpression(node.expression);
|
|
743
|
+
}
|
|
744
|
+
function isSuperPropertyAccessExpression(node) {
|
|
745
|
+
return ts9__default.default.isPropertyAccessExpression(node) && isSuperExpression(node.expression);
|
|
746
|
+
}
|
|
747
|
+
function isFunctionScopeBoundary(node) {
|
|
748
|
+
switch (node.kind) {
|
|
749
|
+
case ts9__default.default.SyntaxKind.ArrowFunction:
|
|
750
|
+
case ts9__default.default.SyntaxKind.CallSignature:
|
|
751
|
+
case ts9__default.default.SyntaxKind.ClassDeclaration:
|
|
752
|
+
case ts9__default.default.SyntaxKind.ClassExpression:
|
|
753
|
+
case ts9__default.default.SyntaxKind.Constructor:
|
|
754
|
+
case ts9__default.default.SyntaxKind.ConstructorType:
|
|
755
|
+
case ts9__default.default.SyntaxKind.ConstructSignature:
|
|
756
|
+
case ts9__default.default.SyntaxKind.EnumDeclaration:
|
|
757
|
+
case ts9__default.default.SyntaxKind.FunctionDeclaration:
|
|
758
|
+
case ts9__default.default.SyntaxKind.FunctionExpression:
|
|
759
|
+
case ts9__default.default.SyntaxKind.FunctionType:
|
|
760
|
+
case ts9__default.default.SyntaxKind.GetAccessor:
|
|
761
|
+
case ts9__default.default.SyntaxKind.MethodDeclaration:
|
|
762
|
+
case ts9__default.default.SyntaxKind.MethodSignature:
|
|
763
|
+
case ts9__default.default.SyntaxKind.ModuleDeclaration:
|
|
764
|
+
case ts9__default.default.SyntaxKind.SetAccessor:
|
|
765
|
+
return true;
|
|
766
|
+
case ts9__default.default.SyntaxKind.SourceFile:
|
|
767
|
+
return ts9__default.default.isExternalModule(node);
|
|
768
|
+
default:
|
|
769
|
+
return false;
|
|
770
|
+
}
|
|
771
|
+
}
|
|
772
|
+
function isIntrinsicAnyType(type) {
|
|
773
|
+
return isTypeFlagSet(type, ts9__default.default.TypeFlags.Any);
|
|
774
|
+
}
|
|
775
|
+
function isIntrinsicBigIntType(type) {
|
|
776
|
+
return isTypeFlagSet(type, ts9__default.default.TypeFlags.BigInt);
|
|
777
|
+
}
|
|
778
|
+
function isIntrinsicBooleanType(type) {
|
|
779
|
+
return isTypeFlagSet(type, ts9__default.default.TypeFlags.Boolean);
|
|
780
|
+
}
|
|
781
|
+
function isIntrinsicErrorType(type) {
|
|
782
|
+
return isIntrinsicType(type) && type.intrinsicName === "error";
|
|
783
|
+
}
|
|
784
|
+
function isIntrinsicESSymbolType(type) {
|
|
785
|
+
return isTypeFlagSet(type, ts9__default.default.TypeFlags.ESSymbol);
|
|
786
|
+
}
|
|
787
|
+
var IntrinsicTypeFlags = ts9__default.default.TypeFlags.Intrinsic ?? ts9__default.default.TypeFlags.Any | ts9__default.default.TypeFlags.Unknown | ts9__default.default.TypeFlags.String | ts9__default.default.TypeFlags.Number | ts9__default.default.TypeFlags.BigInt | ts9__default.default.TypeFlags.Boolean | ts9__default.default.TypeFlags.BooleanLiteral | ts9__default.default.TypeFlags.ESSymbol | ts9__default.default.TypeFlags.Void | ts9__default.default.TypeFlags.Undefined | ts9__default.default.TypeFlags.Null | ts9__default.default.TypeFlags.Never | ts9__default.default.TypeFlags.NonPrimitive;
|
|
788
|
+
function isIntrinsicNeverType(type) {
|
|
789
|
+
return isTypeFlagSet(type, ts9__default.default.TypeFlags.Never);
|
|
790
|
+
}
|
|
791
|
+
function isIntrinsicNonPrimitiveType(type) {
|
|
792
|
+
return isTypeFlagSet(type, ts9__default.default.TypeFlags.NonPrimitive);
|
|
793
|
+
}
|
|
794
|
+
function isIntrinsicNullType(type) {
|
|
795
|
+
return isTypeFlagSet(type, ts9__default.default.TypeFlags.Null);
|
|
796
|
+
}
|
|
797
|
+
function isIntrinsicNumberType(type) {
|
|
798
|
+
return isTypeFlagSet(type, ts9__default.default.TypeFlags.Number);
|
|
799
|
+
}
|
|
800
|
+
function isIntrinsicStringType(type) {
|
|
801
|
+
return isTypeFlagSet(type, ts9__default.default.TypeFlags.String);
|
|
802
|
+
}
|
|
803
|
+
function isIntrinsicType(type) {
|
|
804
|
+
return isTypeFlagSet(type, IntrinsicTypeFlags);
|
|
805
|
+
}
|
|
806
|
+
function isIntrinsicUndefinedType(type) {
|
|
807
|
+
return isTypeFlagSet(type, ts9__default.default.TypeFlags.Undefined);
|
|
808
|
+
}
|
|
809
|
+
function isIntrinsicUnknownType(type) {
|
|
810
|
+
return isTypeFlagSet(type, ts9__default.default.TypeFlags.Unknown);
|
|
811
|
+
}
|
|
812
|
+
function isIntrinsicVoidType(type) {
|
|
813
|
+
return isTypeFlagSet(type, ts9__default.default.TypeFlags.Void);
|
|
814
|
+
}
|
|
815
|
+
function isConditionalType(type) {
|
|
816
|
+
return isTypeFlagSet(type, ts9__default.default.TypeFlags.Conditional);
|
|
817
|
+
}
|
|
818
|
+
function isEnumType(type) {
|
|
819
|
+
return isTypeFlagSet(type, ts9__default.default.TypeFlags.Enum);
|
|
820
|
+
}
|
|
821
|
+
function isFreshableType(type) {
|
|
822
|
+
return isTypeFlagSet(type, ts9__default.default.TypeFlags.Freshable);
|
|
823
|
+
}
|
|
824
|
+
function isIndexedAccessType(type) {
|
|
825
|
+
return isTypeFlagSet(type, ts9__default.default.TypeFlags.IndexedAccess);
|
|
826
|
+
}
|
|
827
|
+
function isIndexType(type) {
|
|
828
|
+
return isTypeFlagSet(type, ts9__default.default.TypeFlags.Index);
|
|
829
|
+
}
|
|
830
|
+
function isInstantiableType(type) {
|
|
831
|
+
return isTypeFlagSet(type, ts9__default.default.TypeFlags.Instantiable);
|
|
832
|
+
}
|
|
833
|
+
function isIntersectionType(type) {
|
|
834
|
+
return isTypeFlagSet(type, ts9__default.default.TypeFlags.Intersection);
|
|
835
|
+
}
|
|
836
|
+
function isObjectType(type) {
|
|
837
|
+
return isTypeFlagSet(type, ts9__default.default.TypeFlags.Object);
|
|
838
|
+
}
|
|
839
|
+
function isStringMappingType(type) {
|
|
840
|
+
return isTypeFlagSet(type, ts9__default.default.TypeFlags.StringMapping);
|
|
841
|
+
}
|
|
842
|
+
function isSubstitutionType(type) {
|
|
843
|
+
return isTypeFlagSet(type, ts9__default.default.TypeFlags.Substitution);
|
|
844
|
+
}
|
|
845
|
+
function isTypeParameter(type) {
|
|
846
|
+
return isTypeFlagSet(type, ts9__default.default.TypeFlags.TypeParameter);
|
|
847
|
+
}
|
|
848
|
+
function isTypeVariable(type) {
|
|
849
|
+
return isTypeFlagSet(type, ts9__default.default.TypeFlags.TypeVariable);
|
|
850
|
+
}
|
|
851
|
+
function isUnionOrIntersectionType(type) {
|
|
852
|
+
return isTypeFlagSet(type, ts9__default.default.TypeFlags.UnionOrIntersection);
|
|
853
|
+
}
|
|
854
|
+
function isUnionType(type) {
|
|
855
|
+
return isTypeFlagSet(type, ts9__default.default.TypeFlags.Union);
|
|
856
|
+
}
|
|
857
|
+
function isUniqueESSymbolType(type) {
|
|
858
|
+
return isTypeFlagSet(type, ts9__default.default.TypeFlags.UniqueESSymbol);
|
|
859
|
+
}
|
|
860
|
+
|
|
861
|
+
// src/types/typeGuards/objects.ts
|
|
862
|
+
function isEvolvingArrayType(type) {
|
|
863
|
+
return isObjectType(type) && isObjectFlagSet(type, ts9__default.default.ObjectFlags.EvolvingArray);
|
|
864
|
+
}
|
|
865
|
+
function isTupleType(type) {
|
|
866
|
+
return isObjectType(type) && isObjectFlagSet(type, ts9__default.default.ObjectFlags.Tuple);
|
|
867
|
+
}
|
|
868
|
+
function isTypeReference(type) {
|
|
869
|
+
return isObjectType(type) && isObjectFlagSet(type, ts9__default.default.ObjectFlags.Reference);
|
|
870
|
+
}
|
|
871
|
+
|
|
872
|
+
// src/types/typeGuards/compound.ts
|
|
873
|
+
function isFreshableIntrinsicType(type) {
|
|
874
|
+
return isIntrinsicType(type) && isFreshableType(type);
|
|
875
|
+
}
|
|
876
|
+
function isTupleTypeReference(type) {
|
|
877
|
+
return isTypeReference(type) && isTupleType(type.target);
|
|
878
|
+
}
|
|
879
|
+
function isBigIntLiteralType(type) {
|
|
880
|
+
return isTypeFlagSet(type, ts9__default.default.TypeFlags.BigIntLiteral);
|
|
881
|
+
}
|
|
882
|
+
function isBooleanLiteralType(type) {
|
|
883
|
+
return isTypeFlagSet(type, ts9__default.default.TypeFlags.BooleanLiteral);
|
|
884
|
+
}
|
|
885
|
+
function isFalseLiteralType(type) {
|
|
886
|
+
return isBooleanLiteralType(type) && type.intrinsicName === "false";
|
|
887
|
+
}
|
|
888
|
+
function isLiteralType(type) {
|
|
889
|
+
return isTypeFlagSet(type, ts9__default.default.TypeFlags.Literal);
|
|
890
|
+
}
|
|
891
|
+
function isNumberLiteralType(type) {
|
|
892
|
+
return isTypeFlagSet(type, ts9__default.default.TypeFlags.NumberLiteral);
|
|
893
|
+
}
|
|
894
|
+
function isStringLiteralType(type) {
|
|
895
|
+
return isTypeFlagSet(type, ts9__default.default.TypeFlags.StringLiteral);
|
|
896
|
+
}
|
|
897
|
+
function isTemplateLiteralType(type) {
|
|
898
|
+
return isTypeFlagSet(type, ts9__default.default.TypeFlags.TemplateLiteral);
|
|
899
|
+
}
|
|
900
|
+
function isTrueLiteralType(type) {
|
|
901
|
+
return isBooleanLiteralType(type) && type.intrinsicName === "true";
|
|
902
|
+
}
|
|
903
|
+
|
|
904
|
+
// src/types/getters.ts
|
|
905
|
+
function getCallSignaturesOfType(type) {
|
|
906
|
+
if (isUnionType(type)) {
|
|
907
|
+
const signatures = [];
|
|
908
|
+
for (const subType of type.types) {
|
|
909
|
+
signatures.push(...getCallSignaturesOfType(subType));
|
|
910
|
+
}
|
|
911
|
+
return signatures;
|
|
912
|
+
}
|
|
913
|
+
if (isIntersectionType(type)) {
|
|
914
|
+
let signatures;
|
|
915
|
+
for (const subType of type.types) {
|
|
916
|
+
const sig = getCallSignaturesOfType(subType);
|
|
917
|
+
if (sig.length !== 0) {
|
|
918
|
+
if (signatures !== void 0) {
|
|
919
|
+
return [];
|
|
920
|
+
}
|
|
921
|
+
signatures = sig;
|
|
922
|
+
}
|
|
923
|
+
}
|
|
924
|
+
return signatures === void 0 ? [] : signatures;
|
|
925
|
+
}
|
|
926
|
+
return type.getCallSignatures();
|
|
927
|
+
}
|
|
928
|
+
function getPropertyOfType(type, name) {
|
|
929
|
+
if (!name.startsWith("__")) {
|
|
930
|
+
return type.getProperty(name);
|
|
931
|
+
}
|
|
932
|
+
return type.getProperties().find((s) => s.escapedName === name);
|
|
933
|
+
}
|
|
934
|
+
function getWellKnownSymbolPropertyOfType(type, wellKnownSymbolName, typeChecker) {
|
|
935
|
+
const prefix = "__@" + wellKnownSymbolName;
|
|
936
|
+
for (const prop of type.getProperties()) {
|
|
937
|
+
if (!prop.name.startsWith(prefix)) {
|
|
938
|
+
continue;
|
|
939
|
+
}
|
|
940
|
+
const declaration = prop.valueDeclaration ?? prop.getDeclarations()?.[0];
|
|
941
|
+
if (!declaration || !isNamedDeclarationWithName(declaration) || declaration.name === void 0 || !ts9__default.default.isComputedPropertyName(declaration.name)) {
|
|
942
|
+
continue;
|
|
943
|
+
}
|
|
944
|
+
const globalSymbol = typeChecker.getApparentType(
|
|
945
|
+
typeChecker.getTypeAtLocation(declaration.name.expression)
|
|
946
|
+
).symbol;
|
|
947
|
+
if (prop.escapedName === getPropertyNameOfWellKnownSymbol(
|
|
948
|
+
typeChecker,
|
|
949
|
+
globalSymbol,
|
|
950
|
+
wellKnownSymbolName
|
|
951
|
+
)) {
|
|
952
|
+
return prop;
|
|
953
|
+
}
|
|
954
|
+
}
|
|
955
|
+
return void 0;
|
|
956
|
+
}
|
|
957
|
+
function getPropertyNameOfWellKnownSymbol(typeChecker, symbolConstructor, symbolName) {
|
|
958
|
+
const knownSymbol = symbolConstructor && typeChecker.getTypeOfSymbolAtLocation(
|
|
959
|
+
symbolConstructor,
|
|
960
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/no-unsafe-argument, @typescript-eslint/no-unsafe-member-access
|
|
961
|
+
symbolConstructor.valueDeclaration
|
|
962
|
+
).getProperty(symbolName);
|
|
963
|
+
const knownSymbolType = knownSymbol && typeChecker.getTypeOfSymbolAtLocation(
|
|
964
|
+
knownSymbol,
|
|
965
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/no-unsafe-argument, @typescript-eslint/no-unsafe-member-access
|
|
966
|
+
knownSymbol.valueDeclaration
|
|
967
|
+
);
|
|
968
|
+
if (knownSymbolType && isUniqueESSymbolType(knownSymbolType)) {
|
|
969
|
+
return knownSymbolType.escapedName;
|
|
970
|
+
}
|
|
971
|
+
return "__@" + symbolName;
|
|
972
|
+
}
|
|
973
|
+
function isBindableObjectDefinePropertyCall(node) {
|
|
974
|
+
return node.arguments.length === 3 && isEntityNameExpression(node.arguments[0]) && isNumericOrStringLikeLiteral(node.arguments[1]) && ts9__default.default.isPropertyAccessExpression(node.expression) && node.expression.name.escapedText === "defineProperty" && ts9__default.default.isIdentifier(node.expression.expression) && node.expression.expression.escapedText === "Object";
|
|
975
|
+
}
|
|
976
|
+
function isInConstContext(node, typeChecker) {
|
|
977
|
+
let current = node;
|
|
978
|
+
while (true) {
|
|
979
|
+
const parent = current.parent;
|
|
980
|
+
outer: switch (parent.kind) {
|
|
981
|
+
case ts9__default.default.SyntaxKind.ArrayLiteralExpression:
|
|
982
|
+
case ts9__default.default.SyntaxKind.ObjectLiteralExpression:
|
|
983
|
+
case ts9__default.default.SyntaxKind.ParenthesizedExpression:
|
|
984
|
+
case ts9__default.default.SyntaxKind.TemplateExpression:
|
|
985
|
+
current = parent;
|
|
986
|
+
break;
|
|
987
|
+
case ts9__default.default.SyntaxKind.AsExpression:
|
|
988
|
+
case ts9__default.default.SyntaxKind.TypeAssertionExpression:
|
|
989
|
+
return isConstAssertionExpression(parent);
|
|
990
|
+
case ts9__default.default.SyntaxKind.CallExpression: {
|
|
991
|
+
if (!ts9__default.default.isExpression(current)) {
|
|
992
|
+
return false;
|
|
993
|
+
}
|
|
994
|
+
const functionSignature = typeChecker.getResolvedSignature(
|
|
995
|
+
parent
|
|
996
|
+
);
|
|
997
|
+
if (functionSignature === void 0) {
|
|
998
|
+
return false;
|
|
999
|
+
}
|
|
1000
|
+
const argumentIndex = parent.arguments.indexOf(
|
|
1001
|
+
current
|
|
1002
|
+
);
|
|
1003
|
+
if (argumentIndex < 0) {
|
|
1004
|
+
return false;
|
|
1005
|
+
}
|
|
1006
|
+
const parameterSymbol = functionSignature.getParameters()[argumentIndex];
|
|
1007
|
+
if (parameterSymbol === void 0 || !("links" in parameterSymbol)) {
|
|
1008
|
+
return false;
|
|
1009
|
+
}
|
|
1010
|
+
const parameterSymbolLinks = parameterSymbol.links;
|
|
1011
|
+
const propertySymbol = parameterSymbolLinks.type?.getProperties()?.[argumentIndex];
|
|
1012
|
+
if (propertySymbol === void 0 || !("links" in propertySymbol)) {
|
|
1013
|
+
return false;
|
|
1014
|
+
}
|
|
1015
|
+
return !!propertySymbol.links && isTransientSymbolLinksFlagSet(
|
|
1016
|
+
propertySymbol.links,
|
|
1017
|
+
ts9__default.default.CheckFlags.Readonly
|
|
1018
|
+
);
|
|
1019
|
+
}
|
|
1020
|
+
case ts9__default.default.SyntaxKind.PrefixUnaryExpression:
|
|
1021
|
+
if (current.kind !== ts9__default.default.SyntaxKind.NumericLiteral) {
|
|
1022
|
+
return false;
|
|
1023
|
+
}
|
|
1024
|
+
switch (parent.operator) {
|
|
1025
|
+
case ts9__default.default.SyntaxKind.MinusToken:
|
|
1026
|
+
case ts9__default.default.SyntaxKind.PlusToken:
|
|
1027
|
+
current = parent;
|
|
1028
|
+
break outer;
|
|
1029
|
+
default:
|
|
1030
|
+
return false;
|
|
1031
|
+
}
|
|
1032
|
+
case ts9__default.default.SyntaxKind.PropertyAssignment:
|
|
1033
|
+
if (parent.initializer !== current) {
|
|
1034
|
+
return false;
|
|
1035
|
+
}
|
|
1036
|
+
current = parent.parent;
|
|
1037
|
+
break;
|
|
1038
|
+
case ts9__default.default.SyntaxKind.ShorthandPropertyAssignment:
|
|
1039
|
+
current = parent.parent;
|
|
1040
|
+
break;
|
|
1041
|
+
default:
|
|
1042
|
+
return false;
|
|
1043
|
+
}
|
|
1044
|
+
}
|
|
1045
|
+
}
|
|
1046
|
+
|
|
1047
|
+
// src/types/utilities.ts
|
|
1048
|
+
function intersectionConstituents(type) {
|
|
1049
|
+
return isIntersectionType(type) ? type.types : [type];
|
|
1050
|
+
}
|
|
1051
|
+
var intersectionTypeParts = intersectionConstituents;
|
|
1052
|
+
function isFalsyType(type) {
|
|
1053
|
+
if (isTypeFlagSet(
|
|
1054
|
+
type,
|
|
1055
|
+
ts9__default.default.TypeFlags.Undefined | ts9__default.default.TypeFlags.Null | ts9__default.default.TypeFlags.Void
|
|
1056
|
+
)) {
|
|
1057
|
+
return true;
|
|
1058
|
+
}
|
|
1059
|
+
if (typeIsLiteral(type)) {
|
|
1060
|
+
if (typeof type.value === "object") {
|
|
1061
|
+
return type.value.base10Value === "0";
|
|
1062
|
+
} else {
|
|
1063
|
+
return !type.value;
|
|
1064
|
+
}
|
|
1065
|
+
}
|
|
1066
|
+
return isFalseLiteralType(type);
|
|
1067
|
+
}
|
|
1068
|
+
function isPropertyReadonlyInType(type, name, typeChecker) {
|
|
1069
|
+
let seenProperty = false;
|
|
1070
|
+
let seenReadonlySignature = false;
|
|
1071
|
+
for (const subType of unionConstituents(type)) {
|
|
1072
|
+
if (getPropertyOfType(subType, name) === void 0) {
|
|
1073
|
+
const index = (isNumericPropertyName(name) ? typeChecker.getIndexInfoOfType(subType, ts9__default.default.IndexKind.Number) : void 0) ?? typeChecker.getIndexInfoOfType(subType, ts9__default.default.IndexKind.String);
|
|
1074
|
+
if (index?.isReadonly) {
|
|
1075
|
+
if (seenProperty) {
|
|
1076
|
+
return true;
|
|
1077
|
+
}
|
|
1078
|
+
seenReadonlySignature = true;
|
|
1079
|
+
}
|
|
1080
|
+
} else if (seenReadonlySignature || isReadonlyPropertyIntersection(subType, name, typeChecker)) {
|
|
1081
|
+
return true;
|
|
1082
|
+
} else {
|
|
1083
|
+
seenProperty = true;
|
|
1084
|
+
}
|
|
1085
|
+
}
|
|
1086
|
+
return false;
|
|
1087
|
+
}
|
|
1088
|
+
function isThenableType(typeChecker, node, type = typeChecker.getTypeAtLocation(node)) {
|
|
1089
|
+
for (const constituent of unionConstituents(
|
|
1090
|
+
typeChecker.getApparentType(type)
|
|
1091
|
+
)) {
|
|
1092
|
+
const then = constituent.getProperty("then");
|
|
1093
|
+
if (then === void 0) {
|
|
1094
|
+
continue;
|
|
1095
|
+
}
|
|
1096
|
+
const thenType = typeChecker.getTypeOfSymbolAtLocation(then, node);
|
|
1097
|
+
for (const subConstituent of unionConstituents(thenType)) {
|
|
1098
|
+
for (const signature of subConstituent.getCallSignatures()) {
|
|
1099
|
+
if (signature.parameters.length !== 0 && isCallback(typeChecker, signature.parameters[0], node)) {
|
|
1100
|
+
return true;
|
|
1101
|
+
}
|
|
1102
|
+
}
|
|
1103
|
+
}
|
|
1104
|
+
}
|
|
1105
|
+
return false;
|
|
1106
|
+
}
|
|
1107
|
+
function symbolHasReadonlyDeclaration(symbol, typeChecker) {
|
|
1108
|
+
return !!((symbol.flags & ts9__default.default.SymbolFlags.Accessor) === ts9__default.default.SymbolFlags.GetAccessor || symbol.declarations?.some(
|
|
1109
|
+
(node) => isModifierFlagSet(node, ts9__default.default.ModifierFlags.Readonly) || ts9__default.default.isVariableDeclaration(node) && isNodeFlagSet(node.parent, ts9__default.default.NodeFlags.Const) || ts9__default.default.isCallExpression(node) && isReadonlyAssignmentDeclaration(node, typeChecker) || ts9__default.default.isEnumMember(node) || (ts9__default.default.isPropertyAssignment(node) || ts9__default.default.isShorthandPropertyAssignment(node)) && isInConstContext(node, typeChecker)
|
|
1110
|
+
));
|
|
1111
|
+
}
|
|
1112
|
+
function typeConstituents(type) {
|
|
1113
|
+
return isIntersectionType(type) || isUnionType(type) ? type.types : [type];
|
|
1114
|
+
}
|
|
1115
|
+
function typeIsLiteral(type) {
|
|
1116
|
+
if (isTsVersionAtLeast(5, 0)) {
|
|
1117
|
+
return type.isLiteral();
|
|
1118
|
+
} else {
|
|
1119
|
+
return isTypeFlagSet(
|
|
1120
|
+
type,
|
|
1121
|
+
ts9__default.default.TypeFlags.StringLiteral | ts9__default.default.TypeFlags.NumberLiteral | ts9__default.default.TypeFlags.BigIntLiteral
|
|
1122
|
+
);
|
|
1123
|
+
}
|
|
1124
|
+
}
|
|
1125
|
+
var typeParts = typeConstituents;
|
|
1126
|
+
function unionConstituents(type) {
|
|
1127
|
+
return isUnionType(type) ? type.types : [type];
|
|
1128
|
+
}
|
|
1129
|
+
var unionTypeParts = unionConstituents;
|
|
1130
|
+
function isCallback(typeChecker, param, node) {
|
|
1131
|
+
let type = typeChecker.getApparentType(
|
|
1132
|
+
typeChecker.getTypeOfSymbolAtLocation(param, node)
|
|
1133
|
+
);
|
|
1134
|
+
if (param.valueDeclaration.dotDotDotToken) {
|
|
1135
|
+
type = type.getNumberIndexType();
|
|
1136
|
+
if (type === void 0) {
|
|
1137
|
+
return false;
|
|
1138
|
+
}
|
|
1139
|
+
}
|
|
1140
|
+
for (const subType of unionConstituents(type)) {
|
|
1141
|
+
if (subType.getCallSignatures().length !== 0) {
|
|
1142
|
+
return true;
|
|
1143
|
+
}
|
|
1144
|
+
}
|
|
1145
|
+
return false;
|
|
1146
|
+
}
|
|
1147
|
+
function isReadonlyAssignmentDeclaration(node, typeChecker) {
|
|
1148
|
+
if (!isBindableObjectDefinePropertyCall(node)) {
|
|
1149
|
+
return false;
|
|
1150
|
+
}
|
|
1151
|
+
const descriptorType = typeChecker.getTypeAtLocation(node.arguments[2]);
|
|
1152
|
+
if (descriptorType.getProperty("value") === void 0) {
|
|
1153
|
+
return descriptorType.getProperty("set") === void 0;
|
|
1154
|
+
}
|
|
1155
|
+
const writableProp = descriptorType.getProperty("writable");
|
|
1156
|
+
if (writableProp === void 0) {
|
|
1157
|
+
return false;
|
|
1158
|
+
}
|
|
1159
|
+
const writableType = writableProp.valueDeclaration !== void 0 && ts9__default.default.isPropertyAssignment(writableProp.valueDeclaration) ? typeChecker.getTypeAtLocation(writableProp.valueDeclaration.initializer) : typeChecker.getTypeOfSymbolAtLocation(writableProp, node.arguments[2]);
|
|
1160
|
+
return isFalseLiteralType(writableType);
|
|
1161
|
+
}
|
|
1162
|
+
function isReadonlyPropertyFromMappedType(type, name, typeChecker) {
|
|
1163
|
+
if (!isObjectType(type) || !isObjectFlagSet(type, ts9__default.default.ObjectFlags.Mapped)) {
|
|
1164
|
+
return;
|
|
1165
|
+
}
|
|
1166
|
+
const declaration = type.symbol.declarations[0];
|
|
1167
|
+
if (declaration.readonlyToken !== void 0 && !/^__@[^@]+$/.test(name)) {
|
|
1168
|
+
return declaration.readonlyToken.kind !== ts9__default.default.SyntaxKind.MinusToken;
|
|
1169
|
+
}
|
|
1170
|
+
const { modifiersType } = type;
|
|
1171
|
+
return modifiersType && isPropertyReadonlyInType(modifiersType, name, typeChecker);
|
|
1172
|
+
}
|
|
1173
|
+
function isReadonlyPropertyIntersection(type, name, typeChecker) {
|
|
1174
|
+
const constituents = intersectionConstituents(type);
|
|
1175
|
+
return constituents.some((constituent) => {
|
|
1176
|
+
const prop = getPropertyOfType(constituent, name);
|
|
1177
|
+
if (prop === void 0) {
|
|
1178
|
+
return false;
|
|
1179
|
+
}
|
|
1180
|
+
if (prop.flags & ts9__default.default.SymbolFlags.Transient) {
|
|
1181
|
+
if (/^(?:[1-9]\d*|0)$/.test(name) && isTupleTypeReference(constituent)) {
|
|
1182
|
+
return constituent.target.readonly;
|
|
1183
|
+
}
|
|
1184
|
+
switch (isReadonlyPropertyFromMappedType(constituent, name, typeChecker)) {
|
|
1185
|
+
case false:
|
|
1186
|
+
return false;
|
|
1187
|
+
case true:
|
|
1188
|
+
return true;
|
|
1189
|
+
}
|
|
1190
|
+
}
|
|
1191
|
+
return (
|
|
1192
|
+
// members of namespace import
|
|
1193
|
+
isSymbolFlagSet(prop, ts9__default.default.SymbolFlags.ValueModule) || // we unwrapped every mapped type, now we can check the actual declarations
|
|
1194
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated -- Will be made private-only soon.
|
|
1195
|
+
symbolHasReadonlyDeclaration(prop, typeChecker)
|
|
1196
|
+
);
|
|
1197
|
+
});
|
|
1198
|
+
}
|
|
1199
|
+
function identifierToKeywordKind(node) {
|
|
1200
|
+
return "originalKeywordKind" in node ? node.originalKeywordKind : ts9__default.default.identifierToKeywordKind(node);
|
|
1201
|
+
}
|
|
1202
|
+
|
|
1203
|
+
// src/usage/declarations.ts
|
|
1204
|
+
var DeclarationDomain = /* @__PURE__ */ ((DeclarationDomain2) => {
|
|
1205
|
+
DeclarationDomain2[DeclarationDomain2["Namespace"] = 1] = "Namespace";
|
|
1206
|
+
DeclarationDomain2[DeclarationDomain2["Type"] = 2] = "Type";
|
|
1207
|
+
DeclarationDomain2[DeclarationDomain2["Value"] = 4] = "Value";
|
|
1208
|
+
DeclarationDomain2[DeclarationDomain2["Any"] = 7] = "Any";
|
|
1209
|
+
DeclarationDomain2[DeclarationDomain2["Import"] = 8] = "Import";
|
|
1210
|
+
return DeclarationDomain2;
|
|
1211
|
+
})(DeclarationDomain || {});
|
|
1212
|
+
function getDeclarationDomain(node) {
|
|
1213
|
+
switch (node.parent.kind) {
|
|
1214
|
+
case ts9__default.default.SyntaxKind.ClassDeclaration:
|
|
1215
|
+
case ts9__default.default.SyntaxKind.ClassExpression:
|
|
1216
|
+
return 2 /* Type */ | 4 /* Value */;
|
|
1217
|
+
case ts9__default.default.SyntaxKind.EnumDeclaration:
|
|
1218
|
+
return 7 /* Any */;
|
|
1219
|
+
case ts9__default.default.SyntaxKind.FunctionDeclaration:
|
|
1220
|
+
case ts9__default.default.SyntaxKind.FunctionExpression:
|
|
1221
|
+
return 4 /* Value */;
|
|
1222
|
+
case ts9__default.default.SyntaxKind.ImportClause:
|
|
1223
|
+
case ts9__default.default.SyntaxKind.NamespaceImport:
|
|
1224
|
+
return 7 /* Any */ | 8 /* Import */;
|
|
1225
|
+
// TODO handle type-only imports
|
|
1226
|
+
case ts9__default.default.SyntaxKind.ImportEqualsDeclaration:
|
|
1227
|
+
case ts9__default.default.SyntaxKind.ImportSpecifier:
|
|
1228
|
+
return node.parent.name === node ? 7 /* Any */ | 8 /* Import */ : void 0;
|
|
1229
|
+
case ts9__default.default.SyntaxKind.InterfaceDeclaration:
|
|
1230
|
+
case ts9__default.default.SyntaxKind.TypeAliasDeclaration:
|
|
1231
|
+
case ts9__default.default.SyntaxKind.TypeParameter:
|
|
1232
|
+
return 2 /* Type */;
|
|
1233
|
+
case ts9__default.default.SyntaxKind.ModuleDeclaration:
|
|
1234
|
+
return 1 /* Namespace */;
|
|
1235
|
+
case ts9__default.default.SyntaxKind.Parameter:
|
|
1236
|
+
if (node.parent.parent.kind === ts9__default.default.SyntaxKind.IndexSignature || identifierToKeywordKind(node) === ts9__default.default.SyntaxKind.ThisKeyword) {
|
|
1237
|
+
return;
|
|
1238
|
+
}
|
|
1239
|
+
// falls through
|
|
1240
|
+
case ts9__default.default.SyntaxKind.BindingElement:
|
|
1241
|
+
case ts9__default.default.SyntaxKind.VariableDeclaration:
|
|
1242
|
+
return node.parent.name === node ? 4 /* Value */ : void 0;
|
|
1243
|
+
}
|
|
1244
|
+
}
|
|
1245
|
+
function getPropertyName(propertyName) {
|
|
1246
|
+
if (propertyName.kind === ts9__default.default.SyntaxKind.ComputedPropertyName) {
|
|
1247
|
+
const expression = unwrapParentheses(propertyName.expression);
|
|
1248
|
+
if (ts9__default.default.isPrefixUnaryExpression(expression)) {
|
|
1249
|
+
let negate = false;
|
|
1250
|
+
switch (expression.operator) {
|
|
1251
|
+
case ts9__default.default.SyntaxKind.MinusToken:
|
|
1252
|
+
negate = true;
|
|
1253
|
+
// falls through
|
|
1254
|
+
case ts9__default.default.SyntaxKind.PlusToken:
|
|
1255
|
+
return ts9__default.default.isNumericLiteral(expression.operand) ? `${negate ? "-" : ""}${expression.operand.text}` : ts9__default.default.isBigIntLiteral(expression.operand) ? `${negate ? "-" : ""}${expression.operand.text.slice(0, -1)}` : void 0;
|
|
1256
|
+
default:
|
|
1257
|
+
return;
|
|
1258
|
+
}
|
|
1259
|
+
}
|
|
1260
|
+
if (ts9__default.default.isBigIntLiteral(expression)) {
|
|
1261
|
+
return expression.text.slice(0, -1);
|
|
1262
|
+
}
|
|
1263
|
+
if (isNumericOrStringLikeLiteral(expression)) {
|
|
1264
|
+
return expression.text;
|
|
1265
|
+
}
|
|
1266
|
+
return;
|
|
1267
|
+
}
|
|
1268
|
+
return propertyName.kind === ts9__default.default.SyntaxKind.PrivateIdentifier ? void 0 : propertyName.text;
|
|
1269
|
+
}
|
|
1270
|
+
function unwrapParentheses(node) {
|
|
1271
|
+
while (node.kind === ts9__default.default.SyntaxKind.ParenthesizedExpression) {
|
|
1272
|
+
node = node.expression;
|
|
1273
|
+
}
|
|
1274
|
+
return node;
|
|
1275
|
+
}
|
|
1276
|
+
var UsageDomain = /* @__PURE__ */ ((UsageDomain2) => {
|
|
1277
|
+
UsageDomain2[UsageDomain2["Namespace"] = 1] = "Namespace";
|
|
1278
|
+
UsageDomain2[UsageDomain2["Type"] = 2] = "Type";
|
|
1279
|
+
UsageDomain2[UsageDomain2["Value"] = 4] = "Value";
|
|
1280
|
+
UsageDomain2[UsageDomain2["Any"] = 7] = "Any";
|
|
1281
|
+
UsageDomain2[UsageDomain2["TypeQuery"] = 8] = "TypeQuery";
|
|
1282
|
+
UsageDomain2[UsageDomain2["ValueOrNamespace"] = 5] = "ValueOrNamespace";
|
|
1283
|
+
return UsageDomain2;
|
|
1284
|
+
})(UsageDomain || {});
|
|
1285
|
+
function getUsageDomain(node) {
|
|
1286
|
+
const parent = node.parent;
|
|
1287
|
+
switch (parent.kind) {
|
|
1288
|
+
// Value
|
|
1289
|
+
case ts9__default.default.SyntaxKind.BindingElement:
|
|
1290
|
+
if (parent.initializer === node) {
|
|
1291
|
+
return 5 /* ValueOrNamespace */;
|
|
1292
|
+
}
|
|
1293
|
+
break;
|
|
1294
|
+
case ts9__default.default.SyntaxKind.BreakStatement:
|
|
1295
|
+
case ts9__default.default.SyntaxKind.ClassDeclaration:
|
|
1296
|
+
case ts9__default.default.SyntaxKind.ClassExpression:
|
|
1297
|
+
case ts9__default.default.SyntaxKind.ContinueStatement:
|
|
1298
|
+
case ts9__default.default.SyntaxKind.EnumDeclaration:
|
|
1299
|
+
case ts9__default.default.SyntaxKind.FunctionDeclaration:
|
|
1300
|
+
case ts9__default.default.SyntaxKind.FunctionExpression:
|
|
1301
|
+
case ts9__default.default.SyntaxKind.GetAccessor:
|
|
1302
|
+
case ts9__default.default.SyntaxKind.ImportClause:
|
|
1303
|
+
case ts9__default.default.SyntaxKind.ImportSpecifier:
|
|
1304
|
+
case ts9__default.default.SyntaxKind.InterfaceDeclaration:
|
|
1305
|
+
case ts9__default.default.SyntaxKind.JsxAttribute:
|
|
1306
|
+
case ts9__default.default.SyntaxKind.LabeledStatement:
|
|
1307
|
+
case ts9__default.default.SyntaxKind.MethodDeclaration:
|
|
1308
|
+
case ts9__default.default.SyntaxKind.MethodSignature:
|
|
1309
|
+
case ts9__default.default.SyntaxKind.ModuleDeclaration:
|
|
1310
|
+
case ts9__default.default.SyntaxKind.NamedTupleMember:
|
|
1311
|
+
case ts9__default.default.SyntaxKind.NamespaceExport:
|
|
1312
|
+
case ts9__default.default.SyntaxKind.NamespaceExportDeclaration:
|
|
1313
|
+
case ts9__default.default.SyntaxKind.NamespaceImport:
|
|
1314
|
+
case ts9__default.default.SyntaxKind.PropertySignature:
|
|
1315
|
+
case ts9__default.default.SyntaxKind.SetAccessor:
|
|
1316
|
+
case ts9__default.default.SyntaxKind.TypeAliasDeclaration:
|
|
1317
|
+
case ts9__default.default.SyntaxKind.TypeParameter:
|
|
1318
|
+
case ts9__default.default.SyntaxKind.TypePredicate:
|
|
1319
|
+
break;
|
|
1320
|
+
case ts9__default.default.SyntaxKind.EnumMember:
|
|
1321
|
+
case ts9__default.default.SyntaxKind.ImportEqualsDeclaration:
|
|
1322
|
+
case ts9__default.default.SyntaxKind.Parameter:
|
|
1323
|
+
case ts9__default.default.SyntaxKind.PropertyAccessExpression:
|
|
1324
|
+
case ts9__default.default.SyntaxKind.PropertyAssignment:
|
|
1325
|
+
case ts9__default.default.SyntaxKind.PropertyDeclaration:
|
|
1326
|
+
case ts9__default.default.SyntaxKind.VariableDeclaration:
|
|
1327
|
+
if (parent.name !== node) {
|
|
1328
|
+
return 5 /* ValueOrNamespace */;
|
|
1329
|
+
}
|
|
1330
|
+
break;
|
|
1331
|
+
case ts9__default.default.SyntaxKind.ExportAssignment:
|
|
1332
|
+
return 7 /* Any */;
|
|
1333
|
+
case ts9__default.default.SyntaxKind.ExportSpecifier:
|
|
1334
|
+
if (parent.propertyName === void 0 || parent.propertyName === node) {
|
|
1335
|
+
return 7 /* Any */;
|
|
1336
|
+
}
|
|
1337
|
+
break;
|
|
1338
|
+
case ts9__default.default.SyntaxKind.ExpressionWithTypeArguments:
|
|
1339
|
+
return parent.parent.token === ts9__default.default.SyntaxKind.ImplementsKeyword || parent.parent.parent.kind === ts9__default.default.SyntaxKind.InterfaceDeclaration ? 2 /* Type */ : 4 /* Value */;
|
|
1340
|
+
case ts9__default.default.SyntaxKind.QualifiedName:
|
|
1341
|
+
if (parent.left === node) {
|
|
1342
|
+
if (getEntityNameParent(parent).kind === ts9__default.default.SyntaxKind.TypeQuery) {
|
|
1343
|
+
return 1 /* Namespace */ | 8 /* TypeQuery */;
|
|
1344
|
+
}
|
|
1345
|
+
return 1 /* Namespace */;
|
|
1346
|
+
}
|
|
1347
|
+
break;
|
|
1348
|
+
case ts9__default.default.SyntaxKind.TypeQuery:
|
|
1349
|
+
return 5 /* ValueOrNamespace */ | 8 /* TypeQuery */;
|
|
1350
|
+
case ts9__default.default.SyntaxKind.TypeReference:
|
|
1351
|
+
return identifierToKeywordKind(node) !== ts9__default.default.SyntaxKind.ConstKeyword ? 2 /* Type */ : void 0;
|
|
1352
|
+
default:
|
|
1353
|
+
return 5 /* ValueOrNamespace */;
|
|
1354
|
+
}
|
|
1355
|
+
}
|
|
1356
|
+
function getEntityNameParent(name) {
|
|
1357
|
+
let parent = name.parent;
|
|
1358
|
+
while (parent.kind === ts9__default.default.SyntaxKind.QualifiedName) {
|
|
1359
|
+
parent = parent.parent;
|
|
1360
|
+
}
|
|
1361
|
+
return parent;
|
|
1362
|
+
}
|
|
1363
|
+
function isBlockScopeBoundary(node) {
|
|
1364
|
+
switch (node.kind) {
|
|
1365
|
+
case ts9__default.default.SyntaxKind.Block: {
|
|
1366
|
+
const parent = node.parent;
|
|
1367
|
+
return parent.kind !== ts9__default.default.SyntaxKind.CatchClause && // blocks inside SourceFile are block scope boundaries
|
|
1368
|
+
(parent.kind === ts9__default.default.SyntaxKind.SourceFile || // blocks that are direct children of a function scope boundary are no scope boundary
|
|
1369
|
+
// for example the FunctionBlock is part of the function scope of the containing function
|
|
1370
|
+
!isFunctionScopeBoundary(parent)) ? 2 /* Block */ : 0 /* None */;
|
|
1371
|
+
}
|
|
1372
|
+
case ts9__default.default.SyntaxKind.CaseBlock:
|
|
1373
|
+
case ts9__default.default.SyntaxKind.CatchClause:
|
|
1374
|
+
case ts9__default.default.SyntaxKind.ForInStatement:
|
|
1375
|
+
case ts9__default.default.SyntaxKind.ForOfStatement:
|
|
1376
|
+
case ts9__default.default.SyntaxKind.ForStatement:
|
|
1377
|
+
case ts9__default.default.SyntaxKind.WithStatement:
|
|
1378
|
+
return 2 /* Block */;
|
|
1379
|
+
default:
|
|
1380
|
+
return 0 /* None */;
|
|
1381
|
+
}
|
|
1382
|
+
}
|
|
1383
|
+
|
|
1384
|
+
// src/usage/scopes.ts
|
|
1385
|
+
var AbstractScope = class {
|
|
1386
|
+
constructor(global) {
|
|
1387
|
+
this.global = global;
|
|
1388
|
+
}
|
|
1389
|
+
namespaceScopes = void 0;
|
|
1390
|
+
uses = [];
|
|
1391
|
+
variables = /* @__PURE__ */ new Map();
|
|
1392
|
+
#enumScopes = void 0;
|
|
1393
|
+
addUse(use) {
|
|
1394
|
+
this.uses.push(use);
|
|
1395
|
+
}
|
|
1396
|
+
addVariable(identifier, name, selector, exported, domain) {
|
|
1397
|
+
const variables = this.getDestinationScope(selector).getVariables();
|
|
1398
|
+
const declaration = {
|
|
1399
|
+
declaration: name,
|
|
1400
|
+
domain,
|
|
1401
|
+
exported
|
|
1402
|
+
};
|
|
1403
|
+
const variable = variables.get(identifier);
|
|
1404
|
+
if (variable === void 0) {
|
|
1405
|
+
variables.set(identifier, {
|
|
1406
|
+
declarations: [declaration],
|
|
1407
|
+
domain,
|
|
1408
|
+
uses: []
|
|
1409
|
+
});
|
|
1410
|
+
} else {
|
|
1411
|
+
variable.domain |= domain;
|
|
1412
|
+
variable.declarations.push(declaration);
|
|
1413
|
+
}
|
|
1414
|
+
}
|
|
1415
|
+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
1416
|
+
createOrReuseEnumScope(name, _exported) {
|
|
1417
|
+
let scope;
|
|
1418
|
+
if (this.#enumScopes === void 0) {
|
|
1419
|
+
this.#enumScopes = /* @__PURE__ */ new Map();
|
|
1420
|
+
} else {
|
|
1421
|
+
scope = this.#enumScopes.get(name);
|
|
1422
|
+
}
|
|
1423
|
+
if (scope === void 0) {
|
|
1424
|
+
scope = new EnumScope(this);
|
|
1425
|
+
this.#enumScopes.set(name, scope);
|
|
1426
|
+
}
|
|
1427
|
+
return scope;
|
|
1428
|
+
}
|
|
1429
|
+
// only relevant for the root scope
|
|
1430
|
+
createOrReuseNamespaceScope(name, _exported, ambient, hasExportStatement) {
|
|
1431
|
+
let scope;
|
|
1432
|
+
if (this.namespaceScopes === void 0) {
|
|
1433
|
+
this.namespaceScopes = /* @__PURE__ */ new Map();
|
|
1434
|
+
} else {
|
|
1435
|
+
scope = this.namespaceScopes.get(name);
|
|
1436
|
+
}
|
|
1437
|
+
if (scope === void 0) {
|
|
1438
|
+
scope = new NamespaceScope(ambient, hasExportStatement, this);
|
|
1439
|
+
this.namespaceScopes.set(name, scope);
|
|
1440
|
+
} else {
|
|
1441
|
+
scope.refresh(ambient, hasExportStatement);
|
|
1442
|
+
}
|
|
1443
|
+
return scope;
|
|
1444
|
+
}
|
|
1445
|
+
end(cb) {
|
|
1446
|
+
if (this.namespaceScopes !== void 0) {
|
|
1447
|
+
this.namespaceScopes.forEach((value) => value.finish(cb));
|
|
1448
|
+
}
|
|
1449
|
+
this.namespaceScopes = this.#enumScopes = void 0;
|
|
1450
|
+
this.applyUses();
|
|
1451
|
+
this.variables.forEach((variable) => {
|
|
1452
|
+
for (const declaration of variable.declarations) {
|
|
1453
|
+
const result = {
|
|
1454
|
+
declarations: [],
|
|
1455
|
+
domain: declaration.domain,
|
|
1456
|
+
exported: declaration.exported,
|
|
1457
|
+
inGlobalScope: this.global,
|
|
1458
|
+
uses: []
|
|
1459
|
+
};
|
|
1460
|
+
for (const other of variable.declarations) {
|
|
1461
|
+
if (other.domain & declaration.domain) {
|
|
1462
|
+
result.declarations.push(other.declaration);
|
|
1463
|
+
}
|
|
1464
|
+
}
|
|
1465
|
+
for (const use of variable.uses) {
|
|
1466
|
+
if (use.domain & declaration.domain) {
|
|
1467
|
+
result.uses.push(use);
|
|
1468
|
+
}
|
|
1469
|
+
}
|
|
1470
|
+
cb(result, declaration.declaration, this);
|
|
1471
|
+
}
|
|
1472
|
+
});
|
|
1473
|
+
}
|
|
1474
|
+
getFunctionScope() {
|
|
1475
|
+
return this;
|
|
1476
|
+
}
|
|
1477
|
+
getVariables() {
|
|
1478
|
+
return this.variables;
|
|
1479
|
+
}
|
|
1480
|
+
// eslint-disable-next-line @typescript-eslint/no-empty-function, @typescript-eslint/no-unused-vars
|
|
1481
|
+
markExported(_name) {
|
|
1482
|
+
}
|
|
1483
|
+
// eslint-disable-next-line @typescript-eslint/no-empty-function, @typescript-eslint/no-unused-vars
|
|
1484
|
+
addUseToParent(_use) {
|
|
1485
|
+
}
|
|
1486
|
+
applyUse(use, variables = this.variables) {
|
|
1487
|
+
const variable = variables.get(use.location.text);
|
|
1488
|
+
if (variable === void 0 || (variable.domain & use.domain) === 0) {
|
|
1489
|
+
return false;
|
|
1490
|
+
}
|
|
1491
|
+
variable.uses.push(use);
|
|
1492
|
+
return true;
|
|
1493
|
+
}
|
|
1494
|
+
applyUses() {
|
|
1495
|
+
for (const use of this.uses) {
|
|
1496
|
+
if (!this.applyUse(use)) {
|
|
1497
|
+
this.addUseToParent(use);
|
|
1498
|
+
}
|
|
1499
|
+
}
|
|
1500
|
+
this.uses = [];
|
|
1501
|
+
}
|
|
1502
|
+
};
|
|
1503
|
+
var NonRootScope = class extends AbstractScope {
|
|
1504
|
+
constructor(parent, boundary) {
|
|
1505
|
+
super(false);
|
|
1506
|
+
this.parent = parent;
|
|
1507
|
+
this.boundary = boundary;
|
|
1508
|
+
}
|
|
1509
|
+
getDestinationScope(selector) {
|
|
1510
|
+
return this.boundary & selector ? this : this.parent.getDestinationScope(selector);
|
|
1511
|
+
}
|
|
1512
|
+
addUseToParent(use) {
|
|
1513
|
+
return this.parent.addUse(use, this);
|
|
1514
|
+
}
|
|
1515
|
+
};
|
|
1516
|
+
var AbstractNamedExpressionScope = class extends NonRootScope {
|
|
1517
|
+
#domain;
|
|
1518
|
+
#name;
|
|
1519
|
+
constructor(name, domain, parent) {
|
|
1520
|
+
super(parent, 1 /* Function */);
|
|
1521
|
+
this.#name = name;
|
|
1522
|
+
this.#domain = domain;
|
|
1523
|
+
}
|
|
1524
|
+
addUse(use, source) {
|
|
1525
|
+
if (source !== this.innerScope) {
|
|
1526
|
+
return this.innerScope.addUse(use);
|
|
1527
|
+
}
|
|
1528
|
+
if (use.domain & this.#domain && use.location.text === this.#name.text) {
|
|
1529
|
+
this.uses.push(use);
|
|
1530
|
+
} else {
|
|
1531
|
+
return this.parent.addUse(use, this);
|
|
1532
|
+
}
|
|
1533
|
+
}
|
|
1534
|
+
end(cb) {
|
|
1535
|
+
this.innerScope.end(cb);
|
|
1536
|
+
return cb(
|
|
1537
|
+
{
|
|
1538
|
+
declarations: [this.#name],
|
|
1539
|
+
domain: this.#domain,
|
|
1540
|
+
exported: false,
|
|
1541
|
+
inGlobalScope: false,
|
|
1542
|
+
uses: this.uses
|
|
1543
|
+
},
|
|
1544
|
+
this.#name,
|
|
1545
|
+
this
|
|
1546
|
+
);
|
|
1547
|
+
}
|
|
1548
|
+
getDestinationScope() {
|
|
1549
|
+
return this.innerScope;
|
|
1550
|
+
}
|
|
1551
|
+
getFunctionScope() {
|
|
1552
|
+
return this.innerScope;
|
|
1553
|
+
}
|
|
1554
|
+
};
|
|
1555
|
+
var BlockScope = class extends NonRootScope {
|
|
1556
|
+
#functionScope;
|
|
1557
|
+
constructor(functionScope, parent) {
|
|
1558
|
+
super(parent, 2 /* Block */);
|
|
1559
|
+
this.#functionScope = functionScope;
|
|
1560
|
+
}
|
|
1561
|
+
getFunctionScope() {
|
|
1562
|
+
return this.#functionScope;
|
|
1563
|
+
}
|
|
1564
|
+
};
|
|
1565
|
+
var ClassExpressionScope = class extends AbstractNamedExpressionScope {
|
|
1566
|
+
innerScope = new NonRootScope(this, 1 /* Function */);
|
|
1567
|
+
constructor(name, parent) {
|
|
1568
|
+
super(name, 4 /* Value */ | 2 /* Type */, parent);
|
|
1569
|
+
}
|
|
1570
|
+
};
|
|
1571
|
+
var ConditionalTypeScope = class extends NonRootScope {
|
|
1572
|
+
#state = 0 /* Initial */;
|
|
1573
|
+
constructor(parent) {
|
|
1574
|
+
super(parent, 8 /* ConditionalType */);
|
|
1575
|
+
}
|
|
1576
|
+
addUse(use) {
|
|
1577
|
+
if (this.#state === 2 /* TrueType */) {
|
|
1578
|
+
return void this.uses.push(use);
|
|
1579
|
+
}
|
|
1580
|
+
return this.parent.addUse(use, this);
|
|
1581
|
+
}
|
|
1582
|
+
updateState(newState) {
|
|
1583
|
+
this.#state = newState;
|
|
1584
|
+
}
|
|
1585
|
+
};
|
|
1586
|
+
var EnumScope = class extends NonRootScope {
|
|
1587
|
+
constructor(parent) {
|
|
1588
|
+
super(parent, 1 /* Function */);
|
|
1589
|
+
}
|
|
1590
|
+
end() {
|
|
1591
|
+
this.applyUses();
|
|
1592
|
+
}
|
|
1593
|
+
};
|
|
1594
|
+
var FunctionScope = class extends NonRootScope {
|
|
1595
|
+
constructor(parent) {
|
|
1596
|
+
super(parent, 1 /* Function */);
|
|
1597
|
+
}
|
|
1598
|
+
beginBody() {
|
|
1599
|
+
this.applyUses();
|
|
1600
|
+
}
|
|
1601
|
+
};
|
|
1602
|
+
var FunctionExpressionScope = class extends AbstractNamedExpressionScope {
|
|
1603
|
+
innerScope = new FunctionScope(this);
|
|
1604
|
+
constructor(name, parent) {
|
|
1605
|
+
super(name, 4 /* Value */, parent);
|
|
1606
|
+
}
|
|
1607
|
+
beginBody() {
|
|
1608
|
+
return this.innerScope.beginBody();
|
|
1609
|
+
}
|
|
1610
|
+
};
|
|
1611
|
+
var NamespaceScope = class extends NonRootScope {
|
|
1612
|
+
#ambient;
|
|
1613
|
+
#exports = void 0;
|
|
1614
|
+
#hasExport;
|
|
1615
|
+
#innerScope = new NonRootScope(this, 1 /* Function */);
|
|
1616
|
+
constructor(ambient, hasExport, parent) {
|
|
1617
|
+
super(parent, 1 /* Function */);
|
|
1618
|
+
this.#ambient = ambient;
|
|
1619
|
+
this.#hasExport = hasExport;
|
|
1620
|
+
}
|
|
1621
|
+
addUse(use, source) {
|
|
1622
|
+
if (source !== this.#innerScope) {
|
|
1623
|
+
return this.#innerScope.addUse(use);
|
|
1624
|
+
}
|
|
1625
|
+
this.uses.push(use);
|
|
1626
|
+
}
|
|
1627
|
+
createOrReuseEnumScope(name, exported) {
|
|
1628
|
+
if (!exported && (!this.#ambient || this.#hasExport)) {
|
|
1629
|
+
return this.#innerScope.createOrReuseEnumScope(name, exported);
|
|
1630
|
+
}
|
|
1631
|
+
return super.createOrReuseEnumScope(name, exported);
|
|
1632
|
+
}
|
|
1633
|
+
createOrReuseNamespaceScope(name, exported, ambient, hasExportStatement) {
|
|
1634
|
+
if (!exported && (!this.#ambient || this.#hasExport)) {
|
|
1635
|
+
return this.#innerScope.createOrReuseNamespaceScope(
|
|
1636
|
+
name,
|
|
1637
|
+
exported,
|
|
1638
|
+
ambient || this.#ambient,
|
|
1639
|
+
hasExportStatement
|
|
1640
|
+
);
|
|
1641
|
+
}
|
|
1642
|
+
return super.createOrReuseNamespaceScope(
|
|
1643
|
+
name,
|
|
1644
|
+
exported,
|
|
1645
|
+
ambient || this.#ambient,
|
|
1646
|
+
hasExportStatement
|
|
1647
|
+
);
|
|
1648
|
+
}
|
|
1649
|
+
end(cb) {
|
|
1650
|
+
this.#innerScope.end((variable, key, scope) => {
|
|
1651
|
+
if (scope !== this.#innerScope || !variable.exported && (!this.#ambient || this.#exports !== void 0 && !this.#exports.has(key.text))) {
|
|
1652
|
+
return cb(variable, key, scope);
|
|
1653
|
+
}
|
|
1654
|
+
const namespaceVar = this.variables.get(key.text);
|
|
1655
|
+
if (namespaceVar === void 0) {
|
|
1656
|
+
this.variables.set(key.text, {
|
|
1657
|
+
declarations: variable.declarations.map(mapDeclaration),
|
|
1658
|
+
domain: variable.domain,
|
|
1659
|
+
uses: [...variable.uses]
|
|
1660
|
+
});
|
|
1661
|
+
} else {
|
|
1662
|
+
outer: for (const declaration of variable.declarations) {
|
|
1663
|
+
for (const existing of namespaceVar.declarations) {
|
|
1664
|
+
if (existing.declaration === declaration) {
|
|
1665
|
+
continue outer;
|
|
1666
|
+
}
|
|
1667
|
+
namespaceVar.declarations.push(mapDeclaration(declaration));
|
|
1668
|
+
}
|
|
1669
|
+
}
|
|
1670
|
+
namespaceVar.domain |= variable.domain;
|
|
1671
|
+
for (const use of variable.uses) {
|
|
1672
|
+
if (namespaceVar.uses.includes(use)) {
|
|
1673
|
+
continue;
|
|
1674
|
+
}
|
|
1675
|
+
namespaceVar.uses.push(use);
|
|
1676
|
+
}
|
|
1677
|
+
}
|
|
1678
|
+
});
|
|
1679
|
+
this.applyUses();
|
|
1680
|
+
this.#innerScope = new NonRootScope(this, 1 /* Function */);
|
|
1681
|
+
}
|
|
1682
|
+
finish(cb) {
|
|
1683
|
+
return super.end(cb);
|
|
1684
|
+
}
|
|
1685
|
+
getDestinationScope() {
|
|
1686
|
+
return this.#innerScope;
|
|
1687
|
+
}
|
|
1688
|
+
markExported(name) {
|
|
1689
|
+
if (this.#exports === void 0) {
|
|
1690
|
+
this.#exports = /* @__PURE__ */ new Set();
|
|
1691
|
+
}
|
|
1692
|
+
this.#exports.add(name.text);
|
|
1693
|
+
}
|
|
1694
|
+
refresh(ambient, hasExport) {
|
|
1695
|
+
this.#ambient = ambient;
|
|
1696
|
+
this.#hasExport = hasExport;
|
|
1697
|
+
}
|
|
1698
|
+
};
|
|
1699
|
+
var RootScope = class extends AbstractScope {
|
|
1700
|
+
#exportAll;
|
|
1701
|
+
#exports = void 0;
|
|
1702
|
+
#innerScope = new NonRootScope(this, 1 /* Function */);
|
|
1703
|
+
constructor(exportAll, global) {
|
|
1704
|
+
super(global);
|
|
1705
|
+
this.#exportAll = exportAll;
|
|
1706
|
+
}
|
|
1707
|
+
addUse(use, origin) {
|
|
1708
|
+
if (origin === this.#innerScope) {
|
|
1709
|
+
return super.addUse(use);
|
|
1710
|
+
}
|
|
1711
|
+
return this.#innerScope.addUse(use);
|
|
1712
|
+
}
|
|
1713
|
+
addVariable(identifier, name, selector, exported, domain) {
|
|
1714
|
+
if (domain & 8 /* Import */) {
|
|
1715
|
+
return super.addVariable(identifier, name, selector, exported, domain);
|
|
1716
|
+
}
|
|
1717
|
+
return this.#innerScope.addVariable(
|
|
1718
|
+
identifier,
|
|
1719
|
+
name,
|
|
1720
|
+
selector,
|
|
1721
|
+
exported,
|
|
1722
|
+
domain
|
|
1723
|
+
);
|
|
1724
|
+
}
|
|
1725
|
+
end(cb) {
|
|
1726
|
+
this.#innerScope.end((value, key) => {
|
|
1727
|
+
value.exported ||= this.#exportAll || this.#exports !== void 0 && this.#exports.includes(key.text);
|
|
1728
|
+
value.inGlobalScope = this.global;
|
|
1729
|
+
return cb(value, key, this);
|
|
1730
|
+
});
|
|
1731
|
+
return super.end((value, key, scope) => {
|
|
1732
|
+
value.exported ||= scope === this && this.#exports !== void 0 && this.#exports.includes(key.text);
|
|
1733
|
+
return cb(value, key, scope);
|
|
1734
|
+
});
|
|
1735
|
+
}
|
|
1736
|
+
getDestinationScope() {
|
|
1737
|
+
return this;
|
|
1738
|
+
}
|
|
1739
|
+
markExported(id) {
|
|
1740
|
+
if (this.#exports === void 0) {
|
|
1741
|
+
this.#exports = [id.text];
|
|
1742
|
+
} else {
|
|
1743
|
+
this.#exports.push(id.text);
|
|
1744
|
+
}
|
|
1745
|
+
}
|
|
1746
|
+
};
|
|
1747
|
+
function mapDeclaration(declaration) {
|
|
1748
|
+
return {
|
|
1749
|
+
declaration,
|
|
1750
|
+
domain: getDeclarationDomain(declaration),
|
|
1751
|
+
exported: true
|
|
1752
|
+
};
|
|
1753
|
+
}
|
|
1754
|
+
|
|
1755
|
+
// src/usage/UsageWalker.ts
|
|
1756
|
+
var UsageWalker = class {
|
|
1757
|
+
#result = /* @__PURE__ */ new Map();
|
|
1758
|
+
#scope;
|
|
1759
|
+
getUsage(sourceFile) {
|
|
1760
|
+
const variableCallback = (variable, key) => {
|
|
1761
|
+
this.#result.set(key, variable);
|
|
1762
|
+
};
|
|
1763
|
+
const isModule = ts9__default.default.isExternalModule(sourceFile);
|
|
1764
|
+
this.#scope = new RootScope(
|
|
1765
|
+
sourceFile.isDeclarationFile && isModule && !containsExportStatement(sourceFile),
|
|
1766
|
+
!isModule
|
|
1767
|
+
);
|
|
1768
|
+
const cb = (node) => {
|
|
1769
|
+
if (isBlockScopeBoundary(node)) {
|
|
1770
|
+
return continueWithScope(
|
|
1771
|
+
node,
|
|
1772
|
+
new BlockScope(this.#scope.getFunctionScope(), this.#scope),
|
|
1773
|
+
handleBlockScope
|
|
1774
|
+
);
|
|
1775
|
+
}
|
|
1776
|
+
switch (node.kind) {
|
|
1777
|
+
case ts9__default.default.SyntaxKind.ArrowFunction:
|
|
1778
|
+
case ts9__default.default.SyntaxKind.CallSignature:
|
|
1779
|
+
case ts9__default.default.SyntaxKind.Constructor:
|
|
1780
|
+
case ts9__default.default.SyntaxKind.ConstructorType:
|
|
1781
|
+
case ts9__default.default.SyntaxKind.ConstructSignature:
|
|
1782
|
+
case ts9__default.default.SyntaxKind.FunctionDeclaration:
|
|
1783
|
+
case ts9__default.default.SyntaxKind.FunctionExpression:
|
|
1784
|
+
case ts9__default.default.SyntaxKind.FunctionType:
|
|
1785
|
+
case ts9__default.default.SyntaxKind.GetAccessor:
|
|
1786
|
+
case ts9__default.default.SyntaxKind.MethodDeclaration:
|
|
1787
|
+
case ts9__default.default.SyntaxKind.MethodSignature:
|
|
1788
|
+
case ts9__default.default.SyntaxKind.SetAccessor:
|
|
1789
|
+
return this.#handleFunctionLikeDeclaration(
|
|
1790
|
+
node,
|
|
1791
|
+
cb,
|
|
1792
|
+
variableCallback
|
|
1793
|
+
);
|
|
1794
|
+
case ts9__default.default.SyntaxKind.ClassDeclaration:
|
|
1795
|
+
this.#handleDeclaration(
|
|
1796
|
+
node,
|
|
1797
|
+
true,
|
|
1798
|
+
4 /* Value */ | 2 /* Type */
|
|
1799
|
+
);
|
|
1800
|
+
return continueWithScope(
|
|
1801
|
+
node,
|
|
1802
|
+
new NonRootScope(this.#scope, 1 /* Function */)
|
|
1803
|
+
);
|
|
1804
|
+
case ts9__default.default.SyntaxKind.ClassExpression:
|
|
1805
|
+
return continueWithScope(
|
|
1806
|
+
node,
|
|
1807
|
+
node.name !== void 0 ? new ClassExpressionScope(
|
|
1808
|
+
node.name,
|
|
1809
|
+
this.#scope
|
|
1810
|
+
) : new NonRootScope(this.#scope, 1 /* Function */)
|
|
1811
|
+
);
|
|
1812
|
+
case ts9__default.default.SyntaxKind.ConditionalType:
|
|
1813
|
+
return this.#handleConditionalType(
|
|
1814
|
+
node,
|
|
1815
|
+
cb,
|
|
1816
|
+
variableCallback
|
|
1817
|
+
);
|
|
1818
|
+
case ts9__default.default.SyntaxKind.EnumDeclaration:
|
|
1819
|
+
this.#handleDeclaration(
|
|
1820
|
+
node,
|
|
1821
|
+
true,
|
|
1822
|
+
7 /* Any */
|
|
1823
|
+
);
|
|
1824
|
+
return continueWithScope(
|
|
1825
|
+
node,
|
|
1826
|
+
this.#scope.createOrReuseEnumScope(
|
|
1827
|
+
node.name.text,
|
|
1828
|
+
includesModifier(
|
|
1829
|
+
node.modifiers,
|
|
1830
|
+
ts9__default.default.SyntaxKind.ExportKeyword
|
|
1831
|
+
)
|
|
1832
|
+
)
|
|
1833
|
+
);
|
|
1834
|
+
case ts9__default.default.SyntaxKind.EnumMember:
|
|
1835
|
+
this.#scope.addVariable(
|
|
1836
|
+
getPropertyName(node.name),
|
|
1837
|
+
node.name,
|
|
1838
|
+
1 /* Function */,
|
|
1839
|
+
true,
|
|
1840
|
+
4 /* Value */
|
|
1841
|
+
);
|
|
1842
|
+
break;
|
|
1843
|
+
case ts9__default.default.SyntaxKind.ExportAssignment:
|
|
1844
|
+
if (node.expression.kind === ts9__default.default.SyntaxKind.Identifier) {
|
|
1845
|
+
return this.#scope.markExported(
|
|
1846
|
+
node.expression
|
|
1847
|
+
);
|
|
1848
|
+
}
|
|
1849
|
+
break;
|
|
1850
|
+
case ts9__default.default.SyntaxKind.ExportSpecifier:
|
|
1851
|
+
if (node.propertyName !== void 0) {
|
|
1852
|
+
return this.#scope.markExported(
|
|
1853
|
+
node.propertyName,
|
|
1854
|
+
node.name
|
|
1855
|
+
);
|
|
1856
|
+
}
|
|
1857
|
+
return this.#scope.markExported(node.name);
|
|
1858
|
+
case ts9__default.default.SyntaxKind.Identifier: {
|
|
1859
|
+
const domain = getUsageDomain(node);
|
|
1860
|
+
if (domain !== void 0) {
|
|
1861
|
+
this.#scope.addUse({ domain, location: node });
|
|
1862
|
+
}
|
|
1863
|
+
return;
|
|
1864
|
+
}
|
|
1865
|
+
case ts9__default.default.SyntaxKind.ImportClause:
|
|
1866
|
+
case ts9__default.default.SyntaxKind.ImportEqualsDeclaration:
|
|
1867
|
+
case ts9__default.default.SyntaxKind.ImportSpecifier:
|
|
1868
|
+
case ts9__default.default.SyntaxKind.NamespaceImport:
|
|
1869
|
+
this.#handleDeclaration(
|
|
1870
|
+
node,
|
|
1871
|
+
false,
|
|
1872
|
+
7 /* Any */ | 8 /* Import */
|
|
1873
|
+
);
|
|
1874
|
+
break;
|
|
1875
|
+
case ts9__default.default.SyntaxKind.InterfaceDeclaration:
|
|
1876
|
+
case ts9__default.default.SyntaxKind.TypeAliasDeclaration:
|
|
1877
|
+
this.#handleDeclaration(
|
|
1878
|
+
node,
|
|
1879
|
+
true,
|
|
1880
|
+
2 /* Type */
|
|
1881
|
+
);
|
|
1882
|
+
return continueWithScope(
|
|
1883
|
+
node,
|
|
1884
|
+
new NonRootScope(this.#scope, 4 /* Type */)
|
|
1885
|
+
);
|
|
1886
|
+
case ts9__default.default.SyntaxKind.MappedType:
|
|
1887
|
+
return continueWithScope(
|
|
1888
|
+
node,
|
|
1889
|
+
new NonRootScope(this.#scope, 4 /* Type */)
|
|
1890
|
+
);
|
|
1891
|
+
case ts9__default.default.SyntaxKind.ModuleDeclaration:
|
|
1892
|
+
return this.#handleModule(
|
|
1893
|
+
node,
|
|
1894
|
+
continueWithScope
|
|
1895
|
+
);
|
|
1896
|
+
case ts9__default.default.SyntaxKind.Parameter:
|
|
1897
|
+
if (node.parent.kind !== ts9__default.default.SyntaxKind.IndexSignature && (node.name.kind !== ts9__default.default.SyntaxKind.Identifier || identifierToKeywordKind(
|
|
1898
|
+
node.name
|
|
1899
|
+
) !== ts9__default.default.SyntaxKind.ThisKeyword)) {
|
|
1900
|
+
this.#handleBindingName(
|
|
1901
|
+
node.name,
|
|
1902
|
+
false,
|
|
1903
|
+
false
|
|
1904
|
+
);
|
|
1905
|
+
}
|
|
1906
|
+
break;
|
|
1907
|
+
case ts9__default.default.SyntaxKind.TypeParameter:
|
|
1908
|
+
this.#scope.addVariable(
|
|
1909
|
+
node.name.text,
|
|
1910
|
+
node.name,
|
|
1911
|
+
node.parent.kind === ts9__default.default.SyntaxKind.InferType ? 8 /* InferType */ : 7 /* Type */,
|
|
1912
|
+
false,
|
|
1913
|
+
2 /* Type */
|
|
1914
|
+
);
|
|
1915
|
+
break;
|
|
1916
|
+
// End of Scope specific handling
|
|
1917
|
+
case ts9__default.default.SyntaxKind.VariableDeclarationList:
|
|
1918
|
+
this.#handleVariableDeclaration(node);
|
|
1919
|
+
break;
|
|
1920
|
+
}
|
|
1921
|
+
return ts9__default.default.forEachChild(node, cb);
|
|
1922
|
+
};
|
|
1923
|
+
const continueWithScope = (node, scope, next = forEachChild) => {
|
|
1924
|
+
const savedScope = this.#scope;
|
|
1925
|
+
this.#scope = scope;
|
|
1926
|
+
next(node);
|
|
1927
|
+
this.#scope.end(variableCallback);
|
|
1928
|
+
this.#scope = savedScope;
|
|
1929
|
+
};
|
|
1930
|
+
const handleBlockScope = (node) => {
|
|
1931
|
+
if (node.kind === ts9__default.default.SyntaxKind.CatchClause && node.variableDeclaration !== void 0) {
|
|
1932
|
+
this.#handleBindingName(
|
|
1933
|
+
node.variableDeclaration.name,
|
|
1934
|
+
true,
|
|
1935
|
+
false
|
|
1936
|
+
);
|
|
1937
|
+
}
|
|
1938
|
+
return ts9__default.default.forEachChild(node, cb);
|
|
1939
|
+
};
|
|
1940
|
+
ts9__default.default.forEachChild(sourceFile, cb);
|
|
1941
|
+
this.#scope.end(variableCallback);
|
|
1942
|
+
return this.#result;
|
|
1943
|
+
function forEachChild(node) {
|
|
1944
|
+
return ts9__default.default.forEachChild(node, cb);
|
|
1945
|
+
}
|
|
1946
|
+
}
|
|
1947
|
+
#handleBindingName(name, blockScoped, exported) {
|
|
1948
|
+
if (name.kind === ts9__default.default.SyntaxKind.Identifier) {
|
|
1949
|
+
return this.#scope.addVariable(
|
|
1950
|
+
name.text,
|
|
1951
|
+
name,
|
|
1952
|
+
blockScoped ? 3 /* Block */ : 1 /* Function */,
|
|
1953
|
+
exported,
|
|
1954
|
+
4 /* Value */
|
|
1955
|
+
);
|
|
1956
|
+
}
|
|
1957
|
+
forEachDestructuringIdentifier(name, (declaration) => {
|
|
1958
|
+
this.#scope.addVariable(
|
|
1959
|
+
declaration.name.text,
|
|
1960
|
+
declaration.name,
|
|
1961
|
+
blockScoped ? 3 /* Block */ : 1 /* Function */,
|
|
1962
|
+
exported,
|
|
1963
|
+
4 /* Value */
|
|
1964
|
+
);
|
|
1965
|
+
});
|
|
1966
|
+
}
|
|
1967
|
+
#handleConditionalType(node, cb, varCb) {
|
|
1968
|
+
const savedScope = this.#scope;
|
|
1969
|
+
const scope = this.#scope = new ConditionalTypeScope(savedScope);
|
|
1970
|
+
cb(node.checkType);
|
|
1971
|
+
scope.updateState(1 /* Extends */);
|
|
1972
|
+
cb(node.extendsType);
|
|
1973
|
+
scope.updateState(2 /* TrueType */);
|
|
1974
|
+
cb(node.trueType);
|
|
1975
|
+
scope.updateState(3 /* FalseType */);
|
|
1976
|
+
cb(node.falseType);
|
|
1977
|
+
scope.end(varCb);
|
|
1978
|
+
this.#scope = savedScope;
|
|
1979
|
+
}
|
|
1980
|
+
#handleDeclaration(node, blockScoped, domain) {
|
|
1981
|
+
if (node.name !== void 0) {
|
|
1982
|
+
this.#scope.addVariable(
|
|
1983
|
+
node.name.text,
|
|
1984
|
+
node.name,
|
|
1985
|
+
blockScoped ? 3 /* Block */ : 1 /* Function */,
|
|
1986
|
+
includesModifier(
|
|
1987
|
+
node.modifiers,
|
|
1988
|
+
ts9__default.default.SyntaxKind.ExportKeyword
|
|
1989
|
+
),
|
|
1990
|
+
domain
|
|
1991
|
+
);
|
|
1992
|
+
}
|
|
1993
|
+
}
|
|
1994
|
+
#handleFunctionLikeDeclaration(node, cb, varCb) {
|
|
1995
|
+
if (ts9__default.default.canHaveDecorators(node)) {
|
|
1996
|
+
ts9__default.default.getDecorators(node)?.forEach(cb);
|
|
1997
|
+
}
|
|
1998
|
+
const savedScope = this.#scope;
|
|
1999
|
+
if (node.kind === ts9__default.default.SyntaxKind.FunctionDeclaration) {
|
|
2000
|
+
this.#handleDeclaration(node, false, 4 /* Value */);
|
|
2001
|
+
}
|
|
2002
|
+
const scope = this.#scope = node.kind === ts9__default.default.SyntaxKind.FunctionExpression && node.name !== void 0 ? new FunctionExpressionScope(node.name, savedScope) : new FunctionScope(savedScope);
|
|
2003
|
+
if (node.name !== void 0) {
|
|
2004
|
+
cb(node.name);
|
|
2005
|
+
}
|
|
2006
|
+
if (node.typeParameters !== void 0) {
|
|
2007
|
+
node.typeParameters.forEach(cb);
|
|
2008
|
+
}
|
|
2009
|
+
node.parameters.forEach(cb);
|
|
2010
|
+
if (node.type !== void 0) {
|
|
2011
|
+
cb(node.type);
|
|
2012
|
+
}
|
|
2013
|
+
if (node.body !== void 0) {
|
|
2014
|
+
scope.beginBody();
|
|
2015
|
+
cb(node.body);
|
|
2016
|
+
}
|
|
2017
|
+
scope.end(varCb);
|
|
2018
|
+
this.#scope = savedScope;
|
|
2019
|
+
}
|
|
2020
|
+
#handleModule(node, next) {
|
|
2021
|
+
if (node.flags & ts9__default.default.NodeFlags.GlobalAugmentation) {
|
|
2022
|
+
return next(
|
|
2023
|
+
node,
|
|
2024
|
+
this.#scope.createOrReuseNamespaceScope("-global", false, true, false)
|
|
2025
|
+
);
|
|
2026
|
+
}
|
|
2027
|
+
if (node.name.kind === ts9__default.default.SyntaxKind.Identifier) {
|
|
2028
|
+
const exported = isNamespaceExported(node);
|
|
2029
|
+
this.#scope.addVariable(
|
|
2030
|
+
node.name.text,
|
|
2031
|
+
node.name,
|
|
2032
|
+
1 /* Function */,
|
|
2033
|
+
exported,
|
|
2034
|
+
1 /* Namespace */ | 4 /* Value */
|
|
2035
|
+
);
|
|
2036
|
+
const ambient = includesModifier(
|
|
2037
|
+
node.modifiers,
|
|
2038
|
+
ts9__default.default.SyntaxKind.DeclareKeyword
|
|
2039
|
+
);
|
|
2040
|
+
return next(
|
|
2041
|
+
node,
|
|
2042
|
+
this.#scope.createOrReuseNamespaceScope(
|
|
2043
|
+
node.name.text,
|
|
2044
|
+
exported,
|
|
2045
|
+
ambient,
|
|
2046
|
+
ambient && namespaceHasExportStatement(node)
|
|
2047
|
+
)
|
|
2048
|
+
);
|
|
2049
|
+
}
|
|
2050
|
+
return next(
|
|
2051
|
+
node,
|
|
2052
|
+
this.#scope.createOrReuseNamespaceScope(
|
|
2053
|
+
`"${node.name.text}"`,
|
|
2054
|
+
false,
|
|
2055
|
+
true,
|
|
2056
|
+
namespaceHasExportStatement(node)
|
|
2057
|
+
)
|
|
2058
|
+
);
|
|
2059
|
+
}
|
|
2060
|
+
#handleVariableDeclaration(declarationList) {
|
|
2061
|
+
const blockScoped = isBlockScopedVariableDeclarationList(declarationList);
|
|
2062
|
+
const exported = declarationList.parent.kind === ts9__default.default.SyntaxKind.VariableStatement && includesModifier(
|
|
2063
|
+
declarationList.parent.modifiers,
|
|
2064
|
+
ts9__default.default.SyntaxKind.ExportKeyword
|
|
2065
|
+
);
|
|
2066
|
+
for (const declaration of declarationList.declarations) {
|
|
2067
|
+
this.#handleBindingName(declaration.name, blockScoped, exported);
|
|
2068
|
+
}
|
|
2069
|
+
}
|
|
2070
|
+
};
|
|
2071
|
+
function containsExportStatement(block) {
|
|
2072
|
+
for (const statement of block.statements) {
|
|
2073
|
+
if (statement.kind === ts9__default.default.SyntaxKind.ExportDeclaration || statement.kind === ts9__default.default.SyntaxKind.ExportAssignment) {
|
|
2074
|
+
return true;
|
|
2075
|
+
}
|
|
2076
|
+
}
|
|
2077
|
+
return false;
|
|
2078
|
+
}
|
|
2079
|
+
function forEachDestructuringIdentifier(pattern, fn) {
|
|
2080
|
+
for (const element of pattern.elements) {
|
|
2081
|
+
if (element.kind !== ts9__default.default.SyntaxKind.BindingElement) {
|
|
2082
|
+
continue;
|
|
2083
|
+
}
|
|
2084
|
+
let result;
|
|
2085
|
+
if (element.name.kind === ts9__default.default.SyntaxKind.Identifier) {
|
|
2086
|
+
result = fn(element);
|
|
2087
|
+
} else {
|
|
2088
|
+
result = forEachDestructuringIdentifier(element.name, fn);
|
|
2089
|
+
}
|
|
2090
|
+
if (result) {
|
|
2091
|
+
return result;
|
|
2092
|
+
}
|
|
2093
|
+
}
|
|
2094
|
+
}
|
|
2095
|
+
function isBlockScopedVariableDeclarationList(declarationList) {
|
|
2096
|
+
return (declarationList.flags & ts9__default.default.NodeFlags.BlockScoped) !== 0;
|
|
2097
|
+
}
|
|
2098
|
+
function isNamespaceExported(node) {
|
|
2099
|
+
return node.parent.kind === ts9__default.default.SyntaxKind.ModuleDeclaration || includesModifier(node.modifiers, ts9__default.default.SyntaxKind.ExportKeyword);
|
|
2100
|
+
}
|
|
2101
|
+
function namespaceHasExportStatement(ns) {
|
|
2102
|
+
if (ns.body?.kind !== ts9__default.default.SyntaxKind.ModuleBlock) {
|
|
2103
|
+
return false;
|
|
2104
|
+
}
|
|
2105
|
+
return containsExportStatement(ns.body);
|
|
2106
|
+
}
|
|
2107
|
+
|
|
2108
|
+
// src/usage/collectVariableUsage.ts
|
|
2109
|
+
function collectVariableUsage(sourceFile) {
|
|
2110
|
+
return new UsageWalker().getUsage(sourceFile);
|
|
2111
|
+
}
|
|
2112
|
+
|
|
2113
|
+
exports.AccessKind = AccessKind;
|
|
2114
|
+
exports.DeclarationDomain = DeclarationDomain;
|
|
2115
|
+
exports.UsageDomain = UsageDomain;
|
|
2116
|
+
exports.collectVariableUsage = collectVariableUsage;
|
|
2117
|
+
exports.forEachComment = forEachComment;
|
|
2118
|
+
exports.forEachToken = forEachToken;
|
|
2119
|
+
exports.getAccessKind = getAccessKind;
|
|
2120
|
+
exports.getCallSignaturesOfType = getCallSignaturesOfType;
|
|
2121
|
+
exports.getPropertyOfType = getPropertyOfType;
|
|
2122
|
+
exports.getWellKnownSymbolPropertyOfType = getWellKnownSymbolPropertyOfType;
|
|
2123
|
+
exports.hasDecorators = hasDecorators;
|
|
2124
|
+
exports.hasExpressionInitializer = hasExpressionInitializer;
|
|
2125
|
+
exports.hasInitializer = hasInitializer;
|
|
2126
|
+
exports.hasJSDoc = hasJSDoc;
|
|
2127
|
+
exports.hasModifiers = hasModifiers;
|
|
2128
|
+
exports.hasType = hasType;
|
|
2129
|
+
exports.hasTypeArguments = hasTypeArguments;
|
|
2130
|
+
exports.includesModifier = includesModifier;
|
|
2131
|
+
exports.intersectionConstituents = intersectionConstituents;
|
|
2132
|
+
exports.intersectionTypeParts = intersectionTypeParts;
|
|
2133
|
+
exports.isAbstractKeyword = isAbstractKeyword;
|
|
2134
|
+
exports.isAccessExpression = isAccessExpression;
|
|
2135
|
+
exports.isAccessibilityModifier = isAccessibilityModifier;
|
|
2136
|
+
exports.isAccessorDeclaration = isAccessorDeclaration;
|
|
2137
|
+
exports.isAccessorKeyword = isAccessorKeyword;
|
|
2138
|
+
exports.isAnyKeyword = isAnyKeyword;
|
|
2139
|
+
exports.isArrayBindingElement = isArrayBindingElement;
|
|
2140
|
+
exports.isArrayBindingOrAssignmentPattern = isArrayBindingOrAssignmentPattern;
|
|
2141
|
+
exports.isAssertKeyword = isAssertKeyword;
|
|
2142
|
+
exports.isAssertsKeyword = isAssertsKeyword;
|
|
2143
|
+
exports.isAssignmentKind = isAssignmentKind;
|
|
2144
|
+
exports.isAssignmentPattern = isAssignmentPattern;
|
|
2145
|
+
exports.isAsyncKeyword = isAsyncKeyword;
|
|
2146
|
+
exports.isAwaitKeyword = isAwaitKeyword;
|
|
2147
|
+
exports.isBigIntKeyword = isBigIntKeyword;
|
|
2148
|
+
exports.isBigIntLiteralType = isBigIntLiteralType;
|
|
2149
|
+
exports.isBindingOrAssignmentElementRestIndicator = isBindingOrAssignmentElementRestIndicator;
|
|
2150
|
+
exports.isBindingOrAssignmentElementTarget = isBindingOrAssignmentElementTarget;
|
|
2151
|
+
exports.isBindingOrAssignmentPattern = isBindingOrAssignmentPattern;
|
|
2152
|
+
exports.isBindingPattern = isBindingPattern;
|
|
2153
|
+
exports.isBlockLike = isBlockLike;
|
|
2154
|
+
exports.isBooleanKeyword = isBooleanKeyword;
|
|
2155
|
+
exports.isBooleanLiteral = isBooleanLiteral;
|
|
2156
|
+
exports.isBooleanLiteralType = isBooleanLiteralType;
|
|
2157
|
+
exports.isClassLikeDeclaration = isClassLikeDeclaration;
|
|
2158
|
+
exports.isClassMemberModifier = isClassMemberModifier;
|
|
2159
|
+
exports.isColonToken = isColonToken;
|
|
2160
|
+
exports.isCompilerOptionEnabled = isCompilerOptionEnabled;
|
|
2161
|
+
exports.isConditionalType = isConditionalType;
|
|
2162
|
+
exports.isConstAssertionExpression = isConstAssertionExpression;
|
|
2163
|
+
exports.isConstKeyword = isConstKeyword;
|
|
2164
|
+
exports.isDeclarationName = isDeclarationName;
|
|
2165
|
+
exports.isDeclarationWithTypeParameterChildren = isDeclarationWithTypeParameterChildren;
|
|
2166
|
+
exports.isDeclarationWithTypeParameters = isDeclarationWithTypeParameters;
|
|
2167
|
+
exports.isDeclareKeyword = isDeclareKeyword;
|
|
2168
|
+
exports.isDefaultKeyword = isDefaultKeyword;
|
|
2169
|
+
exports.isDestructuringPattern = isDestructuringPattern;
|
|
2170
|
+
exports.isDotToken = isDotToken;
|
|
2171
|
+
exports.isEndOfFileToken = isEndOfFileToken;
|
|
2172
|
+
exports.isEntityNameExpression = isEntityNameExpression;
|
|
2173
|
+
exports.isEntityNameOrEntityNameExpression = isEntityNameOrEntityNameExpression;
|
|
2174
|
+
exports.isEnumType = isEnumType;
|
|
2175
|
+
exports.isEqualsGreaterThanToken = isEqualsGreaterThanToken;
|
|
2176
|
+
exports.isEqualsToken = isEqualsToken;
|
|
2177
|
+
exports.isEvolvingArrayType = isEvolvingArrayType;
|
|
2178
|
+
exports.isExclamationToken = isExclamationToken;
|
|
2179
|
+
exports.isExportKeyword = isExportKeyword;
|
|
2180
|
+
exports.isFalseKeyword = isFalseKeyword;
|
|
2181
|
+
exports.isFalseLiteral = isFalseLiteral;
|
|
2182
|
+
exports.isFalseLiteralType = isFalseLiteralType;
|
|
2183
|
+
exports.isFalsyType = isFalsyType;
|
|
2184
|
+
exports.isForInOrOfStatement = isForInOrOfStatement;
|
|
2185
|
+
exports.isFreshableIntrinsicType = isFreshableIntrinsicType;
|
|
2186
|
+
exports.isFreshableType = isFreshableType;
|
|
2187
|
+
exports.isFunctionLikeDeclaration = isFunctionLikeDeclaration;
|
|
2188
|
+
exports.isFunctionScopeBoundary = isFunctionScopeBoundary;
|
|
2189
|
+
exports.isImportExpression = isImportExpression;
|
|
2190
|
+
exports.isImportKeyword = isImportKeyword;
|
|
2191
|
+
exports.isInKeyword = isInKeyword;
|
|
2192
|
+
exports.isIndexType = isIndexType;
|
|
2193
|
+
exports.isIndexedAccessType = isIndexedAccessType;
|
|
2194
|
+
exports.isInstantiableType = isInstantiableType;
|
|
2195
|
+
exports.isIntersectionType = isIntersectionType;
|
|
2196
|
+
exports.isIntrinsicAnyType = isIntrinsicAnyType;
|
|
2197
|
+
exports.isIntrinsicBigIntType = isIntrinsicBigIntType;
|
|
2198
|
+
exports.isIntrinsicBooleanType = isIntrinsicBooleanType;
|
|
2199
|
+
exports.isIntrinsicESSymbolType = isIntrinsicESSymbolType;
|
|
2200
|
+
exports.isIntrinsicErrorType = isIntrinsicErrorType;
|
|
2201
|
+
exports.isIntrinsicNeverType = isIntrinsicNeverType;
|
|
2202
|
+
exports.isIntrinsicNonPrimitiveType = isIntrinsicNonPrimitiveType;
|
|
2203
|
+
exports.isIntrinsicNullType = isIntrinsicNullType;
|
|
2204
|
+
exports.isIntrinsicNumberType = isIntrinsicNumberType;
|
|
2205
|
+
exports.isIntrinsicStringType = isIntrinsicStringType;
|
|
2206
|
+
exports.isIntrinsicType = isIntrinsicType;
|
|
2207
|
+
exports.isIntrinsicUndefinedType = isIntrinsicUndefinedType;
|
|
2208
|
+
exports.isIntrinsicUnknownType = isIntrinsicUnknownType;
|
|
2209
|
+
exports.isIntrinsicVoidType = isIntrinsicVoidType;
|
|
2210
|
+
exports.isIterationStatement = isIterationStatement;
|
|
2211
|
+
exports.isJSDocComment = isJSDocComment;
|
|
2212
|
+
exports.isJSDocNamespaceBody = isJSDocNamespaceBody;
|
|
2213
|
+
exports.isJSDocNamespaceDeclaration = isJSDocNamespaceDeclaration;
|
|
2214
|
+
exports.isJSDocText = isJSDocText;
|
|
2215
|
+
exports.isJSDocTypeReferencingNode = isJSDocTypeReferencingNode;
|
|
2216
|
+
exports.isJsonMinusNumericLiteral = isJsonMinusNumericLiteral;
|
|
2217
|
+
exports.isJsonObjectExpression = isJsonObjectExpression;
|
|
2218
|
+
exports.isJsxAttributeLike = isJsxAttributeLike;
|
|
2219
|
+
exports.isJsxAttributeValue = isJsxAttributeValue;
|
|
2220
|
+
exports.isJsxChild = isJsxChild;
|
|
2221
|
+
exports.isJsxTagNameExpression = isJsxTagNameExpression;
|
|
2222
|
+
exports.isJsxTagNamePropertyAccess = isJsxTagNamePropertyAccess;
|
|
2223
|
+
exports.isLiteralToken = isLiteralToken;
|
|
2224
|
+
exports.isLiteralType = isLiteralType;
|
|
2225
|
+
exports.isModifierFlagSet = isModifierFlagSet;
|
|
2226
|
+
exports.isModuleBody = isModuleBody;
|
|
2227
|
+
exports.isModuleName = isModuleName;
|
|
2228
|
+
exports.isModuleReference = isModuleReference;
|
|
2229
|
+
exports.isNamedDeclarationWithName = isNamedDeclarationWithName;
|
|
2230
|
+
exports.isNamedImportBindings = isNamedImportBindings;
|
|
2231
|
+
exports.isNamedImportsOrExports = isNamedImportsOrExports;
|
|
2232
|
+
exports.isNamespaceBody = isNamespaceBody;
|
|
2233
|
+
exports.isNamespaceDeclaration = isNamespaceDeclaration;
|
|
2234
|
+
exports.isNeverKeyword = isNeverKeyword;
|
|
2235
|
+
exports.isNodeFlagSet = isNodeFlagSet;
|
|
2236
|
+
exports.isNullKeyword = isNullKeyword;
|
|
2237
|
+
exports.isNullLiteral = isNullLiteral;
|
|
2238
|
+
exports.isNumberKeyword = isNumberKeyword;
|
|
2239
|
+
exports.isNumberLiteralType = isNumberLiteralType;
|
|
2240
|
+
exports.isNumericOrStringLikeLiteral = isNumericOrStringLikeLiteral;
|
|
2241
|
+
exports.isNumericPropertyName = isNumericPropertyName;
|
|
2242
|
+
exports.isObjectBindingOrAssignmentElement = isObjectBindingOrAssignmentElement;
|
|
2243
|
+
exports.isObjectBindingOrAssignmentPattern = isObjectBindingOrAssignmentPattern;
|
|
2244
|
+
exports.isObjectFlagSet = isObjectFlagSet;
|
|
2245
|
+
exports.isObjectKeyword = isObjectKeyword;
|
|
2246
|
+
exports.isObjectType = isObjectType;
|
|
2247
|
+
exports.isObjectTypeDeclaration = isObjectTypeDeclaration;
|
|
2248
|
+
exports.isOutKeyword = isOutKeyword;
|
|
2249
|
+
exports.isOverrideKeyword = isOverrideKeyword;
|
|
2250
|
+
exports.isParameterPropertyModifier = isParameterPropertyModifier;
|
|
2251
|
+
exports.isPrivateKeyword = isPrivateKeyword;
|
|
2252
|
+
exports.isPropertyAccessEntityNameExpression = isPropertyAccessEntityNameExpression;
|
|
2253
|
+
exports.isPropertyNameLiteral = isPropertyNameLiteral;
|
|
2254
|
+
exports.isPropertyReadonlyInType = isPropertyReadonlyInType;
|
|
2255
|
+
exports.isProtectedKeyword = isProtectedKeyword;
|
|
2256
|
+
exports.isPseudoLiteralToken = isPseudoLiteralToken;
|
|
2257
|
+
exports.isPublicKeyword = isPublicKeyword;
|
|
2258
|
+
exports.isQuestionDotToken = isQuestionDotToken;
|
|
2259
|
+
exports.isQuestionToken = isQuestionToken;
|
|
2260
|
+
exports.isReadonlyKeyword = isReadonlyKeyword;
|
|
2261
|
+
exports.isSignatureDeclaration = isSignatureDeclaration;
|
|
2262
|
+
exports.isStaticKeyword = isStaticKeyword;
|
|
2263
|
+
exports.isStrictCompilerOptionEnabled = isStrictCompilerOptionEnabled;
|
|
2264
|
+
exports.isStringKeyword = isStringKeyword;
|
|
2265
|
+
exports.isStringLiteralType = isStringLiteralType;
|
|
2266
|
+
exports.isStringMappingType = isStringMappingType;
|
|
2267
|
+
exports.isSubstitutionType = isSubstitutionType;
|
|
2268
|
+
exports.isSuperElementAccessExpression = isSuperElementAccessExpression;
|
|
2269
|
+
exports.isSuperExpression = isSuperExpression;
|
|
2270
|
+
exports.isSuperKeyword = isSuperKeyword;
|
|
2271
|
+
exports.isSuperProperty = isSuperProperty;
|
|
2272
|
+
exports.isSuperPropertyAccessExpression = isSuperPropertyAccessExpression;
|
|
2273
|
+
exports.isSymbolFlagSet = isSymbolFlagSet;
|
|
2274
|
+
exports.isSymbolKeyword = isSymbolKeyword;
|
|
2275
|
+
exports.isSyntaxList = isSyntaxList;
|
|
2276
|
+
exports.isTemplateLiteralType = isTemplateLiteralType;
|
|
2277
|
+
exports.isThenableType = isThenableType;
|
|
2278
|
+
exports.isThisExpression = isThisExpression;
|
|
2279
|
+
exports.isThisKeyword = isThisKeyword;
|
|
2280
|
+
exports.isTransientSymbolLinksFlagSet = isTransientSymbolLinksFlagSet;
|
|
2281
|
+
exports.isTrueKeyword = isTrueKeyword;
|
|
2282
|
+
exports.isTrueLiteral = isTrueLiteral;
|
|
2283
|
+
exports.isTrueLiteralType = isTrueLiteralType;
|
|
2284
|
+
exports.isTupleType = isTupleType;
|
|
2285
|
+
exports.isTupleTypeReference = isTupleTypeReference;
|
|
2286
|
+
exports.isTypeFlagSet = isTypeFlagSet;
|
|
2287
|
+
exports.isTypeOnlyCompatibleAliasDeclaration = isTypeOnlyCompatibleAliasDeclaration;
|
|
2288
|
+
exports.isTypeParameter = isTypeParameter;
|
|
2289
|
+
exports.isTypeReference = isTypeReference;
|
|
2290
|
+
exports.isTypeReferenceType = isTypeReferenceType;
|
|
2291
|
+
exports.isTypeVariable = isTypeVariable;
|
|
2292
|
+
exports.isUndefinedKeyword = isUndefinedKeyword;
|
|
2293
|
+
exports.isUnionOrIntersectionType = isUnionOrIntersectionType;
|
|
2294
|
+
exports.isUnionOrIntersectionTypeNode = isUnionOrIntersectionTypeNode;
|
|
2295
|
+
exports.isUnionType = isUnionType;
|
|
2296
|
+
exports.isUniqueESSymbolType = isUniqueESSymbolType;
|
|
2297
|
+
exports.isUnknownKeyword = isUnknownKeyword;
|
|
2298
|
+
exports.isValidPropertyAccess = isValidPropertyAccess;
|
|
2299
|
+
exports.isVariableLikeDeclaration = isVariableLikeDeclaration;
|
|
2300
|
+
exports.isVoidKeyword = isVoidKeyword;
|
|
2301
|
+
exports.iterateComments = iterateComments;
|
|
2302
|
+
exports.iterateTokens = iterateTokens;
|
|
2303
|
+
exports.symbolHasReadonlyDeclaration = symbolHasReadonlyDeclaration;
|
|
2304
|
+
exports.typeConstituents = typeConstituents;
|
|
2305
|
+
exports.typeIsLiteral = typeIsLiteral;
|
|
2306
|
+
exports.typeParts = typeParts;
|
|
2307
|
+
exports.unionConstituents = unionConstituents;
|
|
2308
|
+
exports.unionTypeParts = unionTypeParts;
|