diff --git a/package.json b/package.json index 6fa913446..80a32e53c 100644 --- a/package.json +++ b/package.json @@ -39,7 +39,7 @@ "prettier-plugin-package": "^1.3.0", "semver": "^7.3.2", "source-map-support": "^0.5.19", - "ts-node": "10.1.0", + "ts-node": "10.8.1", "tsconfig-paths": "^3.9.0", "typescript": "4.3.5", "write-pkg": "^4.0.0", diff --git a/packages/typescript/package.json b/packages/typescript/package.json index d3a0c2bce..82bf11d46 100644 --- a/packages/typescript/package.json +++ b/packages/typescript/package.json @@ -65,7 +65,7 @@ "@types/node": "^10.0.0", "buble": "^0.20.0", "rollup": "^2.67.3", - "typescript": "^4.2.2" + "typescript": "^4.7.3" }, "types": "types/index.d.ts" } diff --git a/packages/typescript/src/index.ts b/packages/typescript/src/index.ts index f3b263435..18963a878 100644 --- a/packages/typescript/src/index.ts +++ b/packages/typescript/src/index.ts @@ -36,7 +36,7 @@ export default function typescript(options: RollupTypescriptOptions = {}): Plugi const watchProgramHelper = new WatchProgramHelper(); const parsedOptions = parseTypescriptConfig(ts, tsconfig, compilerOptions, noForceEmit); - const filter = createFilter(include || ['*.ts+(|x)', '**/*.ts+(|x)'], exclude, { + const filter = createFilter(include || '{,**/}*.(cts|mts|ts|tsx)', exclude, { resolve: filterRoot ?? parsedOptions.options.rootDir }); parsedOptions.fileNames = parsedOptions.fileNames.filter(filter); @@ -107,10 +107,24 @@ export default function typescript(options: RollupTypescriptOptions = {}): Plugi // Convert path from windows separators to posix separators const containingFile = normalizePath(importer); - const resolved = resolveModule(importee, containingFile); + // when using node16 or nodenext module resolution, we need to tell ts if + // we are resolving to a commonjs or esnext module + const mode = + typeof ts.getImpliedNodeFormatForFile === 'function' + ? ts.getImpliedNodeFormatForFile( + // @ts-expect-error + containingFile, + undefined, // eslint-disable-line no-undefined + { ...ts.sys, ...formatHost }, + parsedOptions.options + ) + : undefined; // eslint-disable-line no-undefined + + // eslint-disable-next-line no-undefined + const resolved = resolveModule(importee, containingFile, undefined, mode); if (resolved) { - if (resolved.extension === '.d.ts') return null; + if (/\.d\.[cm]?ts/.test(resolved.extension)) return null; return path.normalize(resolved.resolvedFileName); } diff --git a/packages/typescript/src/moduleResolution.ts b/packages/typescript/src/moduleResolution.ts index 4228a0c80..aa1b59447 100644 --- a/packages/typescript/src/moduleResolution.ts +++ b/packages/typescript/src/moduleResolution.ts @@ -1,4 +1,9 @@ -import type { ModuleResolutionHost, ResolvedModuleFull } from 'typescript'; +import { + ModuleResolutionHost, + ResolvedModuleFull, + ResolvedProjectReference, + ModuleKind +} from 'typescript'; import { DiagnosticsHost } from './diagnostics/host'; @@ -6,7 +11,9 @@ type ModuleResolverHost = Partial & DiagnosticsHost; export type Resolver = ( moduleName: string, - containingFile: string + containingFile: string, + redirectedReference?: ResolvedProjectReference | undefined, + mode?: ModuleKind.ESNext | ModuleKind.CommonJS | undefined ) => ResolvedModuleFull | undefined; /** @@ -26,13 +33,15 @@ export default function createModuleResolver( ); const moduleHost = { ...ts.sys, ...host }; - return (moduleName, containingFile) => { - const resolved = ts.nodeModuleNameResolver( + return (moduleName, containingFile, redirectedReference, mode) => { + const resolved = ts.resolveModuleName( moduleName, containingFile, compilerOptions, moduleHost, - cache + cache, + redirectedReference, + mode ); return resolved.resolvedModule; }; diff --git a/packages/typescript/src/options/normalize.ts b/packages/typescript/src/options/normalize.ts index cac9faf12..4e919b666 100644 --- a/packages/typescript/src/options/normalize.ts +++ b/packages/typescript/src/options/normalize.ts @@ -47,6 +47,8 @@ export function normalizeCompilerOptions( switch (compilerOptions.module) { case ts.ModuleKind.ES2015: case ts.ModuleKind.ESNext: + case ts.ModuleKind.Node16: + case ts.ModuleKind.NodeNext: case ts.ModuleKind.CommonJS: // OK module type return autoSetSourceMap; @@ -57,7 +59,7 @@ export function normalizeCompilerOptions( // Invalid module type const moduleType = ts.ModuleKind[compilerOptions.module]; throw new Error( - `@rollup/plugin-typescript: The module kind should be 'ES2015' or 'ESNext, found: '${moduleType}'` + `@rollup/plugin-typescript: The module kind should be 'ES2015', 'ESNext', 'node16' or 'nodenext', found: '${moduleType}'` ); } default: diff --git a/packages/typescript/src/options/tsconfig.ts b/packages/typescript/src/options/tsconfig.ts index 52c85eceb..b56d87311 100644 --- a/packages/typescript/src/options/tsconfig.ts +++ b/packages/typescript/src/options/tsconfig.ts @@ -2,10 +2,12 @@ import { readFileSync } from 'fs'; import { dirname, resolve } from 'path'; import { PluginContext } from 'rollup'; -import type { +import { Diagnostic, ExtendedConfigCacheEntry, MapLike, + ModuleKind, + ModuleResolutionKind, ParsedCommandLine, ProjectReference, TypeAcquisition, @@ -99,6 +101,28 @@ function containsEnumOptions( return enums.some((prop) => prop in compilerOptions && typeof compilerOptions[prop] === 'number'); } +/** + * The module resolution kind is a function of the resolved `compilerOptions.module`. + * This needs to be set explicitly for `resolveModuleName` to select the correct resolution method + */ +function setModuleResolutionKind(parsedConfig: ParsedCommandLine): ParsedCommandLine { + const moduleKind = parsedConfig.options.module; + const moduleResolution = + moduleKind === ModuleKind.Node16 + ? ModuleResolutionKind.Node16 + : moduleKind === ModuleKind.NodeNext + ? ModuleResolutionKind.NodeNext + : ModuleResolutionKind.NodeJs; + + return { + ...parsedConfig, + options: { + ...parsedConfig.options, + moduleResolution + } + }; +} + const configCache = new Map() as import('typescript').Map; /** @@ -132,39 +156,43 @@ export function parseTypescriptConfig( // If compilerOptions has enums, it represents an CompilerOptions object instead of parsed JSON. // This determines where the data is passed to the parser. if (containsEnumOptions(compilerOptions)) { - parsedConfig = ts.parseJsonConfigFileContent( - { - ...tsConfigFile, - compilerOptions: { - ...DEFAULT_COMPILER_OPTIONS, - ...tsConfigFile.compilerOptions - } - }, - ts.sys, - basePath, - { ...compilerOptions, ...makeForcedCompilerOptions(noForceEmit) }, - tsConfigPath, - undefined, - undefined, - configCache + parsedConfig = setModuleResolutionKind( + ts.parseJsonConfigFileContent( + { + ...tsConfigFile, + compilerOptions: { + ...DEFAULT_COMPILER_OPTIONS, + ...tsConfigFile.compilerOptions + } + }, + ts.sys, + basePath, + { ...compilerOptions, ...makeForcedCompilerOptions(noForceEmit) }, + tsConfigPath, + undefined, + undefined, + configCache + ) ); } else { - parsedConfig = ts.parseJsonConfigFileContent( - { - ...tsConfigFile, - compilerOptions: { - ...DEFAULT_COMPILER_OPTIONS, - ...tsConfigFile.compilerOptions, - ...compilerOptions - } - }, - ts.sys, - basePath, - makeForcedCompilerOptions(noForceEmit), - tsConfigPath, - undefined, - undefined, - configCache + parsedConfig = setModuleResolutionKind( + ts.parseJsonConfigFileContent( + { + ...tsConfigFile, + compilerOptions: { + ...DEFAULT_COMPILER_OPTIONS, + ...tsConfigFile.compilerOptions, + ...compilerOptions + } + }, + ts.sys, + basePath, + makeForcedCompilerOptions(noForceEmit), + tsConfigPath, + undefined, + undefined, + configCache + ) ); } diff --git a/packages/typescript/src/preflight.ts b/packages/typescript/src/preflight.ts index 3b7e70e2d..595ad6789 100644 --- a/packages/typescript/src/preflight.ts +++ b/packages/typescript/src/preflight.ts @@ -20,7 +20,14 @@ ${pluginName}: Rollup requires that TypeScript produces ES Modules. Unfortunatel const tsLibErrorMessage = `${pluginName}: Could not find module 'tslib', which is required by this plugin. Is it installed?`; let undef; -const validModules = [ModuleKind.ES2015, ModuleKind.ES2020, ModuleKind.ESNext, undef]; +const validModules = [ + ModuleKind.ES2015, + ModuleKind.ES2020, + ModuleKind.ESNext, + ModuleKind.Node16, + ModuleKind.NodeNext, + undef +]; // eslint-disable-next-line import/prefer-default-export export const preflight = ({ config, context, rollupOptions, tslib }: PreflightOptions) => { diff --git a/packages/typescript/src/watchProgram.ts b/packages/typescript/src/watchProgram.ts index 2803d1b9e..9d49ffef4 100644 --- a/packages/typescript/src/watchProgram.ts +++ b/packages/typescript/src/watchProgram.ts @@ -54,7 +54,7 @@ function createDeferred(timeout?: number): Deferred { let resolve: DeferredResolve = () => {}; if (timeout) { - promise = Promise.race>([ + promise = Promise.race([ new Promise((r) => setTimeout(r, timeout, true)), new Promise((r) => (resolve = r)) ]); @@ -175,8 +175,21 @@ function createWatchHost( return baseHost.afterProgramCreate!(program); }, /** Add helper to deal with module resolution */ - resolveModuleNames(moduleNames, containingFile) { - return moduleNames.map((moduleName) => resolveModule(moduleName, containingFile)); + resolveModuleNames( + moduleNames, + containingFile, + _reusedNames, + redirectedReference, + _optionsOnlyWithNewerTsVersions, + containingSourceFile + ) { + return moduleNames.map((moduleName, i) => { + const mode = containingSourceFile + ? ts.getModeForResolutionAtIndex?.(containingSourceFile, i) + : undefined; // eslint-disable-line no-undefined + + return resolveModule(moduleName, containingFile, redirectedReference, mode); + }); } }; } diff --git a/packages/typescript/test/fixtures/incremental-single/tsconfig.tsbuildinfo b/packages/typescript/test/fixtures/incremental-single/tsconfig.tsbuildinfo index b2c1adba0..3d6174612 100644 --- a/packages/typescript/test/fixtures/incremental-single/tsconfig.tsbuildinfo +++ b/packages/typescript/test/fixtures/incremental-single/tsconfig.tsbuildinfo @@ -1,1708 +1 @@ -{ - "program": { - "fileInfos": { - "../../../../../node_modules/.pnpm/typescript@4.2.4/node_modules/typescript/lib/lib.d.ts": { - "version": "2dc8c927c9c162a773c6bb3cdc4f3286c23f10eedc67414028f9cb5951610f60", - "signature": "2dc8c927c9c162a773c6bb3cdc4f3286c23f10eedc67414028f9cb5951610f60", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/typescript@4.2.4/node_modules/typescript/lib/lib.es5.d.ts": { - "version": "b3584bc5798ed422ce2516df360ffa9cf2d80b5eae852867db9ba3743145f895", - "signature": "b3584bc5798ed422ce2516df360ffa9cf2d80b5eae852867db9ba3743145f895", - "affectsGlobalScope": true - }, - "../../../../../node_modules/.pnpm/typescript@4.2.4/node_modules/typescript/lib/lib.es2015.d.ts": { - "version": "dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6", - "signature": "dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/typescript@4.2.4/node_modules/typescript/lib/lib.es2016.d.ts": { - "version": "7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467", - "signature": "7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/typescript@4.2.4/node_modules/typescript/lib/lib.es2017.d.ts": { - "version": "8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9", - "signature": "8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/typescript@4.2.4/node_modules/typescript/lib/lib.es2018.d.ts": { - "version": "5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06", - "signature": "5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/typescript@4.2.4/node_modules/typescript/lib/lib.dom.d.ts": { - "version": "feeeb1dd8a80fb76be42b0426e8f3ffa9bdef3c2f3c12c147e7660b1c5ba8b3b", - "signature": "feeeb1dd8a80fb76be42b0426e8f3ffa9bdef3c2f3c12c147e7660b1c5ba8b3b", - "affectsGlobalScope": true - }, - "../../../../../node_modules/.pnpm/typescript@4.2.4/node_modules/typescript/lib/lib.webworker.importscripts.d.ts": { - "version": "7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481", - "signature": "7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481", - "affectsGlobalScope": true - }, - "../../../../../node_modules/.pnpm/typescript@4.2.4/node_modules/typescript/lib/lib.scripthost.d.ts": { - "version": "097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd", - "signature": "097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd", - "affectsGlobalScope": true - }, - "../../../../../node_modules/.pnpm/typescript@4.2.4/node_modules/typescript/lib/lib.es2015.core.d.ts": { - "version": "46ee15e9fefa913333b61eaf6b18885900b139867d89832a515059b62cf16a17", - "signature": "46ee15e9fefa913333b61eaf6b18885900b139867d89832a515059b62cf16a17", - "affectsGlobalScope": true - }, - "../../../../../node_modules/.pnpm/typescript@4.2.4/node_modules/typescript/lib/lib.es2015.collection.d.ts": { - "version": "43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c", - "signature": "43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c", - "affectsGlobalScope": true - }, - "../../../../../node_modules/.pnpm/typescript@4.2.4/node_modules/typescript/lib/lib.es2015.generator.d.ts": { - "version": "cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a", - "signature": "cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a", - "affectsGlobalScope": true - }, - "../../../../../node_modules/.pnpm/typescript@4.2.4/node_modules/typescript/lib/lib.es2015.iterable.d.ts": { - "version": "8b2a5df1ce95f78f6b74f1a555ccdb6baab0486b42d8345e0871dd82811f9b9a", - "signature": "8b2a5df1ce95f78f6b74f1a555ccdb6baab0486b42d8345e0871dd82811f9b9a", - "affectsGlobalScope": true - }, - "../../../../../node_modules/.pnpm/typescript@4.2.4/node_modules/typescript/lib/lib.es2015.promise.d.ts": { - "version": "2bb4b3927299434052b37851a47bf5c39764f2ba88a888a107b32262e9292b7c", - "signature": "2bb4b3927299434052b37851a47bf5c39764f2ba88a888a107b32262e9292b7c", - "affectsGlobalScope": true - }, - "../../../../../node_modules/.pnpm/typescript@4.2.4/node_modules/typescript/lib/lib.es2015.proxy.d.ts": { - "version": "810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357", - "signature": "810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357", - "affectsGlobalScope": true - }, - "../../../../../node_modules/.pnpm/typescript@4.2.4/node_modules/typescript/lib/lib.es2015.reflect.d.ts": { - "version": "62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6", - "signature": "62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6", - "affectsGlobalScope": true - }, - "../../../../../node_modules/.pnpm/typescript@4.2.4/node_modules/typescript/lib/lib.es2015.symbol.d.ts": { - "version": "3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93", - "signature": "3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93", - "affectsGlobalScope": true - }, - "../../../../../node_modules/.pnpm/typescript@4.2.4/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts": { - "version": "9d122b7e8c1a5c72506eea50c0973cba55b92b5532d5cafa8a6ce2c547d57551", - "signature": "9d122b7e8c1a5c72506eea50c0973cba55b92b5532d5cafa8a6ce2c547d57551", - "affectsGlobalScope": true - }, - "../../../../../node_modules/.pnpm/typescript@4.2.4/node_modules/typescript/lib/lib.es2016.array.include.d.ts": { - "version": "3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006", - "signature": "3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006", - "affectsGlobalScope": true - }, - "../../../../../node_modules/.pnpm/typescript@4.2.4/node_modules/typescript/lib/lib.es2017.object.d.ts": { - "version": "17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a", - "signature": "17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a", - "affectsGlobalScope": true - }, - "../../../../../node_modules/.pnpm/typescript@4.2.4/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts": { - "version": "7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98", - "signature": "7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98", - "affectsGlobalScope": true - }, - "../../../../../node_modules/.pnpm/typescript@4.2.4/node_modules/typescript/lib/lib.es2017.string.d.ts": { - "version": "6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577", - "signature": "6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577", - "affectsGlobalScope": true - }, - "../../../../../node_modules/.pnpm/typescript@4.2.4/node_modules/typescript/lib/lib.es2017.intl.d.ts": { - "version": "12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d", - "signature": "12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d", - "affectsGlobalScope": true - }, - "../../../../../node_modules/.pnpm/typescript@4.2.4/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts": { - "version": "b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e", - "signature": "b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e", - "affectsGlobalScope": true - }, - "../../../../../node_modules/.pnpm/typescript@4.2.4/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts": { - "version": "0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a", - "signature": "0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a", - "affectsGlobalScope": true - }, - "../../../../../node_modules/.pnpm/typescript@4.2.4/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts": { - "version": "a40c4d82bf13fcded295ac29f354eb7d40249613c15e07b53f2fc75e45e16359", - "signature": "a40c4d82bf13fcded295ac29f354eb7d40249613c15e07b53f2fc75e45e16359", - "affectsGlobalScope": true - }, - "../../../../../node_modules/.pnpm/typescript@4.2.4/node_modules/typescript/lib/lib.es2018.intl.d.ts": { - "version": "df9c8a72ca8b0ed62f5470b41208a0587f0f73f0a7db28e5a1272cf92537518e", - "signature": "df9c8a72ca8b0ed62f5470b41208a0587f0f73f0a7db28e5a1272cf92537518e", - "affectsGlobalScope": true - }, - "../../../../../node_modules/.pnpm/typescript@4.2.4/node_modules/typescript/lib/lib.es2018.promise.d.ts": { - "version": "bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c", - "signature": "bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c", - "affectsGlobalScope": true - }, - "../../../../../node_modules/.pnpm/typescript@4.2.4/node_modules/typescript/lib/lib.es2018.regexp.d.ts": { - "version": "c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8", - "signature": "c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8", - "affectsGlobalScope": true - }, - "../../../../../node_modules/.pnpm/typescript@4.2.4/node_modules/typescript/lib/lib.es2020.bigint.d.ts": { - "version": "7b5a10e3c897fabece5a51aa85b4111727d7adb53c2734b5d37230ff96802a09", - "signature": "7b5a10e3c897fabece5a51aa85b4111727d7adb53c2734b5d37230ff96802a09", - "affectsGlobalScope": true - }, - "../../../../../node_modules/.pnpm/typescript@4.2.4/node_modules/typescript/lib/lib.esnext.intl.d.ts": { - "version": "506b80b9951c9381dc5f11897b31fca5e2a65731d96ddefa19687fbc26b23c6e", - "signature": "506b80b9951c9381dc5f11897b31fca5e2a65731d96ddefa19687fbc26b23c6e", - "affectsGlobalScope": true - }, - "./main.ts": { - "version": "dc13372d005136feb44d8fa670d0a80d674b3964fe29dc30e693c9836c997006", - "signature": "dc33e9f2d2cd9904ae2c78a7a8f6f2534bb557fc7895afc1265ddbd79de1a330", - "affectsGlobalScope": true - }, - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/globals.d.ts": { - "version": "829fcfff513ac68aae602034a6e0d2e30a2f4fa32881157ba6a3002bc949f685", - "signature": "829fcfff513ac68aae602034a6e0d2e30a2f4fa32881157ba6a3002bc949f685", - "affectsGlobalScope": true - }, - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/async_hooks.d.ts": { - "version": "138476cfdccbb9e2c7e06602bc216af843a56c4f3469a79106bc660ba94bd66a", - "signature": "138476cfdccbb9e2c7e06602bc216af843a56c4f3469a79106bc660ba94bd66a", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/buffer.d.ts": { - "version": "fe892fea1e75a442fffb4a604d7eeb451e858787a9f2f01c4e83bf12a3b5048d", - "signature": "fe892fea1e75a442fffb4a604d7eeb451e858787a9f2f01c4e83bf12a3b5048d", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/child_process.d.ts": { - "version": "d5c80b931928fbd06f967ce4bdca24fbb37523773ac2c7c87458a689154351fb", - "signature": "d5c80b931928fbd06f967ce4bdca24fbb37523773ac2c7c87458a689154351fb", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/cluster.d.ts": { - "version": "fcd718b2feb2820a9844536a1a2fbc77a3da90820e02894d40f879a789f46560", - "signature": "fcd718b2feb2820a9844536a1a2fbc77a3da90820e02894d40f879a789f46560", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/console.d.ts": { - "version": "525c8fc510d9632d2a0a9de2d41c3ac1cdd79ff44d3b45c6d81cacabb683528d", - "signature": "525c8fc510d9632d2a0a9de2d41c3ac1cdd79ff44d3b45c6d81cacabb683528d", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/constants.d.ts": { - "version": "ece75b9bfc916f9ccc4e8a9ddee1dda5c987804fbe3b60a01fc120fae731c2ce", - "signature": "ece75b9bfc916f9ccc4e8a9ddee1dda5c987804fbe3b60a01fc120fae731c2ce", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/crypto.d.ts": { - "version": "ec0f794b64a4f5f5f364fe6e55b61fc13c827db39d97f5366890570eb9f4c238", - "signature": "ec0f794b64a4f5f5f364fe6e55b61fc13c827db39d97f5366890570eb9f4c238", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/dgram.d.ts": { - "version": "a1dc9cfe8be39cbcef62692510b450ab35553ef39382715c88763d0c477704a9", - "signature": "a1dc9cfe8be39cbcef62692510b450ab35553ef39382715c88763d0c477704a9", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/dns.d.ts": { - "version": "05e732266b5a36789fd9eb846b1f45fec1b6e318b740e3f20fc22fd95f9ebf31", - "signature": "05e732266b5a36789fd9eb846b1f45fec1b6e318b740e3f20fc22fd95f9ebf31", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/domain.d.ts": { - "version": "ae3487bdb9b50c1d8bbeb6b55c8b2b9aa79bbc46d7afbc3483169ad8750c4304", - "signature": "ae3487bdb9b50c1d8bbeb6b55c8b2b9aa79bbc46d7afbc3483169ad8750c4304", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/events.d.ts": { - "version": "c53b63229a0b7e9d64347c4fc975dd52a9e9a81f9be099f5a21220e2a1276d28", - "signature": "c53b63229a0b7e9d64347c4fc975dd52a9e9a81f9be099f5a21220e2a1276d28", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/fs.d.ts": { - "version": "1733741cf2adc5926ac58c66004268cdc3d34b2ff6250f5114db14253ea02ce1", - "signature": "1733741cf2adc5926ac58c66004268cdc3d34b2ff6250f5114db14253ea02ce1", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/http.d.ts": { - "version": "40a80f579e92750f3e695b44a704f8d44d331a67d77623f2e57914da1369d68e", - "signature": "40a80f579e92750f3e695b44a704f8d44d331a67d77623f2e57914da1369d68e", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/http2.d.ts": { - "version": "b6b09f944889a23f19eba6e0f112030e55160c5e1a225012ab2349c582ba5595", - "signature": "b6b09f944889a23f19eba6e0f112030e55160c5e1a225012ab2349c582ba5595", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/https.d.ts": { - "version": "152af7c23ec219f632afa2d861abc65993f56cd39a4f3a4018515dbc05950a74", - "signature": "152af7c23ec219f632afa2d861abc65993f56cd39a4f3a4018515dbc05950a74", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/inspector.d.ts": { - "version": "3a0bdc4c5b6f84a1abb5356d7a7fa1f96ac6c5b5646eec3ef2b33c1ed095e155", - "signature": "3a0bdc4c5b6f84a1abb5356d7a7fa1f96ac6c5b5646eec3ef2b33c1ed095e155", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/module.d.ts": { - "version": "03394bf8deb8781b490ae9266a843fbdf00647947d79e25fcbf1d89a9e9c8a66", - "signature": "03394bf8deb8781b490ae9266a843fbdf00647947d79e25fcbf1d89a9e9c8a66", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/net.d.ts": { - "version": "56a15cc211894d79aa44cbb46c276bfd3f10458a61bff2dec99114db8a7e71e3", - "signature": "56a15cc211894d79aa44cbb46c276bfd3f10458a61bff2dec99114db8a7e71e3", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/os.d.ts": { - "version": "1a5366b0d4d0153955fd85777c72d35979dabc0537649da6eade09007c0d080a", - "signature": "1a5366b0d4d0153955fd85777c72d35979dabc0537649da6eade09007c0d080a", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/path.d.ts": { - "version": "61c84c3b0eb6e60196d15ae5e21793a1d4241c547f0bdd0529ffae838d1a073c", - "signature": "61c84c3b0eb6e60196d15ae5e21793a1d4241c547f0bdd0529ffae838d1a073c", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/perf_hooks.d.ts": { - "version": "272522db288a7e03f14ff930407b776357082efce20369ea42239a57af9c7f81", - "signature": "272522db288a7e03f14ff930407b776357082efce20369ea42239a57af9c7f81", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/process.d.ts": { - "version": "3a8848a9c307429b861402cc69bc472ffe0c05b86474fc158723169161e16389", - "signature": "3a8848a9c307429b861402cc69bc472ffe0c05b86474fc158723169161e16389", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/punycode.d.ts": { - "version": "3f6a1fd73c9dc3bd7f4b79bc075297ca6527904df69b0f2c2c94e4c4c7d9a32c", - "signature": "3f6a1fd73c9dc3bd7f4b79bc075297ca6527904df69b0f2c2c94e4c4c7d9a32c", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/querystring.d.ts": { - "version": "8969e0b4d22ca77ad011c8fc4a25ec5d515bdfae4ecbd22608ed0d5c38829c1e", - "signature": "8969e0b4d22ca77ad011c8fc4a25ec5d515bdfae4ecbd22608ed0d5c38829c1e", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/readline.d.ts": { - "version": "81ef2751228318b1c7c6b35ccae2ea39ef275add30319e746bfd4658208a0519", - "signature": "81ef2751228318b1c7c6b35ccae2ea39ef275add30319e746bfd4658208a0519", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/repl.d.ts": { - "version": "0811662f95fabfc05b8f1cefcc46b351092cfc7d2a3e849475c51e2578c5c485", - "signature": "0811662f95fabfc05b8f1cefcc46b351092cfc7d2a3e849475c51e2578c5c485", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/stream.d.ts": { - "version": "0cc45ab68b66bc63c9a0bc4f097c9f5b734c62190695ebd5b696dc3a4e2ecb3b", - "signature": "0cc45ab68b66bc63c9a0bc4f097c9f5b734c62190695ebd5b696dc3a4e2ecb3b", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/string_decoder.d.ts": { - "version": "17e157df6125098a1a34eb4d201ee4ac03bbe97e471ab5627bb2c40fce555948", - "signature": "17e157df6125098a1a34eb4d201ee4ac03bbe97e471ab5627bb2c40fce555948", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/timers.d.ts": { - "version": "b40652bf8ce4a18133b31349086523b219724dca8df3448c1a0742528e7ad5b9", - "signature": "b40652bf8ce4a18133b31349086523b219724dca8df3448c1a0742528e7ad5b9", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/tls.d.ts": { - "version": "4bdb7b15b3f9a3ee0b856c7b991d0e522f8ce92f7b66ae8ac00e61d1269dd10a", - "signature": "4bdb7b15b3f9a3ee0b856c7b991d0e522f8ce92f7b66ae8ac00e61d1269dd10a", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/trace_events.d.ts": { - "version": "978aecd2e6bc2ac094e9a35eda98ff8586713857b3655e7c98ca5ed8f7d50662", - "signature": "978aecd2e6bc2ac094e9a35eda98ff8586713857b3655e7c98ca5ed8f7d50662", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/tty.d.ts": { - "version": "a185b8e0d7a4ae078a79339d63e98177813aac39256f69f788eaf5c360aa756f", - "signature": "a185b8e0d7a4ae078a79339d63e98177813aac39256f69f788eaf5c360aa756f", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/url.d.ts": { - "version": "c6b71a0585467900820167370738cfc256e9635471725a7ba1d24a3a262984e5", - "signature": "c6b71a0585467900820167370738cfc256e9635471725a7ba1d24a3a262984e5", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/util.d.ts": { - "version": "8bf10278b5c28698a73f800fde911bcc33d405a15f7bddab1c4ade637b69a822", - "signature": "8bf10278b5c28698a73f800fde911bcc33d405a15f7bddab1c4ade637b69a822", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/v8.d.ts": { - "version": "e880a08fbb0d9ee2f733f9183f4d1bdb75bc9e0e64060a8a1fc30540791fcded", - "signature": "e880a08fbb0d9ee2f733f9183f4d1bdb75bc9e0e64060a8a1fc30540791fcded", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/vm.d.ts": { - "version": "f1864a5689182a1f21b69642af5f6d78cbffc6315c3cfa3cc2874d15c762be9b", - "signature": "f1864a5689182a1f21b69642af5f6d78cbffc6315c3cfa3cc2874d15c762be9b", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/worker_threads.d.ts": { - "version": "69fc4a10650eff3416ba5c2f7ce71744734928a7135ebe5a63c61d2d03ca3ec3", - "signature": "69fc4a10650eff3416ba5c2f7ce71744734928a7135ebe5a63c61d2d03ca3ec3", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/zlib.d.ts": { - "version": "13918848c4e07d1094164112bd7fd151d61cbb949ceef340a2a4595cd609afb6", - "signature": "13918848c4e07d1094164112bd7fd151d61cbb949ceef340a2a4595cd609afb6", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/ts3.6/base.d.ts": { - "version": "9af6a9de7bd818e68c4236f20027ff4b19387c2269a6952945d1a716c177cc4d", - "signature": "9af6a9de7bd818e68c4236f20027ff4b19387c2269a6952945d1a716c177cc4d", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/assert.d.ts": { - "version": "3492a5620a0fbba5440a103853048035eb7949bbad4257341c188e74e82c3aa7", - "signature": "3492a5620a0fbba5440a103853048035eb7949bbad4257341c188e74e82c3aa7", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/base.d.ts": { - "version": "e61a21e9418f279bc480394a94d1581b2dee73747adcbdef999b6737e34d721b", - "signature": "e61a21e9418f279bc480394a94d1581b2dee73747adcbdef999b6737e34d721b", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/index.d.ts": { - "version": "99904fb1a722345db92cce12df63dd0037081a4e1201519398a88e587659544a", - "signature": "99904fb1a722345db92cce12df63dd0037081a4e1201519398a88e587659544a", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@babel+types@7.12.1/node_modules/@babel/types/lib/index.d.ts": { - "version": "3eb8ad25895d53cc6229dc83decbc338d649ed6f3d5b537c9966293b056b1f57", - "signature": "3eb8ad25895d53cc6229dc83decbc338d649ed6f3d5b537c9966293b056b1f57", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+babel__generator@7.6.2/node_modules/@types/babel__generator/index.d.ts": { - "version": "b25c5f2970d06c729f464c0aeaa64b1a5b5f1355aa93554bb5f9c199b8624b1e", - "signature": "b25c5f2970d06c729f464c0aeaa64b1a5b5f1355aa93554bb5f9c199b8624b1e", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+babel__traverse@7.0.15/node_modules/@types/babel__traverse/index.d.ts": { - "version": "ef91066d2057cca50511e3af2d4aa54e07913a15f9cee1748f256139318eb413", - "signature": "ef91066d2057cca50511e3af2d4aa54e07913a15f9cee1748f256139318eb413", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@babel+parser@7.12.3/node_modules/@babel/parser/typings/babel-parser.d.ts": { - "version": "8678956904af215fe917b2df07b6c54f876fa64eb1f8a158e4ff38404cef3ff4", - "signature": "8678956904af215fe917b2df07b6c54f876fa64eb1f8a158e4ff38404cef3ff4", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+babel__template@7.0.3/node_modules/@types/babel__template/index.d.ts": { - "version": "3e0a34f7207431d967dc32d593d1cda0c23975e9484bc8895b39d96ffca4a0d8", - "signature": "3e0a34f7207431d967dc32d593d1cda0c23975e9484bc8895b39d96ffca4a0d8", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+babel__core@7.1.10/node_modules/@types/babel__core/index.d.ts": { - "version": "7df3163944694feeac63067632a8dc2e2dea1350119ec8b43df277af69198369", - "signature": "7df3163944694feeac63067632a8dc2e2dea1350119ec8b43df277af69198369", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/magic-string@0.25.7/node_modules/magic-string/index.d.ts": { - "version": "df66dd87e5338e59ca0550af424ba22c59a8f4b30b20a214b6ed250562b7c755", - "signature": "df66dd87e5338e59ca0550af424ba22c59a8f4b30b20a214b6ed250562b7c755", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+buble@0.19.2/node_modules/@types/buble/index.d.ts": { - "version": "bf6148950ca5307411c2ae98561f3b845c8cd31c330e731a6822bf52ff757bf6", - "signature": "bf6148950ca5307411c2ae98561f3b845c8cd31c330e731a6822bf52ff757bf6", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+keyv@3.1.2/node_modules/@types/keyv/index.d.ts": { - "version": "4a8b6680f577878255690971bbfe6ec951ece19a0c86a493e66a715762d04db2", - "signature": "4a8b6680f577878255690971bbfe6ec951ece19a0c86a493e66a715762d04db2", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+http-cache-semantics@4.0.1/node_modules/@types/http-cache-semantics/index.d.ts": { - "version": "cab425b5559edac18327eb2c3c0f47e7e9f71b667290b7689faafd28aac69eae", - "signature": "cab425b5559edac18327eb2c3c0f47e7e9f71b667290b7689faafd28aac69eae", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+responselike@1.0.0/node_modules/@types/responselike/index.d.ts": { - "version": "3cfb0cb51cc2c2e1b313d7c4df04dbf7e5bda0a133c6b309bf6af77cf614b971", - "signature": "3cfb0cb51cc2c2e1b313d7c4df04dbf7e5bda0a133c6b309bf6af77cf614b971", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+cacheable-request@6.0.2/node_modules/@types/cacheable-request/index.d.ts": { - "version": "f992cd6cc0bcbaa4e6c810468c90f2d8595f8c6c3cf050c806397d3de8585562", - "signature": "f992cd6cc0bcbaa4e6c810468c90f2d8595f8c6c3cf050c806397d3de8585562", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+conventional-commits-parser@3.0.2/node_modules/@types/conventional-commits-parser/index.d.ts": { - "version": "2733d9c68999f6fb4a8e853f4266b40b1e91ef7ae97a35d82014a732f9f3584b", - "signature": "2733d9c68999f6fb4a8e853f4266b40b1e91ef7ae97a35d82014a732f9f3584b", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+d3-dsv@1.2.1/node_modules/@types/d3-dsv/index.d.ts": { - "version": "74462625c7e9df5d67a9fcdf5985322e35c707e71d515e12026900f4883d3145", - "signature": "74462625c7e9df5d67a9fcdf5985322e35c707e71d515e12026900f4883d3145", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+eslint@7.2.4/node_modules/@types/eslint/helpers.d.ts": { - "version": "f345b0888d003fd69cb32bad3a0aa04c615ccafc572019e4bd86a52bd5e49e46", - "signature": "f345b0888d003fd69cb32bad3a0aa04c615ccafc572019e4bd86a52bd5e49e46", - "affectsGlobalScope": true - }, - "../../../../../node_modules/.pnpm/@types+json-schema@7.0.6/node_modules/@types/json-schema/index.d.ts": { - "version": "b2be568d8ce95fcb26eebd04c035d94825655fdf689bf67d799f5ff8cbbb1024", - "signature": "b2be568d8ce95fcb26eebd04c035d94825655fdf689bf67d799f5ff8cbbb1024", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+estree@0.0.45/node_modules/@types/estree/index.d.ts": { - "version": "6a38e250306ceccbab257d11b846d5bd12491157d20901fa01afe4050c93c1b5", - "signature": "6a38e250306ceccbab257d11b846d5bd12491157d20901fa01afe4050c93c1b5", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+eslint@7.2.4/node_modules/@types/eslint/index.d.ts": { - "version": "be337886c0b7b94a0cec462da9d6136abfda99d51b4cd67830351cd691285387", - "signature": "be337886c0b7b94a0cec462da9d6136abfda99d51b4cd67830351cd691285387", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+minimatch@3.0.3/node_modules/@types/minimatch/index.d.ts": { - "version": "1d1e6bd176eee5970968423d7e215bfd66828b6db8d54d17afec05a831322633", - "signature": "1d1e6bd176eee5970968423d7e215bfd66828b6db8d54d17afec05a831322633", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+glob@7.1.3/node_modules/@types/glob/index.d.ts": { - "version": "393137c76bd922ba70a2f8bf1ade4f59a16171a02fb25918c168d48875b0cfb0", - "signature": "393137c76bd922ba70a2f8bf1ade4f59a16171a02fb25918c168d48875b0cfb0", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+json5@0.0.29/node_modules/@types/json5/index.d.ts": { - "version": "96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538", - "signature": "96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+minimist@1.2.2/node_modules/@types/minimist/index.d.ts": { - "version": "209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05", - "signature": "209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+normalize-package-data@2.4.0/node_modules/@types/normalize-package-data/index.d.ts": { - "version": "c9ad058b2cc9ce6dc2ed92960d6d009e8c04bef46d3f5312283debca6869f613", - "signature": "c9ad058b2cc9ce6dc2ed92960d6d009e8c04bef46d3f5312283debca6869f613", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+parse-json@4.0.0/node_modules/@types/parse-json/index.d.ts": { - "version": "2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b", - "signature": "2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+picomatch@2.2.1/node_modules/@types/picomatch/parse.d.ts": { - "version": "5584625db3efba4676489babcea1571f537559d80aa39da9aae4c5965657766a", - "signature": "5584625db3efba4676489babcea1571f537559d80aa39da9aae4c5965657766a", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+picomatch@2.2.1/node_modules/@types/picomatch/constants.d.ts": { - "version": "c0ad01cd660e5b8478c46ba9eda9bb60057de0744b3436fab3ce1ab764109da9", - "signature": "c0ad01cd660e5b8478c46ba9eda9bb60057de0744b3436fab3ce1ab764109da9", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+picomatch@2.2.1/node_modules/@types/picomatch/index.d.ts": { - "version": "39352f2e555338f98ec13e2f19fe1abc19dffc1e500462051f7a030e2f1394ad", - "signature": "39352f2e555338f98ec13e2f19fe1abc19dffc1e500462051f7a030e2f1394ad", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+q@1.5.4/node_modules/@types/q/index.d.ts": { - "version": "f9a2dd6a6084665f093ed0e9664b8e673be2a45e342a59dd4e0e4e552e68a9ad", - "signature": "f9a2dd6a6084665f093ed0e9664b8e673be2a45e342a59dd4e0e4e552e68a9ad", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+resolve@1.17.1/node_modules/@types/resolve/index.d.ts": { - "version": "8a19491eba2108d5c333c249699f40aff05ad312c04a17504573b27d91f0aede", - "signature": "8a19491eba2108d5c333c249699f40aff05ad312c04a17504573b27d91f0aede", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/semver.d.ts": { - "version": "d9e55d93aa33fad61bd5c63800972d00ba8879ec5d29f6f3bce67d16d86abc33", - "signature": "d9e55d93aa33fad61bd5c63800972d00ba8879ec5d29f6f3bce67d16d86abc33", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/parse.d.ts": { - "version": "2ac9c8332c5f8510b8bdd571f8271e0f39b0577714d5e95c1e79a12b2616f069", - "signature": "2ac9c8332c5f8510b8bdd571f8271e0f39b0577714d5e95c1e79a12b2616f069", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/valid.d.ts": { - "version": "42c21aa963e7b86fa00801d96e88b36803188018d5ad91db2a9101bccd40b3ff", - "signature": "42c21aa963e7b86fa00801d96e88b36803188018d5ad91db2a9101bccd40b3ff", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/clean.d.ts": { - "version": "d31eb848cdebb4c55b4893b335a7c0cca95ad66dee13cbb7d0893810c0a9c301", - "signature": "d31eb848cdebb4c55b4893b335a7c0cca95ad66dee13cbb7d0893810c0a9c301", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/inc.d.ts": { - "version": "77c1d91a129ba60b8c405f9f539e42df834afb174fe0785f89d92a2c7c16b77a", - "signature": "77c1d91a129ba60b8c405f9f539e42df834afb174fe0785f89d92a2c7c16b77a", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/diff.d.ts": { - "version": "c544d81603149987796b24cca297c965db427b84b2580fb27e52fb37ddc1f470", - "signature": "c544d81603149987796b24cca297c965db427b84b2580fb27e52fb37ddc1f470", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/major.d.ts": { - "version": "906c751ef5822ec0dadcea2f0e9db64a33fb4ee926cc9f7efa38afe5d5371b2a", - "signature": "906c751ef5822ec0dadcea2f0e9db64a33fb4ee926cc9f7efa38afe5d5371b2a", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/minor.d.ts": { - "version": "5387c049e9702f2d2d7ece1a74836a14b47fbebe9bbeb19f94c580a37c855351", - "signature": "5387c049e9702f2d2d7ece1a74836a14b47fbebe9bbeb19f94c580a37c855351", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/patch.d.ts": { - "version": "c68391fb9efad5d99ff332c65b1606248c4e4a9f1dd9a087204242b56c7126d6", - "signature": "c68391fb9efad5d99ff332c65b1606248c4e4a9f1dd9a087204242b56c7126d6", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/prerelease.d.ts": { - "version": "e9cf02252d3a0ced987d24845dcb1f11c1be5541f17e5daa44c6de2d18138d0c", - "signature": "e9cf02252d3a0ced987d24845dcb1f11c1be5541f17e5daa44c6de2d18138d0c", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/compare.d.ts": { - "version": "e8b02b879754d85f48489294f99147aeccc352c760d95a6fe2b6e49cd400b2fe", - "signature": "e8b02b879754d85f48489294f99147aeccc352c760d95a6fe2b6e49cd400b2fe", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/rcompare.d.ts": { - "version": "9f6908ab3d8a86c68b86e38578afc7095114e66b2fc36a2a96e9252aac3998e0", - "signature": "9f6908ab3d8a86c68b86e38578afc7095114e66b2fc36a2a96e9252aac3998e0", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/compare-loose.d.ts": { - "version": "0eedb2344442b143ddcd788f87096961cd8572b64f10b4afc3356aa0460171c6", - "signature": "0eedb2344442b143ddcd788f87096961cd8572b64f10b4afc3356aa0460171c6", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/compare-build.d.ts": { - "version": "9eb2875a1e4c583066af7d6194ea8162191b2756e5d87ccb3c562fdf74d06869", - "signature": "9eb2875a1e4c583066af7d6194ea8162191b2756e5d87ccb3c562fdf74d06869", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/sort.d.ts": { - "version": "c68baff4d8ba346130e9753cefe2e487a16731bf17e05fdacc81e8c9a26aae9d", - "signature": "c68baff4d8ba346130e9753cefe2e487a16731bf17e05fdacc81e8c9a26aae9d", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/rsort.d.ts": { - "version": "2cd15528d8bb5d0453aa339b4b52e0696e8b07e790c153831c642c3dea5ac8af", - "signature": "2cd15528d8bb5d0453aa339b4b52e0696e8b07e790c153831c642c3dea5ac8af", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/gt.d.ts": { - "version": "479d622e66283ffa9883fbc33e441f7fc928b2277ff30aacbec7b7761b4e9579", - "signature": "479d622e66283ffa9883fbc33e441f7fc928b2277ff30aacbec7b7761b4e9579", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/lt.d.ts": { - "version": "ade307876dc5ca267ca308d09e737b611505e015c535863f22420a11fffc1c54", - "signature": "ade307876dc5ca267ca308d09e737b611505e015c535863f22420a11fffc1c54", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/eq.d.ts": { - "version": "f8cdefa3e0dee639eccbe9794b46f90291e5fd3989fcba60d2f08fde56179fb9", - "signature": "f8cdefa3e0dee639eccbe9794b46f90291e5fd3989fcba60d2f08fde56179fb9", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/neq.d.ts": { - "version": "86c5a62f99aac7053976e317dbe9acb2eaf903aaf3d2e5bb1cafe5c2df7b37a8", - "signature": "86c5a62f99aac7053976e317dbe9acb2eaf903aaf3d2e5bb1cafe5c2df7b37a8", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/gte.d.ts": { - "version": "2b300954ce01a8343866f737656e13243e86e5baef51bd0631b21dcef1f6e954", - "signature": "2b300954ce01a8343866f737656e13243e86e5baef51bd0631b21dcef1f6e954", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/lte.d.ts": { - "version": "a2d409a9ffd872d6b9d78ead00baa116bbc73cfa959fce9a2f29d3227876b2a1", - "signature": "a2d409a9ffd872d6b9d78ead00baa116bbc73cfa959fce9a2f29d3227876b2a1", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/cmp.d.ts": { - "version": "b288936f560cd71f4a6002953290de9ff8dfbfbf37f5a9391be5c83322324898", - "signature": "b288936f560cd71f4a6002953290de9ff8dfbfbf37f5a9391be5c83322324898", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/coerce.d.ts": { - "version": "61178a781ef82e0ff54f9430397e71e8f365fc1e3725e0e5346f2de7b0d50dfa", - "signature": "61178a781ef82e0ff54f9430397e71e8f365fc1e3725e0e5346f2de7b0d50dfa", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/comparator.d.ts": { - "version": "6a6ccb37feb3aad32d9be026a3337db195979cd5727a616fc0f557e974101a54", - "signature": "6a6ccb37feb3aad32d9be026a3337db195979cd5727a616fc0f557e974101a54", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/range.d.ts": { - "version": "6eef5113135a0f2bbac8259909a5bbb7666bcde022c28f4ab95145623cbe1f72", - "signature": "6eef5113135a0f2bbac8259909a5bbb7666bcde022c28f4ab95145623cbe1f72", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/satisfies.d.ts": { - "version": "058b8dd97b7c67b6bf33e7bda7b1e247b019b675d4b6449d14ac002091a8b4f8", - "signature": "058b8dd97b7c67b6bf33e7bda7b1e247b019b675d4b6449d14ac002091a8b4f8", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/max-satisfying.d.ts": { - "version": "89c8a7b88c378663a8124664f2d9b8c2887e186b55aa066edf6d67177ca1aa04", - "signature": "89c8a7b88c378663a8124664f2d9b8c2887e186b55aa066edf6d67177ca1aa04", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/min-satisfying.d.ts": { - "version": "5a30ba65ad753eb2ef65355dbb3011b28b192cb9df2ef0b5f595b51ca7faf353", - "signature": "5a30ba65ad753eb2ef65355dbb3011b28b192cb9df2ef0b5f595b51ca7faf353", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/to-comparators.d.ts": { - "version": "5192f9a6469f849e0863616b668fde54bcd6704394b4bfbd115691865f66d761", - "signature": "5192f9a6469f849e0863616b668fde54bcd6704394b4bfbd115691865f66d761", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/min-version.d.ts": { - "version": "f41d30972724714763a2698ae949fbc463afb203b5fa7c4ad7e4de0871129a17", - "signature": "f41d30972724714763a2698ae949fbc463afb203b5fa7c4ad7e4de0871129a17", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/valid.d.ts": { - "version": "0123340327efb174818f4b78bf6a9b12f8470754e6afac9e4d32a2ad27521f7b", - "signature": "0123340327efb174818f4b78bf6a9b12f8470754e6afac9e4d32a2ad27521f7b", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/outside.d.ts": { - "version": "9795e0a3a45d5b6f1a791ee54b7c8b58bc931e8900966cea2dff9c5bae56073b", - "signature": "9795e0a3a45d5b6f1a791ee54b7c8b58bc931e8900966cea2dff9c5bae56073b", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/gtr.d.ts": { - "version": "5890be29879d02424b7654f40592915189034948f7a18c5ad121c006d4e92811", - "signature": "5890be29879d02424b7654f40592915189034948f7a18c5ad121c006d4e92811", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/ltr.d.ts": { - "version": "0ab49086f10c75a1cb3b18bffe799dae021774146d8a2d5a4bb42dda67b64f9b", - "signature": "0ab49086f10c75a1cb3b18bffe799dae021774146d8a2d5a4bb42dda67b64f9b", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/intersects.d.ts": { - "version": "81c77839e152b8f715ec67b0a8b910bcc2d6cf916794c3519f8798c40efd12ac", - "signature": "81c77839e152b8f715ec67b0a8b910bcc2d6cf916794c3519f8798c40efd12ac", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/simplify.d.ts": { - "version": "a868a534ba1c2ca9060b8a13b0ffbbbf78b4be7b0ff80d8c75b02773f7192c29", - "signature": "a868a534ba1c2ca9060b8a13b0ffbbbf78b4be7b0ff80d8c75b02773f7192c29", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/subset.d.ts": { - "version": "464843c00fb3dd4735b28255c5c9fe713f16b8e47a3db09ba1647687440f7aef", - "signature": "464843c00fb3dd4735b28255c5c9fe713f16b8e47a3db09ba1647687440f7aef", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/internals/identifiers.d.ts": { - "version": "34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0", - "signature": "34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts": { - "version": "d0f6d36b2d86f934560c48d8bfdc7ab60c67cfb2ab6dc1916706aa68e83d6dc2", - "signature": "d0f6d36b2d86f934560c48d8bfdc7ab60c67cfb2ab6dc1916706aa68e83d6dc2", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/source-map.d.ts": { - "version": "2887592574fcdfd087647c539dcb0fbe5af2521270dad4a37f9d17c16190d579", - "signature": "2887592574fcdfd087647c539dcb0fbe5af2521270dad4a37f9d17c16190d579", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+source-map-support@0.5.4/node_modules/@types/source-map-support/index.d.ts": { - "version": "1384902f0cccc5a9f9c0d65d93c093f6b9f77c949bf823f511b617cb8bc20fb5", - "signature": "1384902f0cccc5a9f9c0d65d93c093f6b9f77c949bf823f511b617cb8bc20fb5", - "affectsGlobalScope": false - }, - "../../../../../node_modules/.pnpm/@types+yargs-parser@20.2.1/node_modules/@types/yargs-parser/index.d.ts": { - "version": "f7e133b20ee2669b6c0e5d7f0cd510868c57cd64b283e68c7f598e30ce9d76d2", - "signature": "f7e133b20ee2669b6c0e5d7f0cd510868c57cd64b283e68c7f598e30ce9d76d2", - "affectsGlobalScope": false - } - }, - "options": { - "module": 99, - "skipLibCheck": true, - "incremental": true, - "configFilePath": "./tsconfig.json", - "noEmitHelpers": true, - "importHelpers": true, - "noResolve": false, - "noEmit": false, - "emitDeclarationOnly": false, - "sourceMap": true, - "inlineSources": true - }, - "referencedMap": { - "../../../../../node_modules/.pnpm/@babel+parser@7.12.3/node_modules/@babel/parser/typings/babel-parser.d.ts": [ - "../../../../../node_modules/.pnpm/@babel+types@7.12.1/node_modules/@babel/types/lib/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+babel__core@7.1.10/node_modules/@types/babel__core/index.d.ts": [ - "../../../../../node_modules/.pnpm/@babel+parser@7.12.3/node_modules/@babel/parser/typings/babel-parser.d.ts", - "../../../../../node_modules/.pnpm/@babel+types@7.12.1/node_modules/@babel/types/lib/index.d.ts", - "../../../../../node_modules/.pnpm/@types+babel__generator@7.6.2/node_modules/@types/babel__generator/index.d.ts", - "../../../../../node_modules/.pnpm/@types+babel__template@7.0.3/node_modules/@types/babel__template/index.d.ts", - "../../../../../node_modules/.pnpm/@types+babel__traverse@7.0.15/node_modules/@types/babel__traverse/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+babel__generator@7.6.2/node_modules/@types/babel__generator/index.d.ts": [ - "../../../../../node_modules/.pnpm/@babel+types@7.12.1/node_modules/@babel/types/lib/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+babel__template@7.0.3/node_modules/@types/babel__template/index.d.ts": [ - "../../../../../node_modules/.pnpm/@babel+parser@7.12.3/node_modules/@babel/parser/typings/babel-parser.d.ts", - "../../../../../node_modules/.pnpm/@babel+types@7.12.1/node_modules/@babel/types/lib/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+babel__traverse@7.0.15/node_modules/@types/babel__traverse/index.d.ts": [ - "../../../../../node_modules/.pnpm/@babel+types@7.12.1/node_modules/@babel/types/lib/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+buble@0.19.2/node_modules/@types/buble/index.d.ts": [ - "../../../../../node_modules/.pnpm/magic-string@0.25.7/node_modules/magic-string/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+cacheable-request@6.0.2/node_modules/@types/cacheable-request/index.d.ts": [ - "../../../../../node_modules/.pnpm/@types+http-cache-semantics@4.0.1/node_modules/@types/http-cache-semantics/index.d.ts", - "../../../../../node_modules/.pnpm/@types+keyv@3.1.2/node_modules/@types/keyv/index.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/events.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/http.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/index.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/url.d.ts", - "../../../../../node_modules/.pnpm/@types+responselike@1.0.0/node_modules/@types/responselike/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+conventional-commits-parser@3.0.2/node_modules/@types/conventional-commits-parser/index.d.ts": [ - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/index.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/stream.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+eslint@7.2.4/node_modules/@types/eslint/index.d.ts": [ - "../../../../../node_modules/.pnpm/@types+eslint@7.2.4/node_modules/@types/eslint/helpers.d.ts", - "../../../../../node_modules/.pnpm/@types+estree@0.0.45/node_modules/@types/estree/index.d.ts", - "../../../../../node_modules/.pnpm/@types+json-schema@7.0.6/node_modules/@types/json-schema/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+glob@7.1.3/node_modules/@types/glob/index.d.ts": [ - "../../../../../node_modules/.pnpm/@types+minimatch@3.0.3/node_modules/@types/minimatch/index.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/events.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+keyv@3.1.2/node_modules/@types/keyv/index.d.ts": [ - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/events.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/base.d.ts": [ - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/assert.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/ts3.6/base.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/child_process.d.ts": [ - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/events.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/net.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/stream.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/cluster.d.ts": [ - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/child_process.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/events.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/net.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/crypto.d.ts": [ - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/stream.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/dgram.d.ts": [ - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/dns.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/events.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/net.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/domain.d.ts": [ - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/events.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/fs.d.ts": [ - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/events.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/stream.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/url.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/http.d.ts": [ - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/events.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/net.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/stream.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/url.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/http2.d.ts": [ - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/events.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/fs.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/http.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/net.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/stream.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/tls.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/url.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/https.d.ts": [ - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/events.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/http.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/tls.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/url.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/index.d.ts": [ - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/base.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/ts3.6/base.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/inspector.d.ts": [ - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/events.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/net.d.ts": [ - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/dns.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/events.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/stream.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/perf_hooks.d.ts": [ - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/async_hooks.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/readline.d.ts": [ - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/events.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/stream.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/repl.d.ts": [ - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/readline.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/util.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/vm.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/stream.d.ts": [ - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/events.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/tls.d.ts": [ - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/crypto.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/dns.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/net.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/stream.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/ts3.6/base.d.ts": [ - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/async_hooks.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/buffer.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/child_process.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/cluster.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/console.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/constants.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/crypto.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/dgram.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/dns.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/domain.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/events.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/fs.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/globals.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/http.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/http2.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/https.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/inspector.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/module.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/net.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/os.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/path.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/perf_hooks.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/process.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/punycode.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/querystring.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/readline.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/repl.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/stream.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/string_decoder.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/timers.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/tls.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/trace_events.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/tty.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/url.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/util.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/v8.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/vm.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/worker_threads.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/zlib.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/tty.d.ts": [ - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/net.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/url.d.ts": [ - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/querystring.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/worker_threads.d.ts": [ - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/events.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/stream.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/zlib.d.ts": [ - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/stream.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+picomatch@2.2.1/node_modules/@types/picomatch/index.d.ts": [ - "../../../../../node_modules/.pnpm/@types+picomatch@2.2.1/node_modules/@types/picomatch/constants.d.ts", - "../../../../../node_modules/.pnpm/@types+picomatch@2.2.1/node_modules/@types/picomatch/parse.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+resolve@1.17.1/node_modules/@types/resolve/index.d.ts": [ - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+responselike@1.0.0/node_modules/@types/responselike/index.d.ts": [ - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/http.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/index.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/stream.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/comparator.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/semver.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/range.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/comparator.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/semver.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/semver.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/clean.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/cmp.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/semver.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/coerce.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/semver.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/compare-build.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/semver.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/compare-loose.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/semver.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/compare.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/semver.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/diff.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/semver.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/eq.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/semver.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/gt.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/semver.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/gte.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/semver.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/inc.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/semver.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/lt.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/semver.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/lte.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/semver.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/major.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/semver.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/minor.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/semver.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/neq.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/semver.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/parse.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/semver.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/patch.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/semver.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/prerelease.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/semver.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/rcompare.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/semver.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/rsort.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/semver.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/satisfies.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/range.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/semver.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/sort.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/semver.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/valid.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/semver.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/comparator.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/range.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/semver.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/clean.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/cmp.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/coerce.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/compare-build.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/compare-loose.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/compare.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/diff.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/eq.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/gt.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/gte.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/inc.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/lt.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/lte.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/major.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/minor.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/neq.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/parse.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/patch.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/prerelease.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/rcompare.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/rsort.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/satisfies.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/sort.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/valid.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/internals/identifiers.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/gtr.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/intersects.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/ltr.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/max-satisfying.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/min-satisfying.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/min-version.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/outside.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/simplify.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/subset.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/to-comparators.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/valid.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/gtr.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/range.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/semver.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/intersects.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/range.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/ltr.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/range.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/semver.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/max-satisfying.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/range.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/semver.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/min-satisfying.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/range.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/semver.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/min-version.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/range.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/semver.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/outside.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/range.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/semver.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/simplify.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/range.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/subset.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/range.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/to-comparators.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/range.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/valid.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/range.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+source-map-support@0.5.4/node_modules/@types/source-map-support/index.d.ts": [ - "../../../../../node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/source-map.d.ts" - ] - }, - "exportedModulesMap": { - "../../../../../node_modules/.pnpm/@babel+parser@7.12.3/node_modules/@babel/parser/typings/babel-parser.d.ts": [ - "../../../../../node_modules/.pnpm/@babel+types@7.12.1/node_modules/@babel/types/lib/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+babel__core@7.1.10/node_modules/@types/babel__core/index.d.ts": [ - "../../../../../node_modules/.pnpm/@babel+parser@7.12.3/node_modules/@babel/parser/typings/babel-parser.d.ts", - "../../../../../node_modules/.pnpm/@babel+types@7.12.1/node_modules/@babel/types/lib/index.d.ts", - "../../../../../node_modules/.pnpm/@types+babel__generator@7.6.2/node_modules/@types/babel__generator/index.d.ts", - "../../../../../node_modules/.pnpm/@types+babel__template@7.0.3/node_modules/@types/babel__template/index.d.ts", - "../../../../../node_modules/.pnpm/@types+babel__traverse@7.0.15/node_modules/@types/babel__traverse/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+babel__generator@7.6.2/node_modules/@types/babel__generator/index.d.ts": [ - "../../../../../node_modules/.pnpm/@babel+types@7.12.1/node_modules/@babel/types/lib/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+babel__template@7.0.3/node_modules/@types/babel__template/index.d.ts": [ - "../../../../../node_modules/.pnpm/@babel+parser@7.12.3/node_modules/@babel/parser/typings/babel-parser.d.ts", - "../../../../../node_modules/.pnpm/@babel+types@7.12.1/node_modules/@babel/types/lib/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+babel__traverse@7.0.15/node_modules/@types/babel__traverse/index.d.ts": [ - "../../../../../node_modules/.pnpm/@babel+types@7.12.1/node_modules/@babel/types/lib/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+buble@0.19.2/node_modules/@types/buble/index.d.ts": [ - "../../../../../node_modules/.pnpm/magic-string@0.25.7/node_modules/magic-string/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+cacheable-request@6.0.2/node_modules/@types/cacheable-request/index.d.ts": [ - "../../../../../node_modules/.pnpm/@types+http-cache-semantics@4.0.1/node_modules/@types/http-cache-semantics/index.d.ts", - "../../../../../node_modules/.pnpm/@types+keyv@3.1.2/node_modules/@types/keyv/index.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/events.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/http.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/index.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/url.d.ts", - "../../../../../node_modules/.pnpm/@types+responselike@1.0.0/node_modules/@types/responselike/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+conventional-commits-parser@3.0.2/node_modules/@types/conventional-commits-parser/index.d.ts": [ - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/index.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/stream.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+eslint@7.2.4/node_modules/@types/eslint/index.d.ts": [ - "../../../../../node_modules/.pnpm/@types+eslint@7.2.4/node_modules/@types/eslint/helpers.d.ts", - "../../../../../node_modules/.pnpm/@types+estree@0.0.45/node_modules/@types/estree/index.d.ts", - "../../../../../node_modules/.pnpm/@types+json-schema@7.0.6/node_modules/@types/json-schema/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+glob@7.1.3/node_modules/@types/glob/index.d.ts": [ - "../../../../../node_modules/.pnpm/@types+minimatch@3.0.3/node_modules/@types/minimatch/index.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/events.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+keyv@3.1.2/node_modules/@types/keyv/index.d.ts": [ - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/events.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/base.d.ts": [ - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/assert.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/ts3.6/base.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/child_process.d.ts": [ - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/events.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/net.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/stream.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/cluster.d.ts": [ - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/child_process.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/events.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/net.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/crypto.d.ts": [ - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/stream.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/dgram.d.ts": [ - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/dns.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/events.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/net.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/domain.d.ts": [ - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/events.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/fs.d.ts": [ - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/events.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/stream.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/url.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/http.d.ts": [ - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/events.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/net.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/stream.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/url.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/http2.d.ts": [ - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/events.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/fs.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/http.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/net.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/stream.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/tls.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/url.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/https.d.ts": [ - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/events.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/http.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/tls.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/url.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/index.d.ts": [ - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/base.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/ts3.6/base.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/inspector.d.ts": [ - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/events.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/net.d.ts": [ - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/dns.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/events.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/stream.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/perf_hooks.d.ts": [ - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/async_hooks.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/readline.d.ts": [ - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/events.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/stream.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/repl.d.ts": [ - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/readline.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/util.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/vm.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/stream.d.ts": [ - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/events.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/tls.d.ts": [ - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/crypto.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/dns.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/net.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/stream.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/ts3.6/base.d.ts": [ - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/async_hooks.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/buffer.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/child_process.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/cluster.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/console.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/constants.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/crypto.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/dgram.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/dns.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/domain.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/events.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/fs.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/globals.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/http.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/http2.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/https.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/inspector.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/module.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/net.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/os.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/path.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/perf_hooks.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/process.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/punycode.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/querystring.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/readline.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/repl.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/stream.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/string_decoder.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/timers.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/tls.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/trace_events.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/tty.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/url.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/util.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/v8.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/vm.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/worker_threads.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/zlib.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/tty.d.ts": [ - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/net.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/url.d.ts": [ - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/querystring.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/worker_threads.d.ts": [ - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/events.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/stream.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/zlib.d.ts": [ - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/stream.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+picomatch@2.2.1/node_modules/@types/picomatch/index.d.ts": [ - "../../../../../node_modules/.pnpm/@types+picomatch@2.2.1/node_modules/@types/picomatch/constants.d.ts", - "../../../../../node_modules/.pnpm/@types+picomatch@2.2.1/node_modules/@types/picomatch/parse.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+resolve@1.17.1/node_modules/@types/resolve/index.d.ts": [ - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+responselike@1.0.0/node_modules/@types/responselike/index.d.ts": [ - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/http.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/index.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/stream.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/comparator.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/semver.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/range.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/comparator.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/semver.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/semver.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/clean.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/cmp.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/semver.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/coerce.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/semver.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/compare-build.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/semver.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/compare-loose.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/semver.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/compare.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/semver.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/diff.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/semver.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/eq.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/semver.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/gt.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/semver.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/gte.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/semver.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/inc.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/semver.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/lt.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/semver.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/lte.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/semver.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/major.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/semver.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/minor.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/semver.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/neq.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/semver.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/parse.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/semver.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/patch.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/semver.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/prerelease.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/semver.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/rcompare.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/semver.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/rsort.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/semver.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/satisfies.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/range.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/semver.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/sort.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/semver.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/valid.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/semver.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/comparator.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/range.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/semver.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/clean.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/cmp.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/coerce.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/compare-build.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/compare-loose.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/compare.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/diff.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/eq.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/gt.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/gte.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/inc.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/lt.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/lte.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/major.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/minor.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/neq.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/parse.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/patch.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/prerelease.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/rcompare.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/rsort.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/satisfies.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/sort.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/valid.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/internals/identifiers.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/gtr.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/intersects.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/ltr.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/max-satisfying.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/min-satisfying.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/min-version.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/outside.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/simplify.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/subset.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/to-comparators.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/valid.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/gtr.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/range.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/semver.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/intersects.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/range.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/ltr.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/range.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/semver.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/max-satisfying.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/range.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/semver.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/min-satisfying.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/range.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/semver.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/min-version.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/range.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/semver.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/outside.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/range.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/semver.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/simplify.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/range.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/subset.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/range.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/to-comparators.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/range.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/valid.d.ts": [ - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/range.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts" - ], - "../../../../../node_modules/.pnpm/@types+source-map-support@0.5.4/node_modules/@types/source-map-support/index.d.ts": [ - "../../../../../node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/source-map.d.ts" - ] - }, - "semanticDiagnosticsPerFile": [ - "../../../../../node_modules/.pnpm/@babel+parser@7.12.3/node_modules/@babel/parser/typings/babel-parser.d.ts", - "../../../../../node_modules/.pnpm/@babel+types@7.12.1/node_modules/@babel/types/lib/index.d.ts", - "../../../../../node_modules/.pnpm/@types+babel__core@7.1.10/node_modules/@types/babel__core/index.d.ts", - "../../../../../node_modules/.pnpm/@types+babel__generator@7.6.2/node_modules/@types/babel__generator/index.d.ts", - "../../../../../node_modules/.pnpm/@types+babel__template@7.0.3/node_modules/@types/babel__template/index.d.ts", - "../../../../../node_modules/.pnpm/@types+babel__traverse@7.0.15/node_modules/@types/babel__traverse/index.d.ts", - "../../../../../node_modules/.pnpm/@types+buble@0.19.2/node_modules/@types/buble/index.d.ts", - "../../../../../node_modules/.pnpm/@types+cacheable-request@6.0.2/node_modules/@types/cacheable-request/index.d.ts", - "../../../../../node_modules/.pnpm/@types+conventional-commits-parser@3.0.2/node_modules/@types/conventional-commits-parser/index.d.ts", - "../../../../../node_modules/.pnpm/@types+d3-dsv@1.2.1/node_modules/@types/d3-dsv/index.d.ts", - "../../../../../node_modules/.pnpm/@types+eslint@7.2.4/node_modules/@types/eslint/helpers.d.ts", - "../../../../../node_modules/.pnpm/@types+eslint@7.2.4/node_modules/@types/eslint/index.d.ts", - "../../../../../node_modules/.pnpm/@types+estree@0.0.45/node_modules/@types/estree/index.d.ts", - "../../../../../node_modules/.pnpm/@types+glob@7.1.3/node_modules/@types/glob/index.d.ts", - "../../../../../node_modules/.pnpm/@types+http-cache-semantics@4.0.1/node_modules/@types/http-cache-semantics/index.d.ts", - "../../../../../node_modules/.pnpm/@types+json-schema@7.0.6/node_modules/@types/json-schema/index.d.ts", - "../../../../../node_modules/.pnpm/@types+json5@0.0.29/node_modules/@types/json5/index.d.ts", - "../../../../../node_modules/.pnpm/@types+keyv@3.1.2/node_modules/@types/keyv/index.d.ts", - "../../../../../node_modules/.pnpm/@types+minimatch@3.0.3/node_modules/@types/minimatch/index.d.ts", - "../../../../../node_modules/.pnpm/@types+minimist@1.2.2/node_modules/@types/minimist/index.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/assert.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/async_hooks.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/base.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/buffer.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/child_process.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/cluster.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/console.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/constants.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/crypto.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/dgram.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/dns.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/domain.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/events.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/fs.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/globals.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/http.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/http2.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/https.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/index.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/inspector.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/module.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/net.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/os.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/path.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/perf_hooks.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/process.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/punycode.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/querystring.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/readline.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/repl.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/stream.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/string_decoder.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/timers.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/tls.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/trace_events.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/ts3.6/base.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/tty.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/url.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/util.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/v8.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/vm.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/worker_threads.d.ts", - "../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/zlib.d.ts", - "../../../../../node_modules/.pnpm/@types+normalize-package-data@2.4.0/node_modules/@types/normalize-package-data/index.d.ts", - "../../../../../node_modules/.pnpm/@types+parse-json@4.0.0/node_modules/@types/parse-json/index.d.ts", - "../../../../../node_modules/.pnpm/@types+picomatch@2.2.1/node_modules/@types/picomatch/constants.d.ts", - "../../../../../node_modules/.pnpm/@types+picomatch@2.2.1/node_modules/@types/picomatch/index.d.ts", - "../../../../../node_modules/.pnpm/@types+picomatch@2.2.1/node_modules/@types/picomatch/parse.d.ts", - "../../../../../node_modules/.pnpm/@types+q@1.5.4/node_modules/@types/q/index.d.ts", - "../../../../../node_modules/.pnpm/@types+resolve@1.17.1/node_modules/@types/resolve/index.d.ts", - "../../../../../node_modules/.pnpm/@types+responselike@1.0.0/node_modules/@types/responselike/index.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/comparator.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/range.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/semver.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/clean.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/cmp.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/coerce.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/compare-build.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/compare-loose.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/compare.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/diff.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/eq.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/gt.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/gte.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/inc.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/lt.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/lte.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/major.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/minor.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/neq.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/parse.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/patch.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/prerelease.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/rcompare.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/rsort.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/satisfies.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/sort.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/valid.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/internals/identifiers.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/gtr.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/intersects.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/ltr.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/max-satisfying.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/min-satisfying.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/min-version.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/outside.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/simplify.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/subset.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/to-comparators.d.ts", - "../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/valid.d.ts", - "../../../../../node_modules/.pnpm/@types+source-map-support@0.5.4/node_modules/@types/source-map-support/index.d.ts", - "../../../../../node_modules/.pnpm/@types+yargs-parser@20.2.1/node_modules/@types/yargs-parser/index.d.ts", - "../../../../../node_modules/.pnpm/magic-string@0.25.7/node_modules/magic-string/index.d.ts", - "../../../../../node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/source-map.d.ts", - "../../../../../node_modules/.pnpm/typescript@4.2.4/node_modules/typescript/lib/lib.d.ts", - "../../../../../node_modules/.pnpm/typescript@4.2.4/node_modules/typescript/lib/lib.dom.d.ts", - "../../../../../node_modules/.pnpm/typescript@4.2.4/node_modules/typescript/lib/lib.es2015.collection.d.ts", - "../../../../../node_modules/.pnpm/typescript@4.2.4/node_modules/typescript/lib/lib.es2015.core.d.ts", - "../../../../../node_modules/.pnpm/typescript@4.2.4/node_modules/typescript/lib/lib.es2015.d.ts", - "../../../../../node_modules/.pnpm/typescript@4.2.4/node_modules/typescript/lib/lib.es2015.generator.d.ts", - "../../../../../node_modules/.pnpm/typescript@4.2.4/node_modules/typescript/lib/lib.es2015.iterable.d.ts", - "../../../../../node_modules/.pnpm/typescript@4.2.4/node_modules/typescript/lib/lib.es2015.promise.d.ts", - "../../../../../node_modules/.pnpm/typescript@4.2.4/node_modules/typescript/lib/lib.es2015.proxy.d.ts", - "../../../../../node_modules/.pnpm/typescript@4.2.4/node_modules/typescript/lib/lib.es2015.reflect.d.ts", - "../../../../../node_modules/.pnpm/typescript@4.2.4/node_modules/typescript/lib/lib.es2015.symbol.d.ts", - "../../../../../node_modules/.pnpm/typescript@4.2.4/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts", - "../../../../../node_modules/.pnpm/typescript@4.2.4/node_modules/typescript/lib/lib.es2016.array.include.d.ts", - "../../../../../node_modules/.pnpm/typescript@4.2.4/node_modules/typescript/lib/lib.es2016.d.ts", - "../../../../../node_modules/.pnpm/typescript@4.2.4/node_modules/typescript/lib/lib.es2017.d.ts", - "../../../../../node_modules/.pnpm/typescript@4.2.4/node_modules/typescript/lib/lib.es2017.intl.d.ts", - "../../../../../node_modules/.pnpm/typescript@4.2.4/node_modules/typescript/lib/lib.es2017.object.d.ts", - "../../../../../node_modules/.pnpm/typescript@4.2.4/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts", - "../../../../../node_modules/.pnpm/typescript@4.2.4/node_modules/typescript/lib/lib.es2017.string.d.ts", - "../../../../../node_modules/.pnpm/typescript@4.2.4/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts", - "../../../../../node_modules/.pnpm/typescript@4.2.4/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts", - "../../../../../node_modules/.pnpm/typescript@4.2.4/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts", - "../../../../../node_modules/.pnpm/typescript@4.2.4/node_modules/typescript/lib/lib.es2018.d.ts", - "../../../../../node_modules/.pnpm/typescript@4.2.4/node_modules/typescript/lib/lib.es2018.intl.d.ts", - "../../../../../node_modules/.pnpm/typescript@4.2.4/node_modules/typescript/lib/lib.es2018.promise.d.ts", - "../../../../../node_modules/.pnpm/typescript@4.2.4/node_modules/typescript/lib/lib.es2018.regexp.d.ts", - "../../../../../node_modules/.pnpm/typescript@4.2.4/node_modules/typescript/lib/lib.es2020.bigint.d.ts", - "../../../../../node_modules/.pnpm/typescript@4.2.4/node_modules/typescript/lib/lib.es5.d.ts", - "../../../../../node_modules/.pnpm/typescript@4.2.4/node_modules/typescript/lib/lib.esnext.intl.d.ts", - "../../../../../node_modules/.pnpm/typescript@4.2.4/node_modules/typescript/lib/lib.scripthost.d.ts", - "../../../../../node_modules/.pnpm/typescript@4.2.4/node_modules/typescript/lib/lib.webworker.importscripts.d.ts", - "./main.ts" - ] - }, - "version": "4.2.4" -} \ No newline at end of file +{"program":{"fileNames":["../../../../../node_modules/.pnpm/typescript@4.7.3/node_modules/typescript/lib/lib.d.ts","../../../../../node_modules/.pnpm/typescript@4.7.3/node_modules/typescript/lib/lib.es5.d.ts","../../../../../node_modules/.pnpm/typescript@4.7.3/node_modules/typescript/lib/lib.es2015.d.ts","../../../../../node_modules/.pnpm/typescript@4.7.3/node_modules/typescript/lib/lib.es2016.d.ts","../../../../../node_modules/.pnpm/typescript@4.7.3/node_modules/typescript/lib/lib.es2017.d.ts","../../../../../node_modules/.pnpm/typescript@4.7.3/node_modules/typescript/lib/lib.es2018.d.ts","../../../../../node_modules/.pnpm/typescript@4.7.3/node_modules/typescript/lib/lib.dom.d.ts","../../../../../node_modules/.pnpm/typescript@4.7.3/node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../../../../node_modules/.pnpm/typescript@4.7.3/node_modules/typescript/lib/lib.scripthost.d.ts","../../../../../node_modules/.pnpm/typescript@4.7.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../../node_modules/.pnpm/typescript@4.7.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../../node_modules/.pnpm/typescript@4.7.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../../node_modules/.pnpm/typescript@4.7.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../../node_modules/.pnpm/typescript@4.7.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../../node_modules/.pnpm/typescript@4.7.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../../node_modules/.pnpm/typescript@4.7.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../../node_modules/.pnpm/typescript@4.7.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../../node_modules/.pnpm/typescript@4.7.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../../node_modules/.pnpm/typescript@4.7.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../../node_modules/.pnpm/typescript@4.7.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../../node_modules/.pnpm/typescript@4.7.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../../node_modules/.pnpm/typescript@4.7.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../../node_modules/.pnpm/typescript@4.7.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../../node_modules/.pnpm/typescript@4.7.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../../node_modules/.pnpm/typescript@4.7.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../../node_modules/.pnpm/typescript@4.7.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../../node_modules/.pnpm/typescript@4.7.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../../node_modules/.pnpm/typescript@4.7.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../../node_modules/.pnpm/typescript@4.7.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../../node_modules/.pnpm/typescript@4.7.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../../node_modules/.pnpm/typescript@4.7.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../../../node_modules/.pnpm/typescript@4.7.3/node_modules/typescript/lib/lib.esnext.intl.d.ts","./main.ts","../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/globals.d.ts","../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/async_hooks.d.ts","../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/buffer.d.ts","../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/child_process.d.ts","../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/cluster.d.ts","../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/console.d.ts","../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/constants.d.ts","../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/crypto.d.ts","../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/dgram.d.ts","../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/dns.d.ts","../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/domain.d.ts","../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/events.d.ts","../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/fs.d.ts","../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/http.d.ts","../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/http2.d.ts","../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/https.d.ts","../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/inspector.d.ts","../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/module.d.ts","../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/net.d.ts","../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/os.d.ts","../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/path.d.ts","../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/perf_hooks.d.ts","../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/process.d.ts","../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/punycode.d.ts","../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/querystring.d.ts","../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/readline.d.ts","../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/repl.d.ts","../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/stream.d.ts","../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/string_decoder.d.ts","../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/timers.d.ts","../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/tls.d.ts","../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/trace_events.d.ts","../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/tty.d.ts","../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/url.d.ts","../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/util.d.ts","../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/v8.d.ts","../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/vm.d.ts","../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/worker_threads.d.ts","../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/zlib.d.ts","../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/ts3.6/base.d.ts","../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/assert.d.ts","../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/base.d.ts","../../../../../node_modules/.pnpm/@types+node@10.17.48/node_modules/@types/node/index.d.ts","../../../../../node_modules/.pnpm/@babel+types@7.12.1/node_modules/@babel/types/lib/index.d.ts","../../../../../node_modules/.pnpm/@types+babel__generator@7.6.2/node_modules/@types/babel__generator/index.d.ts","../../../../../node_modules/.pnpm/@types+babel__traverse@7.0.15/node_modules/@types/babel__traverse/index.d.ts","../../../../../node_modules/.pnpm/@babel+parser@7.12.3/node_modules/@babel/parser/typings/babel-parser.d.ts","../../../../../node_modules/.pnpm/@types+babel__template@7.0.3/node_modules/@types/babel__template/index.d.ts","../../../../../node_modules/.pnpm/@types+babel__core@7.1.10/node_modules/@types/babel__core/index.d.ts","../../../../../node_modules/.pnpm/magic-string@0.25.7/node_modules/magic-string/index.d.ts","../../../../../node_modules/.pnpm/@types+buble@0.19.2/node_modules/@types/buble/index.d.ts","../../../../../node_modules/.pnpm/@types+keyv@3.1.2/node_modules/@types/keyv/index.d.ts","../../../../../node_modules/.pnpm/@types+http-cache-semantics@4.0.1/node_modules/@types/http-cache-semantics/index.d.ts","../../../../../node_modules/.pnpm/@types+responselike@1.0.0/node_modules/@types/responselike/index.d.ts","../../../../../node_modules/.pnpm/@types+cacheable-request@6.0.2/node_modules/@types/cacheable-request/index.d.ts","../../../../../node_modules/.pnpm/@types+conventional-commits-parser@3.0.2/node_modules/@types/conventional-commits-parser/index.d.ts","../../../../../node_modules/.pnpm/@types+d3-dsv@1.2.1/node_modules/@types/d3-dsv/index.d.ts","../../../../../node_modules/.pnpm/@types+eslint@7.2.4/node_modules/@types/eslint/helpers.d.ts","../../../../../node_modules/.pnpm/@types+json-schema@7.0.6/node_modules/@types/json-schema/index.d.ts","../../../../../node_modules/.pnpm/@types+estree@0.0.45/node_modules/@types/estree/index.d.ts","../../../../../node_modules/.pnpm/@types+eslint@7.2.4/node_modules/@types/eslint/index.d.ts","../../../../../node_modules/.pnpm/@types+minimatch@3.0.3/node_modules/@types/minimatch/index.d.ts","../../../../../node_modules/.pnpm/@types+glob@7.1.3/node_modules/@types/glob/index.d.ts","../../../../../node_modules/.pnpm/@types+json5@0.0.29/node_modules/@types/json5/index.d.ts","../../../../../node_modules/.pnpm/@types+minimist@1.2.2/node_modules/@types/minimist/index.d.ts","../../../../../node_modules/.pnpm/@types+normalize-package-data@2.4.0/node_modules/@types/normalize-package-data/index.d.ts","../../../../../node_modules/.pnpm/@types+parse-json@4.0.0/node_modules/@types/parse-json/index.d.ts","../../../../../node_modules/.pnpm/@types+picomatch@2.2.1/node_modules/@types/picomatch/parse.d.ts","../../../../../node_modules/.pnpm/@types+picomatch@2.2.1/node_modules/@types/picomatch/constants.d.ts","../../../../../node_modules/.pnpm/@types+picomatch@2.2.1/node_modules/@types/picomatch/index.d.ts","../../../../../node_modules/.pnpm/@types+q@1.5.4/node_modules/@types/q/index.d.ts","../../../../../node_modules/.pnpm/@types+resolve@1.17.1/node_modules/@types/resolve/index.d.ts","../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/semver.d.ts","../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/parse.d.ts","../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/valid.d.ts","../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/clean.d.ts","../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/inc.d.ts","../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/diff.d.ts","../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/major.d.ts","../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/minor.d.ts","../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/patch.d.ts","../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/prerelease.d.ts","../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/compare.d.ts","../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/rcompare.d.ts","../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/compare-loose.d.ts","../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/compare-build.d.ts","../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/sort.d.ts","../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/rsort.d.ts","../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/gt.d.ts","../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/lt.d.ts","../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/eq.d.ts","../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/neq.d.ts","../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/gte.d.ts","../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/lte.d.ts","../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/cmp.d.ts","../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/coerce.d.ts","../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/comparator.d.ts","../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/classes/range.d.ts","../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/functions/satisfies.d.ts","../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/max-satisfying.d.ts","../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/min-satisfying.d.ts","../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/to-comparators.d.ts","../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/min-version.d.ts","../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/valid.d.ts","../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/outside.d.ts","../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/gtr.d.ts","../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/ltr.d.ts","../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/intersects.d.ts","../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/simplify.d.ts","../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/ranges/subset.d.ts","../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/internals/identifiers.d.ts","../../../../../node_modules/.pnpm/@types+semver@7.3.7/node_modules/@types/semver/index.d.ts","../../../../../node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/source-map.d.ts","../../../../../node_modules/.pnpm/@types+source-map-support@0.5.4/node_modules/@types/source-map-support/index.d.ts","../../../../../node_modules/.pnpm/@types+yargs-parser@20.2.1/node_modules/@types/yargs-parser/index.d.ts"],"fileInfos":["2dc8c927c9c162a773c6bb3cdc4f3286c23f10eedc67414028f9cb5951610f60",{"version":"f5c28122bee592cfaf5c72ed7bcc47f453b79778ffa6e301f45d21a0970719d4","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06",{"version":"3f149f903dd20dfeb7c80e228b659f0e436532de772469980dbd00702cc05cc1","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"181f1784c6c10b751631b24ce60c7f78b20665db4550b335be179217bacc0d5f","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"cd483c056da900716879771893a3c9772b66c3c88f8943b4205aec738a94b1d0","affectsGlobalScope":true},{"version":"c37f8a49593a0030eecb51bbfa270e709bec9d79a6cc3bb851ef348d4e6b26f8","affectsGlobalScope":true},{"version":"dc13372d005136feb44d8fa670d0a80d674b3964fe29dc30e693c9836c997006","affectsGlobalScope":true},{"version":"829fcfff513ac68aae602034a6e0d2e30a2f4fa32881157ba6a3002bc949f685","affectsGlobalScope":true},"138476cfdccbb9e2c7e06602bc216af843a56c4f3469a79106bc660ba94bd66a","fe892fea1e75a442fffb4a604d7eeb451e858787a9f2f01c4e83bf12a3b5048d","d5c80b931928fbd06f967ce4bdca24fbb37523773ac2c7c87458a689154351fb","fcd718b2feb2820a9844536a1a2fbc77a3da90820e02894d40f879a789f46560","525c8fc510d9632d2a0a9de2d41c3ac1cdd79ff44d3b45c6d81cacabb683528d","ece75b9bfc916f9ccc4e8a9ddee1dda5c987804fbe3b60a01fc120fae731c2ce","ec0f794b64a4f5f5f364fe6e55b61fc13c827db39d97f5366890570eb9f4c238","a1dc9cfe8be39cbcef62692510b450ab35553ef39382715c88763d0c477704a9","05e732266b5a36789fd9eb846b1f45fec1b6e318b740e3f20fc22fd95f9ebf31","ae3487bdb9b50c1d8bbeb6b55c8b2b9aa79bbc46d7afbc3483169ad8750c4304","c53b63229a0b7e9d64347c4fc975dd52a9e9a81f9be099f5a21220e2a1276d28","1733741cf2adc5926ac58c66004268cdc3d34b2ff6250f5114db14253ea02ce1","40a80f579e92750f3e695b44a704f8d44d331a67d77623f2e57914da1369d68e","b6b09f944889a23f19eba6e0f112030e55160c5e1a225012ab2349c582ba5595","152af7c23ec219f632afa2d861abc65993f56cd39a4f3a4018515dbc05950a74","3a0bdc4c5b6f84a1abb5356d7a7fa1f96ac6c5b5646eec3ef2b33c1ed095e155","03394bf8deb8781b490ae9266a843fbdf00647947d79e25fcbf1d89a9e9c8a66","56a15cc211894d79aa44cbb46c276bfd3f10458a61bff2dec99114db8a7e71e3","1a5366b0d4d0153955fd85777c72d35979dabc0537649da6eade09007c0d080a","61c84c3b0eb6e60196d15ae5e21793a1d4241c547f0bdd0529ffae838d1a073c","272522db288a7e03f14ff930407b776357082efce20369ea42239a57af9c7f81","3a8848a9c307429b861402cc69bc472ffe0c05b86474fc158723169161e16389","3f6a1fd73c9dc3bd7f4b79bc075297ca6527904df69b0f2c2c94e4c4c7d9a32c","8969e0b4d22ca77ad011c8fc4a25ec5d515bdfae4ecbd22608ed0d5c38829c1e","81ef2751228318b1c7c6b35ccae2ea39ef275add30319e746bfd4658208a0519","0811662f95fabfc05b8f1cefcc46b351092cfc7d2a3e849475c51e2578c5c485","0cc45ab68b66bc63c9a0bc4f097c9f5b734c62190695ebd5b696dc3a4e2ecb3b","17e157df6125098a1a34eb4d201ee4ac03bbe97e471ab5627bb2c40fce555948","b40652bf8ce4a18133b31349086523b219724dca8df3448c1a0742528e7ad5b9","4bdb7b15b3f9a3ee0b856c7b991d0e522f8ce92f7b66ae8ac00e61d1269dd10a","978aecd2e6bc2ac094e9a35eda98ff8586713857b3655e7c98ca5ed8f7d50662","a185b8e0d7a4ae078a79339d63e98177813aac39256f69f788eaf5c360aa756f","c6b71a0585467900820167370738cfc256e9635471725a7ba1d24a3a262984e5","8bf10278b5c28698a73f800fde911bcc33d405a15f7bddab1c4ade637b69a822","e880a08fbb0d9ee2f733f9183f4d1bdb75bc9e0e64060a8a1fc30540791fcded","f1864a5689182a1f21b69642af5f6d78cbffc6315c3cfa3cc2874d15c762be9b","69fc4a10650eff3416ba5c2f7ce71744734928a7135ebe5a63c61d2d03ca3ec3","13918848c4e07d1094164112bd7fd151d61cbb949ceef340a2a4595cd609afb6","9af6a9de7bd818e68c4236f20027ff4b19387c2269a6952945d1a716c177cc4d","3492a5620a0fbba5440a103853048035eb7949bbad4257341c188e74e82c3aa7","e61a21e9418f279bc480394a94d1581b2dee73747adcbdef999b6737e34d721b","99904fb1a722345db92cce12df63dd0037081a4e1201519398a88e587659544a","3eb8ad25895d53cc6229dc83decbc338d649ed6f3d5b537c9966293b056b1f57","b25c5f2970d06c729f464c0aeaa64b1a5b5f1355aa93554bb5f9c199b8624b1e","ef91066d2057cca50511e3af2d4aa54e07913a15f9cee1748f256139318eb413","8678956904af215fe917b2df07b6c54f876fa64eb1f8a158e4ff38404cef3ff4","3e0a34f7207431d967dc32d593d1cda0c23975e9484bc8895b39d96ffca4a0d8","7df3163944694feeac63067632a8dc2e2dea1350119ec8b43df277af69198369","df66dd87e5338e59ca0550af424ba22c59a8f4b30b20a214b6ed250562b7c755","bf6148950ca5307411c2ae98561f3b845c8cd31c330e731a6822bf52ff757bf6","4a8b6680f577878255690971bbfe6ec951ece19a0c86a493e66a715762d04db2","cab425b5559edac18327eb2c3c0f47e7e9f71b667290b7689faafd28aac69eae","3cfb0cb51cc2c2e1b313d7c4df04dbf7e5bda0a133c6b309bf6af77cf614b971","f992cd6cc0bcbaa4e6c810468c90f2d8595f8c6c3cf050c806397d3de8585562","2733d9c68999f6fb4a8e853f4266b40b1e91ef7ae97a35d82014a732f9f3584b","74462625c7e9df5d67a9fcdf5985322e35c707e71d515e12026900f4883d3145",{"version":"f345b0888d003fd69cb32bad3a0aa04c615ccafc572019e4bd86a52bd5e49e46","affectsGlobalScope":true},"b2be568d8ce95fcb26eebd04c035d94825655fdf689bf67d799f5ff8cbbb1024","6a38e250306ceccbab257d11b846d5bd12491157d20901fa01afe4050c93c1b5","be337886c0b7b94a0cec462da9d6136abfda99d51b4cd67830351cd691285387","1d1e6bd176eee5970968423d7e215bfd66828b6db8d54d17afec05a831322633","393137c76bd922ba70a2f8bf1ade4f59a16171a02fb25918c168d48875b0cfb0","96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","c9ad058b2cc9ce6dc2ed92960d6d009e8c04bef46d3f5312283debca6869f613","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","5584625db3efba4676489babcea1571f537559d80aa39da9aae4c5965657766a","c0ad01cd660e5b8478c46ba9eda9bb60057de0744b3436fab3ce1ab764109da9","39352f2e555338f98ec13e2f19fe1abc19dffc1e500462051f7a030e2f1394ad","f9a2dd6a6084665f093ed0e9664b8e673be2a45e342a59dd4e0e4e552e68a9ad","8a19491eba2108d5c333c249699f40aff05ad312c04a17504573b27d91f0aede","d9e55d93aa33fad61bd5c63800972d00ba8879ec5d29f6f3bce67d16d86abc33","2ac9c8332c5f8510b8bdd571f8271e0f39b0577714d5e95c1e79a12b2616f069","42c21aa963e7b86fa00801d96e88b36803188018d5ad91db2a9101bccd40b3ff","d31eb848cdebb4c55b4893b335a7c0cca95ad66dee13cbb7d0893810c0a9c301","77c1d91a129ba60b8c405f9f539e42df834afb174fe0785f89d92a2c7c16b77a","c544d81603149987796b24cca297c965db427b84b2580fb27e52fb37ddc1f470","906c751ef5822ec0dadcea2f0e9db64a33fb4ee926cc9f7efa38afe5d5371b2a","5387c049e9702f2d2d7ece1a74836a14b47fbebe9bbeb19f94c580a37c855351","c68391fb9efad5d99ff332c65b1606248c4e4a9f1dd9a087204242b56c7126d6","e9cf02252d3a0ced987d24845dcb1f11c1be5541f17e5daa44c6de2d18138d0c","e8b02b879754d85f48489294f99147aeccc352c760d95a6fe2b6e49cd400b2fe","9f6908ab3d8a86c68b86e38578afc7095114e66b2fc36a2a96e9252aac3998e0","0eedb2344442b143ddcd788f87096961cd8572b64f10b4afc3356aa0460171c6","9eb2875a1e4c583066af7d6194ea8162191b2756e5d87ccb3c562fdf74d06869","c68baff4d8ba346130e9753cefe2e487a16731bf17e05fdacc81e8c9a26aae9d","2cd15528d8bb5d0453aa339b4b52e0696e8b07e790c153831c642c3dea5ac8af","479d622e66283ffa9883fbc33e441f7fc928b2277ff30aacbec7b7761b4e9579","ade307876dc5ca267ca308d09e737b611505e015c535863f22420a11fffc1c54","f8cdefa3e0dee639eccbe9794b46f90291e5fd3989fcba60d2f08fde56179fb9","86c5a62f99aac7053976e317dbe9acb2eaf903aaf3d2e5bb1cafe5c2df7b37a8","2b300954ce01a8343866f737656e13243e86e5baef51bd0631b21dcef1f6e954","a2d409a9ffd872d6b9d78ead00baa116bbc73cfa959fce9a2f29d3227876b2a1","b288936f560cd71f4a6002953290de9ff8dfbfbf37f5a9391be5c83322324898","61178a781ef82e0ff54f9430397e71e8f365fc1e3725e0e5346f2de7b0d50dfa","6a6ccb37feb3aad32d9be026a3337db195979cd5727a616fc0f557e974101a54","6eef5113135a0f2bbac8259909a5bbb7666bcde022c28f4ab95145623cbe1f72","058b8dd97b7c67b6bf33e7bda7b1e247b019b675d4b6449d14ac002091a8b4f8","89c8a7b88c378663a8124664f2d9b8c2887e186b55aa066edf6d67177ca1aa04","5a30ba65ad753eb2ef65355dbb3011b28b192cb9df2ef0b5f595b51ca7faf353","5192f9a6469f849e0863616b668fde54bcd6704394b4bfbd115691865f66d761","f41d30972724714763a2698ae949fbc463afb203b5fa7c4ad7e4de0871129a17","0123340327efb174818f4b78bf6a9b12f8470754e6afac9e4d32a2ad27521f7b","9795e0a3a45d5b6f1a791ee54b7c8b58bc931e8900966cea2dff9c5bae56073b","5890be29879d02424b7654f40592915189034948f7a18c5ad121c006d4e92811","0ab49086f10c75a1cb3b18bffe799dae021774146d8a2d5a4bb42dda67b64f9b","81c77839e152b8f715ec67b0a8b910bcc2d6cf916794c3519f8798c40efd12ac","a868a534ba1c2ca9060b8a13b0ffbbbf78b4be7b0ff80d8c75b02773f7192c29","464843c00fb3dd4735b28255c5c9fe713f16b8e47a3db09ba1647687440f7aef","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","d0f6d36b2d86f934560c48d8bfdc7ab60c67cfb2ab6dc1916706aa68e83d6dc2","2887592574fcdfd087647c539dcb0fbe5af2521270dad4a37f9d17c16190d579","1384902f0cccc5a9f9c0d65d93c093f6b9f77c949bf823f511b617cb8bc20fb5","f7e133b20ee2669b6c0e5d7f0cd510868c57cd64b283e68c7f598e30ce9d76d2"],"options":{"emitDeclarationOnly":false,"importHelpers":true,"inlineSources":true,"module":99,"noEmitHelpers":true,"skipLibCheck":true,"sourceMap":true},"fileIdsList":[[77],[77,78,79,80,81],[77,80],[83],[45,47,67,76,85,86,87],[61,76],[91,92,93],[45,76,95],[45,76],[73,74],[45,52,61],[37,45,52],[61],[43,45,52],[45],[45,61,67],[45,52,61,67],[45,46,47,52,61,64,67],[45,47,64,67],[73,75],[43,45,61],[35],[45,61],[59,68,70],[41,43,52,61],[34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72],[52],[58],[101,102],[76],[47,61,76],[106,145],[106,130,145],[145],[106],[106,131,145],[106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144],[131,145],[146]],"referencedMap":[[80,1],[82,2],[78,1],[81,3],[79,1],[84,4],[88,5],[89,6],[94,7],[96,8],[85,9],[75,10],[37,11],[38,12],[41,13],[42,14],[44,15],[46,16],[47,17],[48,18],[49,19],[76,20],[50,15],[52,21],[55,22],[59,23],[60,24],[61,15],[64,25],[73,26],[66,27],[67,28],[71,23],[72,13],[103,29],[105,30],[87,31],[130,32],[131,33],[106,34],[109,34],[128,32],[129,32],[119,35],[118,35],[116,32],[111,32],[124,32],[122,32],[126,32],[110,32],[123,32],[127,32],[112,32],[113,32],[125,32],[107,32],[114,32],[115,32],[117,32],[121,32],[132,36],[120,32],[108,32],[145,37],[139,36],[141,38],[140,36],[133,36],[134,36],[136,36],[138,36],[142,38],[143,38],[135,38],[137,38],[147,39]],"exportedModulesMap":[[80,1],[82,2],[78,1],[81,3],[79,1],[84,4],[88,5],[89,6],[94,7],[96,8],[85,9],[75,10],[37,11],[38,12],[41,13],[42,14],[44,15],[46,16],[47,17],[48,18],[49,19],[76,20],[50,15],[52,21],[55,22],[59,23],[60,24],[61,15],[64,25],[73,26],[66,27],[67,28],[71,23],[72,13],[103,29],[105,30],[87,31],[130,32],[131,33],[106,34],[109,34],[128,32],[129,32],[119,35],[118,35],[116,32],[111,32],[124,32],[122,32],[126,32],[110,32],[123,32],[127,32],[112,32],[113,32],[125,32],[107,32],[114,32],[115,32],[117,32],[121,32],[132,36],[120,32],[108,32],[145,37],[139,36],[141,38],[140,36],[133,36],[134,36],[136,36],[138,36],[142,38],[143,38],[135,38],[137,38],[147,39]],"semanticDiagnosticsPerFile":[80,77,82,78,81,79,84,88,89,90,91,94,93,96,86,92,97,85,95,98,74,35,75,36,37,38,39,40,41,42,43,44,45,46,34,47,48,49,76,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,73,66,67,68,69,70,71,72,99,100,102,103,101,104,105,87,130,131,106,109,128,129,119,118,116,111,124,122,126,110,123,127,112,113,125,107,114,115,117,121,132,120,108,145,144,139,141,140,133,134,136,138,142,143,135,137,147,148,83,146,1,7,11,10,3,12,13,14,15,16,17,18,19,4,5,23,20,21,22,24,25,26,6,27,28,29,30,31,2,32,9,8,33]},"version":"4.7.3"} \ No newline at end of file diff --git a/packages/typescript/test/fixtures/nodenext-resolution/index.ts b/packages/typescript/test/fixtures/nodenext-resolution/index.ts new file mode 100644 index 000000000..0c0d1749c --- /dev/null +++ b/packages/typescript/test/fixtures/nodenext-resolution/index.ts @@ -0,0 +1,4 @@ +import foo from 'foo'; + +const bar: string = foo; +console.log(bar); diff --git a/packages/typescript/test/fixtures/nodenext-resolution/node_modules/foo/index.d.cts b/packages/typescript/test/fixtures/nodenext-resolution/node_modules/foo/index.d.cts new file mode 100644 index 000000000..da5e19a0e --- /dev/null +++ b/packages/typescript/test/fixtures/nodenext-resolution/node_modules/foo/index.d.cts @@ -0,0 +1,2 @@ +declare const foo: number; +export = foo; diff --git a/packages/typescript/test/fixtures/nodenext-resolution/node_modules/foo/index.d.ts b/packages/typescript/test/fixtures/nodenext-resolution/node_modules/foo/index.d.ts new file mode 100644 index 000000000..aa0022cdb --- /dev/null +++ b/packages/typescript/test/fixtures/nodenext-resolution/node_modules/foo/index.d.ts @@ -0,0 +1,2 @@ +declare const foo: string; +export default foo; diff --git a/packages/typescript/test/fixtures/nodenext-resolution/node_modules/foo/index.js b/packages/typescript/test/fixtures/nodenext-resolution/node_modules/foo/index.js new file mode 100644 index 000000000..60c6c8d8b --- /dev/null +++ b/packages/typescript/test/fixtures/nodenext-resolution/node_modules/foo/index.js @@ -0,0 +1 @@ +export default "foo"; diff --git a/packages/typescript/test/fixtures/nodenext-resolution/node_modules/foo/package.json b/packages/typescript/test/fixtures/nodenext-resolution/node_modules/foo/package.json new file mode 100644 index 000000000..2756bec92 --- /dev/null +++ b/packages/typescript/test/fixtures/nodenext-resolution/node_modules/foo/package.json @@ -0,0 +1,10 @@ +{ + "type": "module", + "exports": { + "types": { + "require": "./index.d.cts", + "default": "./index.d.ts" + }, + "default": "./index.js" + } +} diff --git a/packages/typescript/test/fixtures/nodenext-resolution/package.json b/packages/typescript/test/fixtures/nodenext-resolution/package.json new file mode 100644 index 000000000..3dbc1ca59 --- /dev/null +++ b/packages/typescript/test/fixtures/nodenext-resolution/package.json @@ -0,0 +1,3 @@ +{ + "type": "module" +} diff --git a/packages/typescript/test/fixtures/nodenext-resolution/tsconfig.json b/packages/typescript/test/fixtures/nodenext-resolution/tsconfig.json new file mode 100644 index 000000000..cb2baa6ac --- /dev/null +++ b/packages/typescript/test/fixtures/nodenext-resolution/tsconfig.json @@ -0,0 +1,5 @@ +{ + "compilerOptions": { + "module": "nodenext" + } +} diff --git a/packages/typescript/test/test.js b/packages/typescript/test/test.js index d72fea497..b75ccc1ed 100644 --- a/packages/typescript/test/test.js +++ b/packages/typescript/test/test.js @@ -28,6 +28,18 @@ test.serial('runs code through typescript', async (t) => { t.false(code.includes('const'), code); }); +test.serial('allows nodenext module', async (t) => { + const bundle = await rollup({ + input: 'fixtures/basic/main.ts', + plugins: [typescript({ tsconfig: 'fixtures/basic/tsconfig.json', module: 'nodenext' })], + onwarn + }); + const code = await getCode(bundle, outputOptions); + + t.false(code.includes('number'), code); + t.true(code.includes('const'), code); +}); + test.serial('runs code through typescript with compilerOptions', async (t) => { const bundle = await rollup({ input: 'fixtures/basic/main.ts', @@ -172,7 +184,9 @@ test.serial('throws for unsupported module types', async (t) => { ); t.true( - caughtError.message.includes("The module kind should be 'ES2015' or 'ESNext, found: 'AMD'"), + caughtError.message.includes( + "The module kind should be 'ES2015', 'ESNext', 'node16' or 'nodenext', found: 'AMD'" + ), `Unexpected error message: ${caughtError.message}` ); }); @@ -195,7 +209,7 @@ test.serial('warns for invalid module types', async (t) => { code: 'PLUGIN_WARNING', plugin: 'typescript', pluginCode: 'TS6046', - message: `@rollup/plugin-typescript TS6046: Argument for '--module' option must be: 'none', 'commonjs', 'amd', 'system', 'umd', 'es6', 'es2015', 'es2020', 'esnext'.` + message: `@rollup/plugin-typescript TS6046: Argument for '--module' option must be: 'none', 'commonjs', 'amd', 'system', 'umd', 'es6', 'es2015', 'es2020', 'es2022', 'esnext', 'node16', 'nodenext'.` } ]); }); @@ -1039,7 +1053,7 @@ test('supports custom transformers', async (t) => { return function removeOneParameter(source) { function visitor(node) { if (ts.isArrowFunction(node)) { - return ts.createArrowFunction( + return ts.factory.createArrowFunction( node.modifiers, node.typeParameters, [node.parameters[0]], @@ -1069,7 +1083,9 @@ test('supports custom transformers', async (t) => { return function enforceConstantReturn(source) { function visitor(node) { if (ts.isReturnStatement(node)) { - return ts.createReturn(ts.createNumericLiteral('1')); + return ts.factory.createReturnStatement( + ts.factory.createNumericLiteral('1') + ); } return ts.visitEachChild(node, visitor, context); @@ -1087,10 +1103,10 @@ test('supports custom transformers', async (t) => { return function fixDeclaration(source) { function visitor(node) { if (ts.isFunctionTypeNode(node)) { - return ts.createFunctionTypeNode( + return ts.factory.createFunctionTypeNode( node.typeParameters, [node.parameters[0]], - ts.createKeywordTypeNode(ts.SyntaxKind.NumberKeyword) + ts.factory.createKeywordTypeNode(ts.SyntaxKind.NumberKeyword) ); } @@ -1209,6 +1225,26 @@ test.serial('works when code is in src directory', async (t) => { ); }); +test.serial('correctly resolves types in a nodenext module', async (t) => { + const warnings = []; + const bundle = await rollup({ + input: 'fixtures/nodenext-resolution/index.ts', + plugins: [ + typescript({ + tsconfig: 'fixtures/nodenext-resolution/tsconfig.json' + }) + ], + onwarn({ toString, ...warning }) { + warnings.push(warning); + } + }); + const code = await getCode(bundle, outputOptions); + + t.true(code.includes('const bar = foo'), code); + t.is(warnings.length, 1); + t.is(warnings[0].code, 'UNRESOLVED_IMPORT'); +}); + test.serial('noForceEmit option defers to tsconfig.json for emitDeclarationOnly', async (t) => { const input = 'fixtures/noForceEmit/emitDeclarationOnly/main.ts'; const warnings = []; diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 0cdd7fee9..fa4effc66 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -28,7 +28,7 @@ importers: prettier-plugin-package: ^1.3.0 semver: ^7.3.2 source-map-support: ^0.5.19 - ts-node: 10.1.0 + ts-node: 10.8.1 tsconfig-paths: ^3.9.0 typescript: 4.3.5 write-pkg: ^4.0.0 @@ -59,7 +59,7 @@ importers: prettier-plugin-package: 1.3.0_prettier@2.2.1 semver: 7.3.2 source-map-support: 0.5.19 - ts-node: 10.1.0_typescript@4.3.5 + ts-node: 10.8.1_typescript@4.3.5 tsconfig-paths: 3.9.0 typescript: 4.3.5 write-pkg: 4.0.0 @@ -505,18 +505,18 @@ importers: buble: ^0.20.0 resolve: ^1.17.0 rollup: ^2.67.3 - typescript: ^4.2.2 + typescript: ^4.7.3 dependencies: '@rollup/pluginutils': 3.1.0_rollup@2.67.3 resolve: 1.18.1 devDependencies: '@rollup/plugin-buble': 0.21.3_rollup@2.67.3 '@rollup/plugin-commonjs': 11.1.0_rollup@2.67.3 - '@rollup/plugin-typescript': 5.0.2_rollup@2.67.3+typescript@4.2.4 + '@rollup/plugin-typescript': 5.0.2_rollup@2.67.3+typescript@4.7.3 '@types/node': 10.17.48 buble: 0.20.0 rollup: 2.67.3 - typescript: 4.2.4 + typescript: 4.7.3 packages/url: specifiers: @@ -1953,6 +1953,13 @@ packages: arrify: 1.0.1 dev: true + /@cspotcode/source-map-support/0.8.1: + resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==} + engines: {node: '>=12'} + dependencies: + '@jridgewell/trace-mapping': 0.3.9 + dev: true + /@eslint/eslintrc/0.2.0: resolution: {integrity: sha512-+cIGPCBdLCzqxdtwppswP+zTsH9BOIGzAeKfBIbtb4gW/giMlfMwP0HUSFfhzh20f9u8uZ8hOp62+4GPquTbwQ==} engines: {node: ^10.12.0 || >=12.0.0} @@ -2019,6 +2026,22 @@ packages: engines: {node: '>=8'} dev: true + /@jridgewell/resolve-uri/3.0.7: + resolution: {integrity: sha512-8cXDaBBHOr2pQ7j77Y6Vp5VDT2sIqWyWQ56TjEq4ih/a4iST3dItRe8Q9fp0rrIl9DoKhWQtUQz/YpOxLkXbNA==} + engines: {node: '>=6.0.0'} + dev: true + + /@jridgewell/sourcemap-codec/1.4.13: + resolution: {integrity: sha512-GryiOJmNcWbovBxTfZSF71V/mXbgcV3MewDe3kIMCLyIh5e7SKAeUZs+rMnJ8jkMolZ/4/VsdBmMrw3l+VdZ3w==} + dev: true + + /@jridgewell/trace-mapping/0.3.9: + resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==} + dependencies: + '@jridgewell/resolve-uri': 3.0.7 + '@jridgewell/sourcemap-codec': 1.4.13 + dev: true + /@nodelib/fs.scandir/2.1.3: resolution: {integrity: sha512-eGmwYQn3gxo4r7jdQnkrrN6bY478C3P+a/y72IJukF8LjB6ZHeB3c+Ehacj3sYeSmUXGlnA67/PmbM9CVwL7Dw==} engines: {node: '>= 8'} @@ -2238,7 +2261,7 @@ packages: typescript: 4.1.2 dev: true - /@rollup/plugin-typescript/5.0.2_rollup@2.67.3+typescript@4.2.4: + /@rollup/plugin-typescript/5.0.2_rollup@2.67.3+typescript@4.7.3: resolution: {integrity: sha512-CkS028Itwjqm1uLbFVfpJgtVtnNvZ+og/m6UlNRR5wOOnNTWPcVQzOu5xGdEX+WWJxdvWIqUq2uR/RBt2ZipWg==} engines: {node: '>=8.0.0'} peerDependencies: @@ -2249,7 +2272,7 @@ packages: '@rollup/pluginutils': 3.1.0_rollup@2.67.3 resolve: 1.18.1 rollup: 2.67.3 - typescript: 4.2.4 + typescript: 4.7.3 dev: true /@rollup/plugin-typescript/6.0.0_rollup@2.67.3+typescript@4.1.2: @@ -2394,8 +2417,8 @@ packages: resolution: {integrity: sha512-509r2+yARFfHHE7T6Puu2jjkoycftovhXRqW328PDXTVGKihlb1P8Z9mMZH04ebyajfRY7dedfGynlrFHJUQCg==} dev: true - /@tsconfig/node16/1.0.1: - resolution: {integrity: sha512-FTgBI767POY/lKNDNbIzgAX6miIDBs6NTCbdlDb8TrWovHsSvaVIZDlTqym29C6UqhzwcJx4CYr+AlrMywA0cA==} + /@tsconfig/node16/1.0.2: + resolution: {integrity: sha512-eZxlbI8GZscaGS7kkc/trHTT5xgrjH3/1n2JDwusC9iahPKWMRvRjJSAN5mCXviuTGQ/lHnhvv8Q1YTpnfz9gA==} dev: true /@types/babel__core/7.1.10: @@ -2865,6 +2888,11 @@ packages: engines: {node: '>=0.4.0'} dev: true + /acorn-walk/8.2.0: + resolution: {integrity: sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==} + engines: {node: '>=0.4.0'} + dev: true + /acorn/6.4.2: resolution: {integrity: sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==} engines: {node: '>=0.4.0'} @@ -2887,6 +2915,12 @@ packages: hasBin: true dev: true + /acorn/8.7.1: + resolution: {integrity: sha512-Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A==} + engines: {node: '>=0.4.0'} + hasBin: true + dev: true + /aggregate-error/3.1.0: resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==} engines: {node: '>=8'} @@ -8135,9 +8169,8 @@ packages: resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} dev: false - /ts-node/10.1.0_typescript@4.3.5: - resolution: {integrity: sha512-6szn3+J9WyG2hE+5W8e0ruZrzyk1uFLYye6IGMBadnOzDh8aP7t8CbFpsfCiEx2+wMixAhjFt7lOZC4+l+WbEA==} - engines: {node: '>=12.0.0'} + /ts-node/10.8.1_typescript@4.3.5: + resolution: {integrity: sha512-Wwsnao4DQoJsN034wePSg5nZiw4YKXf56mPIAeD6wVmiv+RytNSWqc2f3fKvcUoV+Yn2+yocD71VOfQHbmVX4g==} hasBin: true peerDependencies: '@swc/core': '>=1.2.50' @@ -8150,16 +8183,19 @@ packages: '@swc/wasm': optional: true dependencies: + '@cspotcode/source-map-support': 0.8.1 '@tsconfig/node10': 1.0.8 '@tsconfig/node12': 1.0.9 '@tsconfig/node14': 1.0.1 - '@tsconfig/node16': 1.0.1 + '@tsconfig/node16': 1.0.2 + acorn: 8.7.1 + acorn-walk: 8.2.0 arg: 4.1.3 create-require: 1.1.1 diff: 4.0.2 make-error: 1.3.6 - source-map-support: 0.5.19 typescript: 4.3.5 + v8-compile-cache-lib: 3.0.1 yn: 3.1.1 dev: true @@ -8277,14 +8313,14 @@ packages: hasBin: true dev: true - /typescript/4.2.4: - resolution: {integrity: sha512-V+evlYHZnQkaz8TRBuxTA92yZBPotr5H+WhQ7bD3hZUndx5tGOa1fuCgeSjxAzM1RiN5IzvadIXTVefuuwZCRg==} + /typescript/4.3.5: + resolution: {integrity: sha512-DqQgihaQ9cUrskJo9kIyW/+g0Vxsk8cDtZ52a3NGh0YNTfpUSArXSohyUGnvbPazEPLu398C0UxmKSOrPumUzA==} engines: {node: '>=4.2.0'} hasBin: true dev: true - /typescript/4.3.5: - resolution: {integrity: sha512-DqQgihaQ9cUrskJo9kIyW/+g0Vxsk8cDtZ52a3NGh0YNTfpUSArXSohyUGnvbPazEPLu398C0UxmKSOrPumUzA==} + /typescript/4.7.3: + resolution: {integrity: sha512-WOkT3XYvrpXx4vMMqlD+8R8R37fZkjyLGlxavMc4iB8lrl8L0DeTcHbYgw/v0N/z9wAFsgBhcsF0ruoySS22mA==} engines: {node: '>=4.2.0'} hasBin: true dev: true @@ -8386,6 +8422,10 @@ packages: hasBin: true dev: true + /v8-compile-cache-lib/3.0.1: + resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==} + dev: true + /v8-compile-cache/2.1.1: resolution: {integrity: sha512-8OQ9CL+VWyt3JStj7HX7/ciTL2V3Rl1Wf5OL+SNTm0yK1KvtReVulksyeRnCANHHuUxHlQig+JJDlUhBt1NQDQ==} dev: false