diff --git a/.changeset/moody-dancers-nail.md b/.changeset/moody-dancers-nail.md new file mode 100644 index 0000000..8dd4d10 --- /dev/null +++ b/.changeset/moody-dancers-nail.md @@ -0,0 +1,5 @@ +--- +"@arethetypeswrong/cli": minor +--- + +Report relevant build tools detected in package.json `devDependencies` diff --git a/.changeset/thin-moles-sort.md b/.changeset/thin-moles-sort.md new file mode 100644 index 0000000..1748e7e --- /dev/null +++ b/.changeset/thin-moles-sort.md @@ -0,0 +1,5 @@ +--- +"@arethetypeswrong/core": minor +--- + +Add `buildTools` property to `Analysis` (a pick of `devDependencies`) diff --git a/packages/cli/src/render/typed.ts b/packages/cli/src/render/typed.ts index ed8877c..26fc810 100644 --- a/packages/cli/src/render/typed.ts +++ b/packages/cli/src/render/typed.ts @@ -21,6 +21,23 @@ export async function typed(analysis: core.Analysis, opts: Opts) { headerIds: false, }); + console.log(`${analysis.packageName} v${analysis.packageVersion}`); + if (analysis.types.kind === "@types") { + console.log(`${analysis.types.packageName} v${analysis.types.packageVersion}`); + } + console.log(); + if (Object.keys(analysis.buildTools).length) { + console.log("Build tools:"); + console.log( + Object.entries(analysis.buildTools) + .map(([tool, version]) => { + return `- ${tool}@${version}`; + }) + .join("\n") + ); + console.log(); + } + if (opts.ignoreRules && opts.ignoreRules.length) { console.log( chalk.gray( @@ -31,12 +48,6 @@ export async function typed(analysis: core.Analysis, opts: Opts) { ); } - console.log(`${analysis.packageName} v${analysis.packageVersion}`); - if (analysis.types.kind === "@types") { - console.log(`${analysis.types.packageName} v${analysis.types.packageVersion}`); - } - console.log(); - if (opts.summary) { const defaultSummary = marked(!opts.emoji ? " No problems found" : " No problems found ๐ŸŒŸ"); const summaryTexts = Object.keys(grouped).map((kind) => { diff --git a/packages/cli/test/snapshots/@apollo__client-3.7.16.tgz.md b/packages/cli/test/snapshots/@apollo__client-3.7.16.tgz.md index 96effc4..7514ab9 100644 --- a/packages/cli/test/snapshots/@apollo__client-3.7.16.tgz.md +++ b/packages/cli/test/snapshots/@apollo__client-3.7.16.tgz.md @@ -6,6 +6,10 @@ $ attw @apollo__client-3.7.16.tgz -f table-flipped @apollo/client v3.7.16 +Build tools: +- typescript@5.0.4 +- rollup@2.79.1 + ๐Ÿ‘บ Import resolved to an ESM type declaration file, but a CommonJS JavaScript file. https://github.com/arethetypeswrong/arethetypeswrong.github.io/blob/main/docs/problems/FalseESM.md โš ๏ธ A require call resolved to an ESM JavaScript file, which is an error in Node and some bundlers. CommonJS consumers will need to use a dynamic import. https://github.com/arethetypeswrong/arethetypeswrong.github.io/blob/main/docs/problems/CJSResolvesToESM.md diff --git a/packages/cli/test/snapshots/@ice__app@3.2.6.tgz.md b/packages/cli/test/snapshots/@ice__app@3.2.6.tgz.md index d75c6ad..1f99010 100644 --- a/packages/cli/test/snapshots/@ice__app@3.2.6.tgz.md +++ b/packages/cli/test/snapshots/@ice__app@3.2.6.tgz.md @@ -6,6 +6,10 @@ $ attw @ice__app@3.2.6.tgz -f table-flipped @ice/app v3.2.6 +Build tools: +- webpack@^5.86.0 +- esbuild@^0.17.16 + โš ๏ธ A require call resolved to an ESM JavaScript file, which is an error in Node and some bundlers. CommonJS consumers will need to use a dynamic import. https://github.com/arethetypeswrong/arethetypeswrong.github.io/blob/main/docs/problems/CJSResolvesToESM.md ๐Ÿ’€ Import failed to resolve to type declarations or JavaScript files. https://github.com/arethetypeswrong/arethetypeswrong.github.io/blob/main/docs/problems/NoResolution.md diff --git a/packages/cli/test/snapshots/@reduxjs__toolkit@2.0.0-beta.0.tgz.md b/packages/cli/test/snapshots/@reduxjs__toolkit@2.0.0-beta.0.tgz.md index eaa0119..1cf5238 100644 --- a/packages/cli/test/snapshots/@reduxjs__toolkit@2.0.0-beta.0.tgz.md +++ b/packages/cli/test/snapshots/@reduxjs__toolkit@2.0.0-beta.0.tgz.md @@ -6,6 +6,10 @@ $ attw @reduxjs__toolkit@2.0.0-beta.0.tgz -f table-flipped @reduxjs/toolkit v2.0.0-beta.0 +Build tools: +- typescript@~4.9 +- @microsoft/api-extractor@^7.13.2 + ๐ŸŽญ Import resolved to a CommonJS type declaration file, but an ESM JavaScript file. https://github.com/arethetypeswrong/arethetypeswrong.github.io/blob/main/docs/problems/FalseCJS.md ๐Ÿฅด Import found in a type declaration file failed to resolve. Either this indicates that runtime resolution errors will occur, or (more likely) the types misrepresent the contents of the JavaScript files. https://github.com/arethetypeswrong/arethetypeswrong.github.io/blob/main/docs/problems/InternalResolutionError.md diff --git a/packages/cli/test/snapshots/ajv@8.12.0.tgz.md b/packages/cli/test/snapshots/ajv@8.12.0.tgz.md index 900fa61..1129684 100644 --- a/packages/cli/test/snapshots/ajv@8.12.0.tgz.md +++ b/packages/cli/test/snapshots/ajv@8.12.0.tgz.md @@ -6,6 +6,11 @@ $ attw ajv@8.12.0.tgz -f table-flipped ajv v8.12.0 +Build tools: +- typescript@^4.8.0 +- rollup@^2.44.0 +- @rollup/plugin-typescript@^10.0.1 + No problems found ๐ŸŒŸ diff --git a/packages/cli/test/snapshots/axios@1.4.0.tgz.md b/packages/cli/test/snapshots/axios@1.4.0.tgz.md index 31435de..8813aaa 100644 --- a/packages/cli/test/snapshots/axios@1.4.0.tgz.md +++ b/packages/cli/test/snapshots/axios@1.4.0.tgz.md @@ -6,6 +6,10 @@ $ attw axios@1.4.0.tgz -f table-flipped axios v1.4.0 +Build tools: +- typescript@^4.8.4 +- rollup@^2.67.0 + โ“ Wildcard subpaths cannot yet be analyzed by this tool. https://github.com/arethetypeswrong/arethetypeswrong.github.io/issues/40 ๐Ÿ’€ Import failed to resolve to type declarations or JavaScript files. https://github.com/arethetypeswrong/arethetypeswrong.github.io/blob/main/docs/problems/NoResolution.md diff --git a/packages/cli/test/snapshots/commander@10.0.1.tgz -f table.md b/packages/cli/test/snapshots/commander@10.0.1.tgz -f table.md index 4a7cc93..c89424b 100644 --- a/packages/cli/test/snapshots/commander@10.0.1.tgz -f table.md +++ b/packages/cli/test/snapshots/commander@10.0.1.tgz -f table.md @@ -6,6 +6,9 @@ $ attw commander@10.0.1.tgz -f table commander v10.0.1 +Build tools: +- typescript@^4.9.4 + ๐ŸŽญ Import resolved to a CommonJS type declaration file, but an ESM JavaScript file. https://github.com/arethetypeswrong/arethetypeswrong.github.io/blob/main/docs/problems/FalseCJS.md โŒ Import resolved to JavaScript files, but no type declarations were found. https://github.com/arethetypeswrong/arethetypeswrong.github.io/blob/main/docs/problems/UntypedResolution.md diff --git a/packages/cli/test/snapshots/node-html-parser@6.1.5.tgz.md b/packages/cli/test/snapshots/node-html-parser@6.1.5.tgz.md index 98b91c5..5ea1ceb 100644 --- a/packages/cli/test/snapshots/node-html-parser@6.1.5.tgz.md +++ b/packages/cli/test/snapshots/node-html-parser@6.1.5.tgz.md @@ -6,6 +6,9 @@ $ attw node-html-parser@6.1.5.tgz -f table-flipped node-html-parser v6.1.5 +Build tools: +- typescript@latest + ๐Ÿคจ CommonJS module simulates a default export with exports.default and exports.__esModule, but does not also set module.exports for compatibility with Node. Node, and some bundlers under certain conditions (https://andrewbranch.github.io/interop-test/#synthesizing-default-exports-for-cjs-modules), do not respect the __esModule marker, so accessing the intended default export will require a .default property access on the default import. https://github.com/arethetypeswrong/arethetypeswrong.github.io/blob/main/docs/problems/CJSOnlyExportsDefault.md diff --git a/packages/core/src/checkPackage.ts b/packages/core/src/checkPackage.ts index ed5d5a9..d769ad7 100644 --- a/packages/core/src/checkPackage.ts +++ b/packages/core/src/checkPackage.ts @@ -6,12 +6,14 @@ import type { Package } from "./createPackage.js"; import { createCompilerHosts, type CompilerHosts, CompilerHostWrapper } from "./multiCompilerHost.js"; import type { AnalysisTypes, + BuildTool, CheckResult, EntrypointInfo, EntrypointResolutionAnalysis, Resolution, ResolutionKind, } from "./types.js"; +import { allBuildTools } from "./utils.js"; export interface CheckPackageOptions { /** @@ -56,6 +58,7 @@ export async function checkPackage(pkg: Package, options?: CheckPackageOptions): packageName, packageVersion, types, + buildTools: getBuildTools(JSON.parse(pkg.readFile(`/node_modules/${packageName}/package.json`))), entrypoints: entrypointResolutions, problems: [...entrypointResolutionProblems, ...resolutionBasedFileProblems, ...fileProblems], }; @@ -221,3 +224,16 @@ function getEntrypointResolution( function unique(array: readonly T[]): T[] { return array.filter((value, index) => array.indexOf(value) === index); } + +function getBuildTools(packageJson: any): Partial> { + if (!packageJson.devDependencies) { + return {}; + } + const result: Partial> = {}; + for (const buildTool of allBuildTools) { + if (buildTool in packageJson.devDependencies) { + result[buildTool] = packageJson.devDependencies[buildTool]; + } + } + return result; +} diff --git a/packages/core/src/types.ts b/packages/core/src/types.ts index 7542536..8b21ee1 100644 --- a/packages/core/src/types.ts +++ b/packages/core/src/types.ts @@ -20,9 +20,25 @@ export interface TypesPackage { } export type AnalysisTypes = IncludedTypes | TypesPackage; +export type BuildTool = + | "@arethetypeswrong/cli" + | "typescript" + | "rollup" + | "@rollup/plugin-typescript" + | "@rollup/plugin-typescript2" + | "webpack" + | "esbuild" + | "parcel-bundler" + | "@preconstruct/cli" + | "vite" + | "snowpack" + | "microbundle" + | "@microsoft/api-extractor"; + export interface Analysis { packageName: string; packageVersion: string; + buildTools: Partial>; types: AnalysisTypes; entrypoints: Record; problems: Problem[]; diff --git a/packages/core/src/utils.ts b/packages/core/src/utils.ts index 5485dca..36a446b 100644 --- a/packages/core/src/utils.ts +++ b/packages/core/src/utils.ts @@ -1,6 +1,7 @@ import validatePackgeName from "validate-npm-package-name"; import { valid, validRange } from "semver"; import type { + BuildTool, EntrypointInfo, EntrypointResolutionAnalysis, EntrypointResolutionProblem, @@ -199,3 +200,19 @@ export function parsePackageSpec(input: string): Failable { data: { versionKind: "tag", name, version }, }; } + +export const allBuildTools = Object.keys({ + "@arethetypeswrong/cli": true, + typescript: true, + rollup: true, + "@rollup/plugin-typescript": true, + "@rollup/plugin-typescript2": true, + webpack: true, + esbuild: true, + "parcel-bundler": true, + "@preconstruct/cli": true, + vite: true, + snowpack: true, + microbundle: true, + "@microsoft/api-extractor": true, +} satisfies Record) as BuildTool[]; diff --git a/packages/core/test/snapshots.test.ts b/packages/core/test/snapshots.test.ts index d9eaa96..79477c3 100644 --- a/packages/core/test/snapshots.test.ts +++ b/packages/core/test/snapshots.test.ts @@ -39,16 +39,8 @@ describe("snapshots", async () => { const analysis = await checkPackage( typesTarball ? pkg.mergedWithTypes(createPackageFromTarballData(typesTarball)) : pkg ); - const snapshotURL = new URL(`../snapshots/${fixture}.md`, import.meta.url); - const expectedSnapshot = [ - `# ${fixture}`, - "", - "## Problems", - "", - "```json", - JSON.stringify(analysis.types ? analysis.problems : [], null, 2), - "```", - ].join("\n"); + const snapshotURL = new URL(`../snapshots/${fixture}.json`, import.meta.url); + const expectedSnapshot = JSON.stringify(analysis, null, 2) + "\n"; if ( await access(snapshotURL) diff --git a/packages/core/test/snapshots/@apollo__client-3.7.16.tgz.json b/packages/core/test/snapshots/@apollo__client-3.7.16.tgz.json new file mode 100644 index 0000000..a32c05b --- /dev/null +++ b/packages/core/test/snapshots/@apollo__client-3.7.16.tgz.json @@ -0,0 +1,15330 @@ +{ + "packageName": "@apollo/client", + "packageVersion": "3.7.16", + "types": { + "kind": "included" + }, + "buildTools": { + "typescript": "5.0.4", + "rollup": "2.79.1" + }, + "entrypoints": { + ".": { + "subpath": ".", + "resolutions": { + "node10": { + "name": ".", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/@apollo/client/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module '@apollo/client' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/@apollo/client/package.json'.", + "File '/node_modules/@apollo/client.ts' does not exist.", + "File '/node_modules/@apollo/client.tsx' does not exist.", + "File '/node_modules/@apollo/client.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field './index.d.ts' that references '/node_modules/@apollo/client/index.d.ts'.", + "File '/node_modules/@apollo/client/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client' was successfully resolved to '/node_modules/@apollo/client/index.d.ts' with Package ID '@apollo/client/index.d.ts@3.7.16'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/main.cjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module '@apollo/client' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/package.json'.", + "File '/node_modules/@apollo/client.ts' does not exist.", + "File '/node_modules/@apollo/client.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field './main.cjs' that references '/node_modules/@apollo/client/main.cjs'.", + "File '/node_modules/@apollo/client/main.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/main.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/main.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/main.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/main.cts' does not exist.", + "File '/node_modules/@apollo/client/main.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/main.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/main.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/index.ts' does not exist.", + "File '/node_modules/@apollo/client/index.tsx' does not exist.", + "Loading module '@apollo/client' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client.js' does not exist.", + "File '/node_modules/@apollo/client.jsx' does not exist.", + "'package.json' has 'main' field './main.cjs' that references '/node_modules/@apollo/client/main.cjs'.", + "File '/node_modules/@apollo/client/main.cjs' exists - use it as a name resolution result.", + "======== Module name '@apollo/client' was successfully resolved to '/node_modules/@apollo/client/main.cjs' with Package ID '@apollo/client/main.cjs@3.7.16'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/utilities/globals/DEV.d.ts", + "/node_modules/@apollo/client/utilities/globals/maybe.d.ts", + "/node_modules/@apollo/client/utilities/globals/global.d.ts", + "/node_modules/@apollo/client/utilities/globals/index.d.ts", + "/node_modules/@apollo/client/utilities/graphql/directives.d.ts", + "/node_modules/@apollo/client/utilities/graphql/fragments.d.ts", + "/node_modules/@apollo/client/utilities/graphql/getFromAST.d.ts", + "/node_modules/@apollo/client/utilities/graphql/storeUtils.d.ts", + "/node_modules/@apollo/client/utilities/graphql/transform.d.ts", + "/node_modules/@apollo/client/cache/core/types/Cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/entityStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fragmentRegistry.d.ts", + "/node_modules/@apollo/client/cache/inmemory/types.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fixPolyfills.d.ts", + "/node_modules/@apollo/client/cache/inmemory/reactiveVars.d.ts", + "/node_modules/@apollo/client/cache/inmemory/inMemoryCache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/object-canon.d.ts", + "/node_modules/@apollo/client/cache/inmemory/readFromStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/writeToStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/policies.d.ts", + "/node_modules/@apollo/client/cache/core/types/common.d.ts", + "/node_modules/@apollo/client/cache/core/types/DataProxy.d.ts", + "/node_modules/@apollo/client/cache/core/cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/helpers.d.ts", + "/node_modules/@apollo/client/cache/index.d.ts", + "/node_modules/@apollo/client/utilities/policies/pagination.d.ts", + "/node_modules/@apollo/client/utilities/observables/Observable.d.ts", + "/node_modules/@apollo/client/utilities/common/objects.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/cloneDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/maybeDeepFreeze.d.ts", + "/node_modules/@apollo/client/utilities/observables/iteration.d.ts", + "/node_modules/@apollo/client/utilities/observables/asyncMap.d.ts", + "/node_modules/@apollo/client/utilities/observables/Concast.d.ts", + "/node_modules/@apollo/client/utilities/observables/subclassing.d.ts", + "/node_modules/@apollo/client/utilities/common/arrays.d.ts", + "/node_modules/@apollo/client/utilities/common/errorHandling.d.ts", + "/node_modules/@apollo/client/utilities/common/canUse.d.ts", + "/node_modules/@apollo/client/utilities/common/compact.d.ts", + "/node_modules/@apollo/client/utilities/common/makeUniqueId.d.ts", + "/node_modules/@apollo/client/utilities/common/stringifyForDisplay.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeOptions.d.ts", + "/node_modules/@apollo/client/utilities/types/IsStrictlyAny.d.ts", + "/node_modules/@apollo/client/utilities/index.d.ts", + "/node_modules/@apollo/client/link/core/types.d.ts", + "/node_modules/@apollo/client/link/core/ApolloLink.d.ts", + "/node_modules/@apollo/client/link/core/empty.d.ts", + "/node_modules/@apollo/client/link/core/from.d.ts", + "/node_modules/@apollo/client/link/core/split.d.ts", + "/node_modules/@apollo/client/link/core/concat.d.ts", + "/node_modules/@apollo/client/link/core/execute.d.ts", + "/node_modules/@apollo/client/link/core/index.d.ts", + "/node_modules/@apollo/client/link/http/parseAndCheckHttpResponse.d.ts", + "/node_modules/@apollo/client/link/http/serializeFetchParameter.d.ts", + "/node_modules/@apollo/client/link/http/selectHttpOptionsAndBody.d.ts", + "/node_modules/@apollo/client/link/http/checkFetcher.d.ts", + "/node_modules/@apollo/client/link/http/createSignalIfSupported.d.ts", + "/node_modules/@apollo/client/link/http/selectURI.d.ts", + "/node_modules/@apollo/client/link/http/createHttpLink.d.ts", + "/node_modules/@apollo/client/link/http/HttpLink.d.ts", + "/node_modules/@apollo/client/link/http/rewriteURIForGET.d.ts", + "/node_modules/@apollo/client/link/http/index.d.ts", + "/node_modules/@apollo/client/core/networkStatus.d.ts", + "/node_modules/@apollo/client/link/utils/fromError.d.ts", + "/node_modules/@apollo/client/link/utils/toPromise.d.ts", + "/node_modules/@apollo/client/link/utils/fromPromise.d.ts", + "/node_modules/@apollo/client/link/utils/throwServerError.d.ts", + "/node_modules/@apollo/client/link/utils/validateOperation.d.ts", + "/node_modules/@apollo/client/link/utils/createOperation.d.ts", + "/node_modules/@apollo/client/link/utils/transformOperation.d.ts", + "/node_modules/@apollo/client/link/utils/index.d.ts", + "/node_modules/@apollo/client/errors/index.d.ts", + "/node_modules/@apollo/client/core/QueryInfo.d.ts", + "/node_modules/@apollo/client/core/LocalState.d.ts", + "/node_modules/@apollo/client/core/types.d.ts", + "/node_modules/@apollo/client/core/watchQueryOptions.d.ts", + "/node_modules/@apollo/client/core/QueryManager.d.ts", + "/node_modules/@apollo/client/core/ObservableQuery.d.ts", + "/node_modules/@apollo/client/core/ApolloClient.d.ts", + "/node_modules/@apollo/client/core/index.d.ts", + "/node_modules/@apollo/client/react/context/ApolloConsumer.d.ts", + "/node_modules/@apollo/client/react/ssr/getDataFromTree.d.ts", + "/node_modules/@apollo/client/react/ssr/renderToStringWithData.d.ts", + "/node_modules/@apollo/client/react/types/types.d.ts", + "/node_modules/@apollo/client/react/ssr/RenderPromises.d.ts", + "/node_modules/@apollo/client/react/ssr/index.d.ts", + "/node_modules/@apollo/client/react/context/ApolloContext.d.ts", + "/node_modules/@apollo/client/react/context/ApolloProvider.d.ts", + "/node_modules/@apollo/client/react/context/index.d.ts", + "/node_modules/@apollo/client/react/hooks/useApolloClient.d.ts", + "/node_modules/@apollo/client/react/hooks/useLazyQuery.d.ts", + "/node_modules/@apollo/client/react/hooks/useMutation.d.ts", + "/node_modules/@apollo/client/react/hooks/useQuery.d.ts", + "/node_modules/@apollo/client/react/hooks/useSubscription.d.ts", + "/node_modules/@apollo/client/react/hooks/useReactiveVar.d.ts", + "/node_modules/@apollo/client/react/hooks/useFragment.d.ts", + "/node_modules/@apollo/client/react/hooks/index.d.ts", + "/node_modules/@apollo/client/react/parser/index.d.ts", + "/node_modules/@apollo/client/react/index.d.ts", + "/node_modules/@apollo/client/index.d.ts" + ] + }, + "node16-cjs": { + "name": ".", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/@apollo/client/index.d.ts", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/@apollo/client/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist.", + "Loading module '@apollo/client' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/@apollo/client/package.json'.", + "File '/node_modules/@apollo/client.ts' does not exist.", + "File '/node_modules/@apollo/client.tsx' does not exist.", + "File '/node_modules/@apollo/client.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field './index.d.ts' that references '/node_modules/@apollo/client/index.d.ts'.", + "File '/node_modules/@apollo/client/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client' was successfully resolved to '/node_modules/@apollo/client/index.d.ts' with Package ID '@apollo/client/index.d.ts@3.7.16'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/main.cjs", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "extension", + "reasonFileName": "/node_modules/@apollo/client/main.cjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist.", + "Loading module '@apollo/client' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/package.json'.", + "File '/node_modules/@apollo/client.ts' does not exist.", + "File '/node_modules/@apollo/client.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field './main.cjs' that references '/node_modules/@apollo/client/main.cjs'.", + "File '/node_modules/@apollo/client/main.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/main.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/main.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/main.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/main.cts' does not exist.", + "File '/node_modules/@apollo/client/main.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/main.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/main.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/index.ts' does not exist.", + "File '/node_modules/@apollo/client/index.tsx' does not exist.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client.js' does not exist.", + "File '/node_modules/@apollo/client.jsx' does not exist.", + "'package.json' has 'main' field './main.cjs' that references '/node_modules/@apollo/client/main.cjs'.", + "File '/node_modules/@apollo/client/main.cjs' exists - use it as a name resolution result.", + "======== Module name '@apollo/client' was successfully resolved to '/node_modules/@apollo/client/main.cjs' with Package ID '@apollo/client/main.cjs@3.7.16'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/index.d.ts" + ] + }, + "node16-esm": { + "name": ".", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/@apollo/client/index.d.ts", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/@apollo/client/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field './index.d.ts' that references '/node_modules/@apollo/client/index.d.ts'.", + "File '/node_modules/@apollo/client/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client' was successfully resolved to '/node_modules/@apollo/client/index.d.ts' with Package ID '@apollo/client/index.d.ts@3.7.16'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/main.cjs", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "extension", + "reasonFileName": "/node_modules/@apollo/client/main.cjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field './main.cjs' that references '/node_modules/@apollo/client/main.cjs'.", + "File '/node_modules/@apollo/client/main.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/main.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/main.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/main.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/main.cts' does not exist.", + "Directory '/node_modules/@apollo/client/main.cjs' does not exist, skipping all lookups in it.", + "File name '/node_modules/@apollo/client/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/@apollo/client/index.ts' does not exist.", + "File '/node_modules/@apollo/client/index.tsx' does not exist.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field './main.cjs' that references '/node_modules/@apollo/client/main.cjs'.", + "File '/node_modules/@apollo/client/main.cjs' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field './main.cjs' that references '/node_modules/@apollo/client/main.cjs'.", + "File '/node_modules/@apollo/client/main.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/main.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/main.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/main.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/main.cts' does not exist.", + "Directory '/node_modules/@apollo/client/main.cjs' does not exist, skipping all lookups in it.", + "File name '/node_modules/@apollo/client/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/@apollo/client/index.ts' does not exist.", + "File '/node_modules/@apollo/client/index.tsx' does not exist.", + "======== Module name '@apollo/client' was successfully resolved to '/node_modules/@apollo/client/main.cjs' with Package ID '@apollo/client/main.cjs@3.7.16'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/index.d.ts" + ] + }, + "bundler": { + "name": ".", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/@apollo/client/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist.", + "Loading module '@apollo/client' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/@apollo/client/package.json'.", + "File '/node_modules/@apollo/client.ts' does not exist.", + "File '/node_modules/@apollo/client.tsx' does not exist.", + "File '/node_modules/@apollo/client.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field './index.d.ts' that references '/node_modules/@apollo/client/index.d.ts'.", + "File '/node_modules/@apollo/client/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client' was successfully resolved to '/node_modules/@apollo/client/index.d.ts' with Package ID '@apollo/client/index.d.ts@3.7.16'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/main.cjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist.", + "Loading module '@apollo/client' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/package.json'.", + "File '/node_modules/@apollo/client.ts' does not exist.", + "File '/node_modules/@apollo/client.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field './main.cjs' that references '/node_modules/@apollo/client/main.cjs'.", + "File '/node_modules/@apollo/client/main.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/main.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/main.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/main.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/main.cts' does not exist.", + "File '/node_modules/@apollo/client/main.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/main.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/main.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/index.ts' does not exist.", + "File '/node_modules/@apollo/client/index.tsx' does not exist.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client.js' does not exist.", + "File '/node_modules/@apollo/client.jsx' does not exist.", + "'package.json' has 'main' field './main.cjs' that references '/node_modules/@apollo/client/main.cjs'.", + "File '/node_modules/@apollo/client/main.cjs' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client.ts' does not exist.", + "File '/node_modules/@apollo/client.tsx' does not exist.", + "'package.json' has 'main' field './main.cjs' that references '/node_modules/@apollo/client/main.cjs'.", + "File '/node_modules/@apollo/client/main.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/main.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/main.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/main.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/main.cts' does not exist.", + "File '/node_modules/@apollo/client/main.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/main.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/main.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/index.ts' does not exist.", + "File '/node_modules/@apollo/client/index.tsx' does not exist.", + "======== Module name '@apollo/client' was successfully resolved to '/node_modules/@apollo/client/main.cjs' with Package ID '@apollo/client/main.cjs@3.7.16'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/utilities/globals/DEV.d.ts", + "/node_modules/@apollo/client/utilities/globals/maybe.d.ts", + "/node_modules/@apollo/client/utilities/globals/global.d.ts", + "/node_modules/@apollo/client/utilities/globals/index.d.ts", + "/node_modules/@apollo/client/utilities/graphql/directives.d.ts", + "/node_modules/@apollo/client/utilities/graphql/fragments.d.ts", + "/node_modules/@apollo/client/utilities/graphql/getFromAST.d.ts", + "/node_modules/@apollo/client/utilities/graphql/storeUtils.d.ts", + "/node_modules/@apollo/client/utilities/graphql/transform.d.ts", + "/node_modules/@apollo/client/cache/core/types/Cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/entityStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fragmentRegistry.d.ts", + "/node_modules/@apollo/client/cache/inmemory/types.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fixPolyfills.d.ts", + "/node_modules/@apollo/client/cache/inmemory/reactiveVars.d.ts", + "/node_modules/@apollo/client/cache/inmemory/inMemoryCache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/object-canon.d.ts", + "/node_modules/@apollo/client/cache/inmemory/readFromStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/writeToStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/policies.d.ts", + "/node_modules/@apollo/client/cache/core/types/common.d.ts", + "/node_modules/@apollo/client/cache/core/types/DataProxy.d.ts", + "/node_modules/@apollo/client/cache/core/cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/helpers.d.ts", + "/node_modules/@apollo/client/cache/index.d.ts", + "/node_modules/@apollo/client/utilities/policies/pagination.d.ts", + "/node_modules/@apollo/client/utilities/observables/Observable.d.ts", + "/node_modules/@apollo/client/utilities/common/objects.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/cloneDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/maybeDeepFreeze.d.ts", + "/node_modules/@apollo/client/utilities/observables/iteration.d.ts", + "/node_modules/@apollo/client/utilities/observables/asyncMap.d.ts", + "/node_modules/@apollo/client/utilities/observables/Concast.d.ts", + "/node_modules/@apollo/client/utilities/observables/subclassing.d.ts", + "/node_modules/@apollo/client/utilities/common/arrays.d.ts", + "/node_modules/@apollo/client/utilities/common/errorHandling.d.ts", + "/node_modules/@apollo/client/utilities/common/canUse.d.ts", + "/node_modules/@apollo/client/utilities/common/compact.d.ts", + "/node_modules/@apollo/client/utilities/common/makeUniqueId.d.ts", + "/node_modules/@apollo/client/utilities/common/stringifyForDisplay.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeOptions.d.ts", + "/node_modules/@apollo/client/utilities/types/IsStrictlyAny.d.ts", + "/node_modules/@apollo/client/utilities/index.d.ts", + "/node_modules/@apollo/client/link/core/types.d.ts", + "/node_modules/@apollo/client/link/core/ApolloLink.d.ts", + "/node_modules/@apollo/client/link/core/empty.d.ts", + "/node_modules/@apollo/client/link/core/from.d.ts", + "/node_modules/@apollo/client/link/core/split.d.ts", + "/node_modules/@apollo/client/link/core/concat.d.ts", + "/node_modules/@apollo/client/link/core/execute.d.ts", + "/node_modules/@apollo/client/link/core/index.d.ts", + "/node_modules/@apollo/client/link/http/parseAndCheckHttpResponse.d.ts", + "/node_modules/@apollo/client/link/http/serializeFetchParameter.d.ts", + "/node_modules/@apollo/client/link/http/selectHttpOptionsAndBody.d.ts", + "/node_modules/@apollo/client/link/http/checkFetcher.d.ts", + "/node_modules/@apollo/client/link/http/createSignalIfSupported.d.ts", + "/node_modules/@apollo/client/link/http/selectURI.d.ts", + "/node_modules/@apollo/client/link/http/createHttpLink.d.ts", + "/node_modules/@apollo/client/link/http/HttpLink.d.ts", + "/node_modules/@apollo/client/link/http/rewriteURIForGET.d.ts", + "/node_modules/@apollo/client/link/http/index.d.ts", + "/node_modules/@apollo/client/core/networkStatus.d.ts", + "/node_modules/@apollo/client/link/utils/fromError.d.ts", + "/node_modules/@apollo/client/link/utils/toPromise.d.ts", + "/node_modules/@apollo/client/link/utils/fromPromise.d.ts", + "/node_modules/@apollo/client/link/utils/throwServerError.d.ts", + "/node_modules/@apollo/client/link/utils/validateOperation.d.ts", + "/node_modules/@apollo/client/link/utils/createOperation.d.ts", + "/node_modules/@apollo/client/link/utils/transformOperation.d.ts", + "/node_modules/@apollo/client/link/utils/index.d.ts", + "/node_modules/@apollo/client/errors/index.d.ts", + "/node_modules/@apollo/client/core/QueryInfo.d.ts", + "/node_modules/@apollo/client/core/LocalState.d.ts", + "/node_modules/@apollo/client/core/types.d.ts", + "/node_modules/@apollo/client/core/watchQueryOptions.d.ts", + "/node_modules/@apollo/client/core/QueryManager.d.ts", + "/node_modules/@apollo/client/core/ObservableQuery.d.ts", + "/node_modules/@apollo/client/core/ApolloClient.d.ts", + "/node_modules/@apollo/client/core/index.d.ts", + "/node_modules/@apollo/client/react/context/ApolloConsumer.d.ts", + "/node_modules/@apollo/client/react/ssr/getDataFromTree.d.ts", + "/node_modules/@apollo/client/react/ssr/renderToStringWithData.d.ts", + "/node_modules/@apollo/client/react/types/types.d.ts", + "/node_modules/@apollo/client/react/ssr/RenderPromises.d.ts", + "/node_modules/@apollo/client/react/ssr/index.d.ts", + "/node_modules/@apollo/client/react/context/ApolloContext.d.ts", + "/node_modules/@apollo/client/react/context/ApolloProvider.d.ts", + "/node_modules/@apollo/client/react/context/index.d.ts", + "/node_modules/@apollo/client/react/hooks/useApolloClient.d.ts", + "/node_modules/@apollo/client/react/hooks/useLazyQuery.d.ts", + "/node_modules/@apollo/client/react/hooks/useMutation.d.ts", + "/node_modules/@apollo/client/react/hooks/useQuery.d.ts", + "/node_modules/@apollo/client/react/hooks/useSubscription.d.ts", + "/node_modules/@apollo/client/react/hooks/useReactiveVar.d.ts", + "/node_modules/@apollo/client/react/hooks/useFragment.d.ts", + "/node_modules/@apollo/client/react/hooks/index.d.ts", + "/node_modules/@apollo/client/react/parser/index.d.ts", + "/node_modules/@apollo/client/react/index.d.ts", + "/node_modules/@apollo/client/index.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + }, + "./cache": { + "subpath": "./cache", + "resolutions": { + "node10": { + "name": "./cache", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/@apollo/client/cache/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/cache' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module '@apollo/client/cache' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/@apollo/client/cache/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/cache.ts' does not exist.", + "File '/node_modules/@apollo/client/cache.tsx' does not exist.", + "File '/node_modules/@apollo/client/cache.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/cache/index.d.ts'.", + "File '/node_modules/@apollo/client/cache/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/cache' was successfully resolved to '/node_modules/@apollo/client/cache/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/cache/cache.cjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/cache' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module '@apollo/client/cache' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/cache/package.json'.", + "File '/node_modules/@apollo/client/cache.ts' does not exist.", + "File '/node_modules/@apollo/client/cache.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'cache.cjs' that references '/node_modules/@apollo/client/cache/cache.cjs'.", + "File '/node_modules/@apollo/client/cache/cache.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/cache/cache.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/cache/cache.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/cache/cache.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/cache/cache.cts' does not exist.", + "File '/node_modules/@apollo/client/cache/cache.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/cache/cache.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/cache/cache.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/cache/index.ts' does not exist.", + "File '/node_modules/@apollo/client/cache/index.tsx' does not exist.", + "Loading module '@apollo/client/cache' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/cache/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/cache.js' does not exist.", + "File '/node_modules/@apollo/client/cache.jsx' does not exist.", + "'package.json' has 'main' field 'cache.cjs' that references '/node_modules/@apollo/client/cache/cache.cjs'.", + "File '/node_modules/@apollo/client/cache/cache.cjs' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/cache' was successfully resolved to '/node_modules/@apollo/client/cache/cache.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/utilities/globals/DEV.d.ts", + "/node_modules/@apollo/client/utilities/globals/maybe.d.ts", + "/node_modules/@apollo/client/utilities/globals/global.d.ts", + "/node_modules/@apollo/client/utilities/globals/index.d.ts", + "/node_modules/@apollo/client/utilities/graphql/directives.d.ts", + "/node_modules/@apollo/client/utilities/graphql/fragments.d.ts", + "/node_modules/@apollo/client/utilities/graphql/getFromAST.d.ts", + "/node_modules/@apollo/client/utilities/graphql/storeUtils.d.ts", + "/node_modules/@apollo/client/utilities/graphql/transform.d.ts", + "/node_modules/@apollo/client/utilities/policies/pagination.d.ts", + "/node_modules/@apollo/client/utilities/observables/Observable.d.ts", + "/node_modules/@apollo/client/utilities/common/objects.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/cloneDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/maybeDeepFreeze.d.ts", + "/node_modules/@apollo/client/utilities/observables/iteration.d.ts", + "/node_modules/@apollo/client/utilities/observables/asyncMap.d.ts", + "/node_modules/@apollo/client/utilities/observables/Concast.d.ts", + "/node_modules/@apollo/client/utilities/observables/subclassing.d.ts", + "/node_modules/@apollo/client/utilities/common/arrays.d.ts", + "/node_modules/@apollo/client/link/http/parseAndCheckHttpResponse.d.ts", + "/node_modules/@apollo/client/link/http/serializeFetchParameter.d.ts", + "/node_modules/@apollo/client/link/http/selectHttpOptionsAndBody.d.ts", + "/node_modules/@apollo/client/link/http/checkFetcher.d.ts", + "/node_modules/@apollo/client/link/http/createSignalIfSupported.d.ts", + "/node_modules/@apollo/client/link/http/selectURI.d.ts", + "/node_modules/@apollo/client/link/http/createHttpLink.d.ts", + "/node_modules/@apollo/client/link/http/HttpLink.d.ts", + "/node_modules/@apollo/client/link/http/rewriteURIForGET.d.ts", + "/node_modules/@apollo/client/link/http/index.d.ts", + "/node_modules/@apollo/client/core/networkStatus.d.ts", + "/node_modules/@apollo/client/link/utils/fromError.d.ts", + "/node_modules/@apollo/client/link/utils/toPromise.d.ts", + "/node_modules/@apollo/client/link/utils/fromPromise.d.ts", + "/node_modules/@apollo/client/link/utils/throwServerError.d.ts", + "/node_modules/@apollo/client/link/utils/validateOperation.d.ts", + "/node_modules/@apollo/client/link/utils/createOperation.d.ts", + "/node_modules/@apollo/client/link/utils/transformOperation.d.ts", + "/node_modules/@apollo/client/link/utils/index.d.ts", + "/node_modules/@apollo/client/errors/index.d.ts", + "/node_modules/@apollo/client/core/QueryInfo.d.ts", + "/node_modules/@apollo/client/core/LocalState.d.ts", + "/node_modules/@apollo/client/core/types.d.ts", + "/node_modules/@apollo/client/core/watchQueryOptions.d.ts", + "/node_modules/@apollo/client/core/QueryManager.d.ts", + "/node_modules/@apollo/client/cache/core/types/DataProxy.d.ts", + "/node_modules/@apollo/client/cache/core/types/Cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/entityStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fragmentRegistry.d.ts", + "/node_modules/@apollo/client/cache/inmemory/types.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fixPolyfills.d.ts", + "/node_modules/@apollo/client/cache/inmemory/reactiveVars.d.ts", + "/node_modules/@apollo/client/cache/inmemory/inMemoryCache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/object-canon.d.ts", + "/node_modules/@apollo/client/cache/inmemory/readFromStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/writeToStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/policies.d.ts", + "/node_modules/@apollo/client/cache/core/types/common.d.ts", + "/node_modules/@apollo/client/core/ObservableQuery.d.ts", + "/node_modules/@apollo/client/core/ApolloClient.d.ts", + "/node_modules/@apollo/client/core/index.d.ts", + "/node_modules/@apollo/client/link/core/types.d.ts", + "/node_modules/@apollo/client/link/core/ApolloLink.d.ts", + "/node_modules/@apollo/client/link/core/empty.d.ts", + "/node_modules/@apollo/client/link/core/from.d.ts", + "/node_modules/@apollo/client/link/core/split.d.ts", + "/node_modules/@apollo/client/link/core/concat.d.ts", + "/node_modules/@apollo/client/link/core/execute.d.ts", + "/node_modules/@apollo/client/link/core/index.d.ts", + "/node_modules/@apollo/client/utilities/common/errorHandling.d.ts", + "/node_modules/@apollo/client/utilities/common/canUse.d.ts", + "/node_modules/@apollo/client/utilities/common/compact.d.ts", + "/node_modules/@apollo/client/utilities/common/makeUniqueId.d.ts", + "/node_modules/@apollo/client/utilities/common/stringifyForDisplay.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeOptions.d.ts", + "/node_modules/@apollo/client/utilities/types/IsStrictlyAny.d.ts", + "/node_modules/@apollo/client/utilities/index.d.ts", + "/node_modules/@apollo/client/cache/core/cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/helpers.d.ts", + "/node_modules/@apollo/client/cache/index.d.ts" + ] + }, + "node16-cjs": { + "name": "./cache", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/@apollo/client/cache/index.d.ts", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/@apollo/client/cache/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/cache' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/cache' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/@apollo/client/cache/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/cache.ts' does not exist.", + "File '/node_modules/@apollo/client/cache.tsx' does not exist.", + "File '/node_modules/@apollo/client/cache.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/cache/index.d.ts'.", + "File '/node_modules/@apollo/client/cache/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/cache' was successfully resolved to '/node_modules/@apollo/client/cache/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/cache/cache.cjs", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "extension", + "reasonFileName": "/node_modules/@apollo/client/cache/cache.cjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/cache' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/cache' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/cache/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/cache.ts' does not exist.", + "File '/node_modules/@apollo/client/cache.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'cache.cjs' that references '/node_modules/@apollo/client/cache/cache.cjs'.", + "File '/node_modules/@apollo/client/cache/cache.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/cache/cache.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/cache/cache.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/cache/cache.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/cache/cache.cts' does not exist.", + "File '/node_modules/@apollo/client/cache/cache.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/cache/cache.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/cache/cache.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/cache/index.ts' does not exist.", + "File '/node_modules/@apollo/client/cache/index.tsx' does not exist.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/cache/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/cache.js' does not exist.", + "File '/node_modules/@apollo/client/cache.jsx' does not exist.", + "'package.json' has 'main' field 'cache.cjs' that references '/node_modules/@apollo/client/cache/cache.cjs'.", + "File '/node_modules/@apollo/client/cache/cache.cjs' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/cache' was successfully resolved to '/node_modules/@apollo/client/cache/cache.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/cache/index.d.ts" + ] + }, + "node16-esm": { + "name": "./cache", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/@apollo/client/cache/index.d.ts", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/@apollo/client/cache/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/cache' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/cache' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/@apollo/client/cache/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/cache/index.d.ts'.", + "File '/node_modules/@apollo/client/cache/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/cache' was successfully resolved to '/node_modules/@apollo/client/cache/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/cache/cache.cjs", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "extension", + "reasonFileName": "/node_modules/@apollo/client/cache/cache.cjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/cache' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/cache' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/cache/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'cache.cjs' that references '/node_modules/@apollo/client/cache/cache.cjs'.", + "File '/node_modules/@apollo/client/cache/cache.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/cache/cache.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/cache/cache.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/cache/cache.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/cache/cache.cts' does not exist.", + "Directory '/node_modules/@apollo/client/cache/cache.cjs' does not exist, skipping all lookups in it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/cache/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'cache.cjs' that references '/node_modules/@apollo/client/cache/cache.cjs'.", + "File '/node_modules/@apollo/client/cache/cache.cjs' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/cache' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/cache/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'cache.cjs' that references '/node_modules/@apollo/client/cache/cache.cjs'.", + "File '/node_modules/@apollo/client/cache/cache.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/cache/cache.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/cache/cache.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/cache/cache.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/cache/cache.cts' does not exist.", + "Directory '/node_modules/@apollo/client/cache/cache.cjs' does not exist, skipping all lookups in it.", + "======== Module name '@apollo/client/cache' was successfully resolved to '/node_modules/@apollo/client/cache/cache.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/cache/index.d.ts" + ] + }, + "bundler": { + "name": "./cache", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/@apollo/client/cache/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/cache' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/cache' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/@apollo/client/cache/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/cache.ts' does not exist.", + "File '/node_modules/@apollo/client/cache.tsx' does not exist.", + "File '/node_modules/@apollo/client/cache.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/cache/index.d.ts'.", + "File '/node_modules/@apollo/client/cache/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/cache' was successfully resolved to '/node_modules/@apollo/client/cache/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/cache/cache.cjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/cache' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/cache' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/cache/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/cache.ts' does not exist.", + "File '/node_modules/@apollo/client/cache.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'cache.cjs' that references '/node_modules/@apollo/client/cache/cache.cjs'.", + "File '/node_modules/@apollo/client/cache/cache.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/cache/cache.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/cache/cache.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/cache/cache.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/cache/cache.cts' does not exist.", + "File '/node_modules/@apollo/client/cache/cache.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/cache/cache.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/cache/cache.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/cache/index.ts' does not exist.", + "File '/node_modules/@apollo/client/cache/index.tsx' does not exist.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/cache/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/cache.js' does not exist.", + "File '/node_modules/@apollo/client/cache.jsx' does not exist.", + "'package.json' has 'main' field 'cache.cjs' that references '/node_modules/@apollo/client/cache/cache.cjs'.", + "File '/node_modules/@apollo/client/cache/cache.cjs' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/cache' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/cache/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/cache.ts' does not exist.", + "File '/node_modules/@apollo/client/cache.tsx' does not exist.", + "'package.json' has 'main' field 'cache.cjs' that references '/node_modules/@apollo/client/cache/cache.cjs'.", + "File '/node_modules/@apollo/client/cache/cache.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/cache/cache.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/cache/cache.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/cache/cache.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/cache/cache.cts' does not exist.", + "File '/node_modules/@apollo/client/cache/cache.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/cache/cache.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/cache/cache.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/cache/index.ts' does not exist.", + "File '/node_modules/@apollo/client/cache/index.tsx' does not exist.", + "======== Module name '@apollo/client/cache' was successfully resolved to '/node_modules/@apollo/client/cache/cache.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/utilities/globals/DEV.d.ts", + "/node_modules/@apollo/client/utilities/globals/maybe.d.ts", + "/node_modules/@apollo/client/utilities/globals/global.d.ts", + "/node_modules/@apollo/client/utilities/globals/index.d.ts", + "/node_modules/@apollo/client/utilities/graphql/directives.d.ts", + "/node_modules/@apollo/client/utilities/graphql/fragments.d.ts", + "/node_modules/@apollo/client/utilities/graphql/getFromAST.d.ts", + "/node_modules/@apollo/client/utilities/graphql/storeUtils.d.ts", + "/node_modules/@apollo/client/utilities/graphql/transform.d.ts", + "/node_modules/@apollo/client/utilities/policies/pagination.d.ts", + "/node_modules/@apollo/client/utilities/observables/Observable.d.ts", + "/node_modules/@apollo/client/utilities/common/objects.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/cloneDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/maybeDeepFreeze.d.ts", + "/node_modules/@apollo/client/utilities/observables/iteration.d.ts", + "/node_modules/@apollo/client/utilities/observables/asyncMap.d.ts", + "/node_modules/@apollo/client/utilities/observables/Concast.d.ts", + "/node_modules/@apollo/client/utilities/observables/subclassing.d.ts", + "/node_modules/@apollo/client/utilities/common/arrays.d.ts", + "/node_modules/@apollo/client/link/http/parseAndCheckHttpResponse.d.ts", + "/node_modules/@apollo/client/link/http/serializeFetchParameter.d.ts", + "/node_modules/@apollo/client/link/http/selectHttpOptionsAndBody.d.ts", + "/node_modules/@apollo/client/link/http/checkFetcher.d.ts", + "/node_modules/@apollo/client/link/http/createSignalIfSupported.d.ts", + "/node_modules/@apollo/client/link/http/selectURI.d.ts", + "/node_modules/@apollo/client/link/http/createHttpLink.d.ts", + "/node_modules/@apollo/client/link/http/HttpLink.d.ts", + "/node_modules/@apollo/client/link/http/rewriteURIForGET.d.ts", + "/node_modules/@apollo/client/link/http/index.d.ts", + "/node_modules/@apollo/client/core/networkStatus.d.ts", + "/node_modules/@apollo/client/link/utils/fromError.d.ts", + "/node_modules/@apollo/client/link/utils/toPromise.d.ts", + "/node_modules/@apollo/client/link/utils/fromPromise.d.ts", + "/node_modules/@apollo/client/link/utils/throwServerError.d.ts", + "/node_modules/@apollo/client/link/utils/validateOperation.d.ts", + "/node_modules/@apollo/client/link/utils/createOperation.d.ts", + "/node_modules/@apollo/client/link/utils/transformOperation.d.ts", + "/node_modules/@apollo/client/link/utils/index.d.ts", + "/node_modules/@apollo/client/errors/index.d.ts", + "/node_modules/@apollo/client/core/QueryInfo.d.ts", + "/node_modules/@apollo/client/core/LocalState.d.ts", + "/node_modules/@apollo/client/core/types.d.ts", + "/node_modules/@apollo/client/core/watchQueryOptions.d.ts", + "/node_modules/@apollo/client/core/QueryManager.d.ts", + "/node_modules/@apollo/client/cache/core/types/DataProxy.d.ts", + "/node_modules/@apollo/client/cache/core/types/Cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/entityStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fragmentRegistry.d.ts", + "/node_modules/@apollo/client/cache/inmemory/types.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fixPolyfills.d.ts", + "/node_modules/@apollo/client/cache/inmemory/reactiveVars.d.ts", + "/node_modules/@apollo/client/cache/inmemory/inMemoryCache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/object-canon.d.ts", + "/node_modules/@apollo/client/cache/inmemory/readFromStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/writeToStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/policies.d.ts", + "/node_modules/@apollo/client/cache/core/types/common.d.ts", + "/node_modules/@apollo/client/core/ObservableQuery.d.ts", + "/node_modules/@apollo/client/core/ApolloClient.d.ts", + "/node_modules/@apollo/client/core/index.d.ts", + "/node_modules/@apollo/client/link/core/types.d.ts", + "/node_modules/@apollo/client/link/core/ApolloLink.d.ts", + "/node_modules/@apollo/client/link/core/empty.d.ts", + "/node_modules/@apollo/client/link/core/from.d.ts", + "/node_modules/@apollo/client/link/core/split.d.ts", + "/node_modules/@apollo/client/link/core/concat.d.ts", + "/node_modules/@apollo/client/link/core/execute.d.ts", + "/node_modules/@apollo/client/link/core/index.d.ts", + "/node_modules/@apollo/client/utilities/common/errorHandling.d.ts", + "/node_modules/@apollo/client/utilities/common/canUse.d.ts", + "/node_modules/@apollo/client/utilities/common/compact.d.ts", + "/node_modules/@apollo/client/utilities/common/makeUniqueId.d.ts", + "/node_modules/@apollo/client/utilities/common/stringifyForDisplay.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeOptions.d.ts", + "/node_modules/@apollo/client/utilities/types/IsStrictlyAny.d.ts", + "/node_modules/@apollo/client/utilities/index.d.ts", + "/node_modules/@apollo/client/cache/core/cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/helpers.d.ts", + "/node_modules/@apollo/client/cache/index.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + }, + "./core": { + "subpath": "./core", + "resolutions": { + "node10": { + "name": "./core", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/@apollo/client/core/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/core' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module '@apollo/client/core' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/@apollo/client/core/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/core.ts' does not exist.", + "File '/node_modules/@apollo/client/core.tsx' does not exist.", + "File '/node_modules/@apollo/client/core.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/core/index.d.ts'.", + "File '/node_modules/@apollo/client/core/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/core' was successfully resolved to '/node_modules/@apollo/client/core/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/core/core.cjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/core' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module '@apollo/client/core' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/core/package.json'.", + "File '/node_modules/@apollo/client/core.ts' does not exist.", + "File '/node_modules/@apollo/client/core.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'core.cjs' that references '/node_modules/@apollo/client/core/core.cjs'.", + "File '/node_modules/@apollo/client/core/core.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/core/core.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/core/core.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/core/core.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/core/core.cts' does not exist.", + "File '/node_modules/@apollo/client/core/core.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/core/core.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/core/core.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/core/index.ts' does not exist.", + "File '/node_modules/@apollo/client/core/index.tsx' does not exist.", + "Loading module '@apollo/client/core' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/core/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/core.js' does not exist.", + "File '/node_modules/@apollo/client/core.jsx' does not exist.", + "'package.json' has 'main' field 'core.cjs' that references '/node_modules/@apollo/client/core/core.cjs'.", + "File '/node_modules/@apollo/client/core/core.cjs' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/core' was successfully resolved to '/node_modules/@apollo/client/core/core.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/utilities/globals/DEV.d.ts", + "/node_modules/@apollo/client/utilities/globals/maybe.d.ts", + "/node_modules/@apollo/client/utilities/globals/global.d.ts", + "/node_modules/@apollo/client/utilities/globals/index.d.ts", + "/node_modules/@apollo/client/utilities/graphql/directives.d.ts", + "/node_modules/@apollo/client/utilities/graphql/fragments.d.ts", + "/node_modules/@apollo/client/utilities/graphql/getFromAST.d.ts", + "/node_modules/@apollo/client/utilities/graphql/storeUtils.d.ts", + "/node_modules/@apollo/client/utilities/graphql/transform.d.ts", + "/node_modules/@apollo/client/cache/core/types/Cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/entityStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fragmentRegistry.d.ts", + "/node_modules/@apollo/client/cache/inmemory/types.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fixPolyfills.d.ts", + "/node_modules/@apollo/client/cache/inmemory/reactiveVars.d.ts", + "/node_modules/@apollo/client/cache/inmemory/inMemoryCache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/object-canon.d.ts", + "/node_modules/@apollo/client/cache/inmemory/readFromStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/writeToStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/policies.d.ts", + "/node_modules/@apollo/client/cache/core/types/common.d.ts", + "/node_modules/@apollo/client/cache/core/types/DataProxy.d.ts", + "/node_modules/@apollo/client/cache/core/cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/helpers.d.ts", + "/node_modules/@apollo/client/cache/index.d.ts", + "/node_modules/@apollo/client/utilities/policies/pagination.d.ts", + "/node_modules/@apollo/client/utilities/observables/Observable.d.ts", + "/node_modules/@apollo/client/utilities/common/objects.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/cloneDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/maybeDeepFreeze.d.ts", + "/node_modules/@apollo/client/utilities/observables/iteration.d.ts", + "/node_modules/@apollo/client/utilities/observables/asyncMap.d.ts", + "/node_modules/@apollo/client/utilities/observables/Concast.d.ts", + "/node_modules/@apollo/client/utilities/observables/subclassing.d.ts", + "/node_modules/@apollo/client/utilities/common/arrays.d.ts", + "/node_modules/@apollo/client/utilities/common/errorHandling.d.ts", + "/node_modules/@apollo/client/utilities/common/canUse.d.ts", + "/node_modules/@apollo/client/utilities/common/compact.d.ts", + "/node_modules/@apollo/client/utilities/common/makeUniqueId.d.ts", + "/node_modules/@apollo/client/utilities/common/stringifyForDisplay.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeOptions.d.ts", + "/node_modules/@apollo/client/utilities/types/IsStrictlyAny.d.ts", + "/node_modules/@apollo/client/utilities/index.d.ts", + "/node_modules/@apollo/client/link/core/types.d.ts", + "/node_modules/@apollo/client/link/core/ApolloLink.d.ts", + "/node_modules/@apollo/client/link/core/empty.d.ts", + "/node_modules/@apollo/client/link/core/from.d.ts", + "/node_modules/@apollo/client/link/core/split.d.ts", + "/node_modules/@apollo/client/link/core/concat.d.ts", + "/node_modules/@apollo/client/link/core/execute.d.ts", + "/node_modules/@apollo/client/link/core/index.d.ts", + "/node_modules/@apollo/client/link/http/parseAndCheckHttpResponse.d.ts", + "/node_modules/@apollo/client/link/http/serializeFetchParameter.d.ts", + "/node_modules/@apollo/client/link/http/selectHttpOptionsAndBody.d.ts", + "/node_modules/@apollo/client/link/http/checkFetcher.d.ts", + "/node_modules/@apollo/client/link/http/createSignalIfSupported.d.ts", + "/node_modules/@apollo/client/link/http/selectURI.d.ts", + "/node_modules/@apollo/client/link/http/createHttpLink.d.ts", + "/node_modules/@apollo/client/link/http/HttpLink.d.ts", + "/node_modules/@apollo/client/link/http/rewriteURIForGET.d.ts", + "/node_modules/@apollo/client/link/http/index.d.ts", + "/node_modules/@apollo/client/core/networkStatus.d.ts", + "/node_modules/@apollo/client/link/utils/fromError.d.ts", + "/node_modules/@apollo/client/link/utils/toPromise.d.ts", + "/node_modules/@apollo/client/link/utils/fromPromise.d.ts", + "/node_modules/@apollo/client/link/utils/throwServerError.d.ts", + "/node_modules/@apollo/client/link/utils/validateOperation.d.ts", + "/node_modules/@apollo/client/link/utils/createOperation.d.ts", + "/node_modules/@apollo/client/link/utils/transformOperation.d.ts", + "/node_modules/@apollo/client/link/utils/index.d.ts", + "/node_modules/@apollo/client/errors/index.d.ts", + "/node_modules/@apollo/client/core/QueryInfo.d.ts", + "/node_modules/@apollo/client/core/LocalState.d.ts", + "/node_modules/@apollo/client/core/types.d.ts", + "/node_modules/@apollo/client/core/watchQueryOptions.d.ts", + "/node_modules/@apollo/client/core/QueryManager.d.ts", + "/node_modules/@apollo/client/core/ObservableQuery.d.ts", + "/node_modules/@apollo/client/core/ApolloClient.d.ts", + "/node_modules/@apollo/client/core/index.d.ts" + ] + }, + "node16-cjs": { + "name": "./core", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/@apollo/client/core/index.d.ts", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/@apollo/client/core/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/core' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/core' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/@apollo/client/core/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/core.ts' does not exist.", + "File '/node_modules/@apollo/client/core.tsx' does not exist.", + "File '/node_modules/@apollo/client/core.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/core/index.d.ts'.", + "File '/node_modules/@apollo/client/core/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/core' was successfully resolved to '/node_modules/@apollo/client/core/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/core/core.cjs", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "extension", + "reasonFileName": "/node_modules/@apollo/client/core/core.cjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/core' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/core' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/core/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/core.ts' does not exist.", + "File '/node_modules/@apollo/client/core.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'core.cjs' that references '/node_modules/@apollo/client/core/core.cjs'.", + "File '/node_modules/@apollo/client/core/core.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/core/core.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/core/core.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/core/core.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/core/core.cts' does not exist.", + "File '/node_modules/@apollo/client/core/core.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/core/core.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/core/core.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/core/index.ts' does not exist.", + "File '/node_modules/@apollo/client/core/index.tsx' does not exist.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/core/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/core.js' does not exist.", + "File '/node_modules/@apollo/client/core.jsx' does not exist.", + "'package.json' has 'main' field 'core.cjs' that references '/node_modules/@apollo/client/core/core.cjs'.", + "File '/node_modules/@apollo/client/core/core.cjs' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/core' was successfully resolved to '/node_modules/@apollo/client/core/core.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/core/index.d.ts" + ] + }, + "node16-esm": { + "name": "./core", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/@apollo/client/core/index.d.ts", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/@apollo/client/core/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/core' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/core' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/@apollo/client/core/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/core/index.d.ts'.", + "File '/node_modules/@apollo/client/core/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/core' was successfully resolved to '/node_modules/@apollo/client/core/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/core/core.cjs", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "extension", + "reasonFileName": "/node_modules/@apollo/client/core/core.cjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/core' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/core' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/core/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'core.cjs' that references '/node_modules/@apollo/client/core/core.cjs'.", + "File '/node_modules/@apollo/client/core/core.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/core/core.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/core/core.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/core/core.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/core/core.cts' does not exist.", + "Directory '/node_modules/@apollo/client/core/core.cjs' does not exist, skipping all lookups in it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/core/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'core.cjs' that references '/node_modules/@apollo/client/core/core.cjs'.", + "File '/node_modules/@apollo/client/core/core.cjs' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/core' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/core/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'core.cjs' that references '/node_modules/@apollo/client/core/core.cjs'.", + "File '/node_modules/@apollo/client/core/core.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/core/core.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/core/core.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/core/core.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/core/core.cts' does not exist.", + "Directory '/node_modules/@apollo/client/core/core.cjs' does not exist, skipping all lookups in it.", + "======== Module name '@apollo/client/core' was successfully resolved to '/node_modules/@apollo/client/core/core.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/core/index.d.ts" + ] + }, + "bundler": { + "name": "./core", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/@apollo/client/core/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/core' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/core' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/@apollo/client/core/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/core.ts' does not exist.", + "File '/node_modules/@apollo/client/core.tsx' does not exist.", + "File '/node_modules/@apollo/client/core.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/core/index.d.ts'.", + "File '/node_modules/@apollo/client/core/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/core' was successfully resolved to '/node_modules/@apollo/client/core/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/core/core.cjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/core' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/core' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/core/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/core.ts' does not exist.", + "File '/node_modules/@apollo/client/core.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'core.cjs' that references '/node_modules/@apollo/client/core/core.cjs'.", + "File '/node_modules/@apollo/client/core/core.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/core/core.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/core/core.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/core/core.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/core/core.cts' does not exist.", + "File '/node_modules/@apollo/client/core/core.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/core/core.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/core/core.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/core/index.ts' does not exist.", + "File '/node_modules/@apollo/client/core/index.tsx' does not exist.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/core/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/core.js' does not exist.", + "File '/node_modules/@apollo/client/core.jsx' does not exist.", + "'package.json' has 'main' field 'core.cjs' that references '/node_modules/@apollo/client/core/core.cjs'.", + "File '/node_modules/@apollo/client/core/core.cjs' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/core' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/core/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/core.ts' does not exist.", + "File '/node_modules/@apollo/client/core.tsx' does not exist.", + "'package.json' has 'main' field 'core.cjs' that references '/node_modules/@apollo/client/core/core.cjs'.", + "File '/node_modules/@apollo/client/core/core.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/core/core.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/core/core.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/core/core.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/core/core.cts' does not exist.", + "File '/node_modules/@apollo/client/core/core.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/core/core.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/core/core.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/core/index.ts' does not exist.", + "File '/node_modules/@apollo/client/core/index.tsx' does not exist.", + "======== Module name '@apollo/client/core' was successfully resolved to '/node_modules/@apollo/client/core/core.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/utilities/globals/DEV.d.ts", + "/node_modules/@apollo/client/utilities/globals/maybe.d.ts", + "/node_modules/@apollo/client/utilities/globals/global.d.ts", + "/node_modules/@apollo/client/utilities/globals/index.d.ts", + "/node_modules/@apollo/client/utilities/graphql/directives.d.ts", + "/node_modules/@apollo/client/utilities/graphql/fragments.d.ts", + "/node_modules/@apollo/client/utilities/graphql/getFromAST.d.ts", + "/node_modules/@apollo/client/utilities/graphql/storeUtils.d.ts", + "/node_modules/@apollo/client/utilities/graphql/transform.d.ts", + "/node_modules/@apollo/client/cache/core/types/Cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/entityStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fragmentRegistry.d.ts", + "/node_modules/@apollo/client/cache/inmemory/types.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fixPolyfills.d.ts", + "/node_modules/@apollo/client/cache/inmemory/reactiveVars.d.ts", + "/node_modules/@apollo/client/cache/inmemory/inMemoryCache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/object-canon.d.ts", + "/node_modules/@apollo/client/cache/inmemory/readFromStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/writeToStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/policies.d.ts", + "/node_modules/@apollo/client/cache/core/types/common.d.ts", + "/node_modules/@apollo/client/cache/core/types/DataProxy.d.ts", + "/node_modules/@apollo/client/cache/core/cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/helpers.d.ts", + "/node_modules/@apollo/client/cache/index.d.ts", + "/node_modules/@apollo/client/utilities/policies/pagination.d.ts", + "/node_modules/@apollo/client/utilities/observables/Observable.d.ts", + "/node_modules/@apollo/client/utilities/common/objects.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/cloneDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/maybeDeepFreeze.d.ts", + "/node_modules/@apollo/client/utilities/observables/iteration.d.ts", + "/node_modules/@apollo/client/utilities/observables/asyncMap.d.ts", + "/node_modules/@apollo/client/utilities/observables/Concast.d.ts", + "/node_modules/@apollo/client/utilities/observables/subclassing.d.ts", + "/node_modules/@apollo/client/utilities/common/arrays.d.ts", + "/node_modules/@apollo/client/utilities/common/errorHandling.d.ts", + "/node_modules/@apollo/client/utilities/common/canUse.d.ts", + "/node_modules/@apollo/client/utilities/common/compact.d.ts", + "/node_modules/@apollo/client/utilities/common/makeUniqueId.d.ts", + "/node_modules/@apollo/client/utilities/common/stringifyForDisplay.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeOptions.d.ts", + "/node_modules/@apollo/client/utilities/types/IsStrictlyAny.d.ts", + "/node_modules/@apollo/client/utilities/index.d.ts", + "/node_modules/@apollo/client/link/core/types.d.ts", + "/node_modules/@apollo/client/link/core/ApolloLink.d.ts", + "/node_modules/@apollo/client/link/core/empty.d.ts", + "/node_modules/@apollo/client/link/core/from.d.ts", + "/node_modules/@apollo/client/link/core/split.d.ts", + "/node_modules/@apollo/client/link/core/concat.d.ts", + "/node_modules/@apollo/client/link/core/execute.d.ts", + "/node_modules/@apollo/client/link/core/index.d.ts", + "/node_modules/@apollo/client/link/http/parseAndCheckHttpResponse.d.ts", + "/node_modules/@apollo/client/link/http/serializeFetchParameter.d.ts", + "/node_modules/@apollo/client/link/http/selectHttpOptionsAndBody.d.ts", + "/node_modules/@apollo/client/link/http/checkFetcher.d.ts", + "/node_modules/@apollo/client/link/http/createSignalIfSupported.d.ts", + "/node_modules/@apollo/client/link/http/selectURI.d.ts", + "/node_modules/@apollo/client/link/http/createHttpLink.d.ts", + "/node_modules/@apollo/client/link/http/HttpLink.d.ts", + "/node_modules/@apollo/client/link/http/rewriteURIForGET.d.ts", + "/node_modules/@apollo/client/link/http/index.d.ts", + "/node_modules/@apollo/client/core/networkStatus.d.ts", + "/node_modules/@apollo/client/link/utils/fromError.d.ts", + "/node_modules/@apollo/client/link/utils/toPromise.d.ts", + "/node_modules/@apollo/client/link/utils/fromPromise.d.ts", + "/node_modules/@apollo/client/link/utils/throwServerError.d.ts", + "/node_modules/@apollo/client/link/utils/validateOperation.d.ts", + "/node_modules/@apollo/client/link/utils/createOperation.d.ts", + "/node_modules/@apollo/client/link/utils/transformOperation.d.ts", + "/node_modules/@apollo/client/link/utils/index.d.ts", + "/node_modules/@apollo/client/errors/index.d.ts", + "/node_modules/@apollo/client/core/QueryInfo.d.ts", + "/node_modules/@apollo/client/core/LocalState.d.ts", + "/node_modules/@apollo/client/core/types.d.ts", + "/node_modules/@apollo/client/core/watchQueryOptions.d.ts", + "/node_modules/@apollo/client/core/QueryManager.d.ts", + "/node_modules/@apollo/client/core/ObservableQuery.d.ts", + "/node_modules/@apollo/client/core/ApolloClient.d.ts", + "/node_modules/@apollo/client/core/index.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + }, + "./errors": { + "subpath": "./errors", + "resolutions": { + "node10": { + "name": "./errors", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/@apollo/client/errors/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/errors' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module '@apollo/client/errors' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/@apollo/client/errors/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/errors.ts' does not exist.", + "File '/node_modules/@apollo/client/errors.tsx' does not exist.", + "File '/node_modules/@apollo/client/errors.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/errors/index.d.ts'.", + "File '/node_modules/@apollo/client/errors/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/errors' was successfully resolved to '/node_modules/@apollo/client/errors/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/errors/errors.cjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/errors' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module '@apollo/client/errors' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/errors/package.json'.", + "File '/node_modules/@apollo/client/errors.ts' does not exist.", + "File '/node_modules/@apollo/client/errors.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'errors.cjs' that references '/node_modules/@apollo/client/errors/errors.cjs'.", + "File '/node_modules/@apollo/client/errors/errors.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/errors/errors.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/errors/errors.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/errors/errors.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/errors/errors.cts' does not exist.", + "File '/node_modules/@apollo/client/errors/errors.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/errors/errors.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/errors/errors.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/errors/index.ts' does not exist.", + "File '/node_modules/@apollo/client/errors/index.tsx' does not exist.", + "Loading module '@apollo/client/errors' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/errors/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/errors.js' does not exist.", + "File '/node_modules/@apollo/client/errors.jsx' does not exist.", + "'package.json' has 'main' field 'errors.cjs' that references '/node_modules/@apollo/client/errors/errors.cjs'.", + "File '/node_modules/@apollo/client/errors/errors.cjs' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/errors' was successfully resolved to '/node_modules/@apollo/client/errors/errors.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/utilities/globals/DEV.d.ts", + "/node_modules/@apollo/client/utilities/globals/maybe.d.ts", + "/node_modules/@apollo/client/utilities/globals/global.d.ts", + "/node_modules/@apollo/client/utilities/globals/index.d.ts", + "/node_modules/@apollo/client/utilities/graphql/directives.d.ts", + "/node_modules/@apollo/client/utilities/graphql/fragments.d.ts", + "/node_modules/@apollo/client/utilities/graphql/getFromAST.d.ts", + "/node_modules/@apollo/client/utilities/graphql/storeUtils.d.ts", + "/node_modules/@apollo/client/utilities/graphql/transform.d.ts", + "/node_modules/@apollo/client/cache/core/types/Cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/entityStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fragmentRegistry.d.ts", + "/node_modules/@apollo/client/cache/inmemory/types.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fixPolyfills.d.ts", + "/node_modules/@apollo/client/core/networkStatus.d.ts", + "/node_modules/@apollo/client/core/QueryInfo.d.ts", + "/node_modules/@apollo/client/core/LocalState.d.ts", + "/node_modules/@apollo/client/core/types.d.ts", + "/node_modules/@apollo/client/core/watchQueryOptions.d.ts", + "/node_modules/@apollo/client/core/QueryManager.d.ts", + "/node_modules/@apollo/client/core/ObservableQuery.d.ts", + "/node_modules/@apollo/client/core/ApolloClient.d.ts", + "/node_modules/@apollo/client/link/utils/fromError.d.ts", + "/node_modules/@apollo/client/link/utils/toPromise.d.ts", + "/node_modules/@apollo/client/link/utils/fromPromise.d.ts", + "/node_modules/@apollo/client/link/utils/throwServerError.d.ts", + "/node_modules/@apollo/client/link/utils/validateOperation.d.ts", + "/node_modules/@apollo/client/link/utils/createOperation.d.ts", + "/node_modules/@apollo/client/link/utils/transformOperation.d.ts", + "/node_modules/@apollo/client/link/utils/index.d.ts", + "/node_modules/@apollo/client/core/index.d.ts", + "/node_modules/@apollo/client/cache/inmemory/reactiveVars.d.ts", + "/node_modules/@apollo/client/cache/inmemory/inMemoryCache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/object-canon.d.ts", + "/node_modules/@apollo/client/cache/inmemory/readFromStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/writeToStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/policies.d.ts", + "/node_modules/@apollo/client/cache/core/types/common.d.ts", + "/node_modules/@apollo/client/cache/core/types/DataProxy.d.ts", + "/node_modules/@apollo/client/cache/core/cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/helpers.d.ts", + "/node_modules/@apollo/client/cache/index.d.ts", + "/node_modules/@apollo/client/utilities/policies/pagination.d.ts", + "/node_modules/@apollo/client/utilities/observables/Observable.d.ts", + "/node_modules/@apollo/client/utilities/common/objects.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/cloneDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/maybeDeepFreeze.d.ts", + "/node_modules/@apollo/client/utilities/observables/iteration.d.ts", + "/node_modules/@apollo/client/utilities/observables/asyncMap.d.ts", + "/node_modules/@apollo/client/utilities/observables/Concast.d.ts", + "/node_modules/@apollo/client/utilities/observables/subclassing.d.ts", + "/node_modules/@apollo/client/utilities/common/arrays.d.ts", + "/node_modules/@apollo/client/utilities/common/errorHandling.d.ts", + "/node_modules/@apollo/client/utilities/common/canUse.d.ts", + "/node_modules/@apollo/client/utilities/common/compact.d.ts", + "/node_modules/@apollo/client/utilities/common/makeUniqueId.d.ts", + "/node_modules/@apollo/client/utilities/common/stringifyForDisplay.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeOptions.d.ts", + "/node_modules/@apollo/client/utilities/types/IsStrictlyAny.d.ts", + "/node_modules/@apollo/client/utilities/index.d.ts", + "/node_modules/@apollo/client/link/core/types.d.ts", + "/node_modules/@apollo/client/link/core/ApolloLink.d.ts", + "/node_modules/@apollo/client/link/core/empty.d.ts", + "/node_modules/@apollo/client/link/core/from.d.ts", + "/node_modules/@apollo/client/link/core/split.d.ts", + "/node_modules/@apollo/client/link/core/concat.d.ts", + "/node_modules/@apollo/client/link/core/execute.d.ts", + "/node_modules/@apollo/client/link/core/index.d.ts", + "/node_modules/@apollo/client/link/http/parseAndCheckHttpResponse.d.ts", + "/node_modules/@apollo/client/link/http/serializeFetchParameter.d.ts", + "/node_modules/@apollo/client/link/http/selectHttpOptionsAndBody.d.ts", + "/node_modules/@apollo/client/link/http/checkFetcher.d.ts", + "/node_modules/@apollo/client/link/http/createSignalIfSupported.d.ts", + "/node_modules/@apollo/client/link/http/selectURI.d.ts", + "/node_modules/@apollo/client/link/http/createHttpLink.d.ts", + "/node_modules/@apollo/client/link/http/HttpLink.d.ts", + "/node_modules/@apollo/client/link/http/rewriteURIForGET.d.ts", + "/node_modules/@apollo/client/link/http/index.d.ts", + "/node_modules/@apollo/client/errors/index.d.ts" + ] + }, + "node16-cjs": { + "name": "./errors", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/@apollo/client/errors/index.d.ts", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/@apollo/client/errors/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/errors' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/errors' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/@apollo/client/errors/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/errors.ts' does not exist.", + "File '/node_modules/@apollo/client/errors.tsx' does not exist.", + "File '/node_modules/@apollo/client/errors.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/errors/index.d.ts'.", + "File '/node_modules/@apollo/client/errors/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/errors' was successfully resolved to '/node_modules/@apollo/client/errors/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/errors/errors.cjs", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "extension", + "reasonFileName": "/node_modules/@apollo/client/errors/errors.cjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/errors' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/errors' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/errors/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/errors.ts' does not exist.", + "File '/node_modules/@apollo/client/errors.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'errors.cjs' that references '/node_modules/@apollo/client/errors/errors.cjs'.", + "File '/node_modules/@apollo/client/errors/errors.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/errors/errors.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/errors/errors.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/errors/errors.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/errors/errors.cts' does not exist.", + "File '/node_modules/@apollo/client/errors/errors.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/errors/errors.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/errors/errors.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/errors/index.ts' does not exist.", + "File '/node_modules/@apollo/client/errors/index.tsx' does not exist.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/errors/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/errors.js' does not exist.", + "File '/node_modules/@apollo/client/errors.jsx' does not exist.", + "'package.json' has 'main' field 'errors.cjs' that references '/node_modules/@apollo/client/errors/errors.cjs'.", + "File '/node_modules/@apollo/client/errors/errors.cjs' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/errors' was successfully resolved to '/node_modules/@apollo/client/errors/errors.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/errors/index.d.ts" + ] + }, + "node16-esm": { + "name": "./errors", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/@apollo/client/errors/index.d.ts", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/@apollo/client/errors/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/errors' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/errors' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/@apollo/client/errors/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/errors/index.d.ts'.", + "File '/node_modules/@apollo/client/errors/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/errors' was successfully resolved to '/node_modules/@apollo/client/errors/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/errors/errors.cjs", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "extension", + "reasonFileName": "/node_modules/@apollo/client/errors/errors.cjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/errors' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/errors' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/errors/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'errors.cjs' that references '/node_modules/@apollo/client/errors/errors.cjs'.", + "File '/node_modules/@apollo/client/errors/errors.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/errors/errors.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/errors/errors.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/errors/errors.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/errors/errors.cts' does not exist.", + "Directory '/node_modules/@apollo/client/errors/errors.cjs' does not exist, skipping all lookups in it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/errors/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'errors.cjs' that references '/node_modules/@apollo/client/errors/errors.cjs'.", + "File '/node_modules/@apollo/client/errors/errors.cjs' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/errors' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/errors/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'errors.cjs' that references '/node_modules/@apollo/client/errors/errors.cjs'.", + "File '/node_modules/@apollo/client/errors/errors.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/errors/errors.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/errors/errors.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/errors/errors.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/errors/errors.cts' does not exist.", + "Directory '/node_modules/@apollo/client/errors/errors.cjs' does not exist, skipping all lookups in it.", + "======== Module name '@apollo/client/errors' was successfully resolved to '/node_modules/@apollo/client/errors/errors.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/errors/index.d.ts" + ] + }, + "bundler": { + "name": "./errors", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/@apollo/client/errors/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/errors' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/errors' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/@apollo/client/errors/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/errors.ts' does not exist.", + "File '/node_modules/@apollo/client/errors.tsx' does not exist.", + "File '/node_modules/@apollo/client/errors.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/errors/index.d.ts'.", + "File '/node_modules/@apollo/client/errors/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/errors' was successfully resolved to '/node_modules/@apollo/client/errors/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/errors/errors.cjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/errors' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/errors' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/errors/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/errors.ts' does not exist.", + "File '/node_modules/@apollo/client/errors.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'errors.cjs' that references '/node_modules/@apollo/client/errors/errors.cjs'.", + "File '/node_modules/@apollo/client/errors/errors.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/errors/errors.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/errors/errors.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/errors/errors.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/errors/errors.cts' does not exist.", + "File '/node_modules/@apollo/client/errors/errors.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/errors/errors.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/errors/errors.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/errors/index.ts' does not exist.", + "File '/node_modules/@apollo/client/errors/index.tsx' does not exist.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/errors/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/errors.js' does not exist.", + "File '/node_modules/@apollo/client/errors.jsx' does not exist.", + "'package.json' has 'main' field 'errors.cjs' that references '/node_modules/@apollo/client/errors/errors.cjs'.", + "File '/node_modules/@apollo/client/errors/errors.cjs' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/errors' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/errors/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/errors.ts' does not exist.", + "File '/node_modules/@apollo/client/errors.tsx' does not exist.", + "'package.json' has 'main' field 'errors.cjs' that references '/node_modules/@apollo/client/errors/errors.cjs'.", + "File '/node_modules/@apollo/client/errors/errors.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/errors/errors.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/errors/errors.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/errors/errors.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/errors/errors.cts' does not exist.", + "File '/node_modules/@apollo/client/errors/errors.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/errors/errors.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/errors/errors.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/errors/index.ts' does not exist.", + "File '/node_modules/@apollo/client/errors/index.tsx' does not exist.", + "======== Module name '@apollo/client/errors' was successfully resolved to '/node_modules/@apollo/client/errors/errors.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/utilities/globals/DEV.d.ts", + "/node_modules/@apollo/client/utilities/globals/maybe.d.ts", + "/node_modules/@apollo/client/utilities/globals/global.d.ts", + "/node_modules/@apollo/client/utilities/globals/index.d.ts", + "/node_modules/@apollo/client/utilities/graphql/directives.d.ts", + "/node_modules/@apollo/client/utilities/graphql/fragments.d.ts", + "/node_modules/@apollo/client/utilities/graphql/getFromAST.d.ts", + "/node_modules/@apollo/client/utilities/graphql/storeUtils.d.ts", + "/node_modules/@apollo/client/utilities/graphql/transform.d.ts", + "/node_modules/@apollo/client/cache/core/types/Cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/entityStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fragmentRegistry.d.ts", + "/node_modules/@apollo/client/cache/inmemory/types.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fixPolyfills.d.ts", + "/node_modules/@apollo/client/core/networkStatus.d.ts", + "/node_modules/@apollo/client/core/QueryInfo.d.ts", + "/node_modules/@apollo/client/core/LocalState.d.ts", + "/node_modules/@apollo/client/core/types.d.ts", + "/node_modules/@apollo/client/core/watchQueryOptions.d.ts", + "/node_modules/@apollo/client/core/QueryManager.d.ts", + "/node_modules/@apollo/client/core/ObservableQuery.d.ts", + "/node_modules/@apollo/client/core/ApolloClient.d.ts", + "/node_modules/@apollo/client/link/utils/fromError.d.ts", + "/node_modules/@apollo/client/link/utils/toPromise.d.ts", + "/node_modules/@apollo/client/link/utils/fromPromise.d.ts", + "/node_modules/@apollo/client/link/utils/throwServerError.d.ts", + "/node_modules/@apollo/client/link/utils/validateOperation.d.ts", + "/node_modules/@apollo/client/link/utils/createOperation.d.ts", + "/node_modules/@apollo/client/link/utils/transformOperation.d.ts", + "/node_modules/@apollo/client/link/utils/index.d.ts", + "/node_modules/@apollo/client/core/index.d.ts", + "/node_modules/@apollo/client/cache/inmemory/reactiveVars.d.ts", + "/node_modules/@apollo/client/cache/inmemory/inMemoryCache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/object-canon.d.ts", + "/node_modules/@apollo/client/cache/inmemory/readFromStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/writeToStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/policies.d.ts", + "/node_modules/@apollo/client/cache/core/types/common.d.ts", + "/node_modules/@apollo/client/cache/core/types/DataProxy.d.ts", + "/node_modules/@apollo/client/cache/core/cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/helpers.d.ts", + "/node_modules/@apollo/client/cache/index.d.ts", + "/node_modules/@apollo/client/utilities/policies/pagination.d.ts", + "/node_modules/@apollo/client/utilities/observables/Observable.d.ts", + "/node_modules/@apollo/client/utilities/common/objects.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/cloneDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/maybeDeepFreeze.d.ts", + "/node_modules/@apollo/client/utilities/observables/iteration.d.ts", + "/node_modules/@apollo/client/utilities/observables/asyncMap.d.ts", + "/node_modules/@apollo/client/utilities/observables/Concast.d.ts", + "/node_modules/@apollo/client/utilities/observables/subclassing.d.ts", + "/node_modules/@apollo/client/utilities/common/arrays.d.ts", + "/node_modules/@apollo/client/utilities/common/errorHandling.d.ts", + "/node_modules/@apollo/client/utilities/common/canUse.d.ts", + "/node_modules/@apollo/client/utilities/common/compact.d.ts", + "/node_modules/@apollo/client/utilities/common/makeUniqueId.d.ts", + "/node_modules/@apollo/client/utilities/common/stringifyForDisplay.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeOptions.d.ts", + "/node_modules/@apollo/client/utilities/types/IsStrictlyAny.d.ts", + "/node_modules/@apollo/client/utilities/index.d.ts", + "/node_modules/@apollo/client/link/core/types.d.ts", + "/node_modules/@apollo/client/link/core/ApolloLink.d.ts", + "/node_modules/@apollo/client/link/core/empty.d.ts", + "/node_modules/@apollo/client/link/core/from.d.ts", + "/node_modules/@apollo/client/link/core/split.d.ts", + "/node_modules/@apollo/client/link/core/concat.d.ts", + "/node_modules/@apollo/client/link/core/execute.d.ts", + "/node_modules/@apollo/client/link/core/index.d.ts", + "/node_modules/@apollo/client/link/http/parseAndCheckHttpResponse.d.ts", + "/node_modules/@apollo/client/link/http/serializeFetchParameter.d.ts", + "/node_modules/@apollo/client/link/http/selectHttpOptionsAndBody.d.ts", + "/node_modules/@apollo/client/link/http/checkFetcher.d.ts", + "/node_modules/@apollo/client/link/http/createSignalIfSupported.d.ts", + "/node_modules/@apollo/client/link/http/selectURI.d.ts", + "/node_modules/@apollo/client/link/http/createHttpLink.d.ts", + "/node_modules/@apollo/client/link/http/HttpLink.d.ts", + "/node_modules/@apollo/client/link/http/rewriteURIForGET.d.ts", + "/node_modules/@apollo/client/link/http/index.d.ts", + "/node_modules/@apollo/client/errors/index.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + }, + "./link/batch": { + "subpath": "./link/batch", + "resolutions": { + "node10": { + "name": "./link/batch", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/@apollo/client/link/batch/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/link/batch' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module '@apollo/client/link/batch' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/@apollo/client/link/batch/package.json'.", + "File '/node_modules/@apollo/client/link/batch.ts' does not exist.", + "File '/node_modules/@apollo/client/link/batch.tsx' does not exist.", + "File '/node_modules/@apollo/client/link/batch.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/link/batch/index.d.ts'.", + "File '/node_modules/@apollo/client/link/batch/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/link/batch' was successfully resolved to '/node_modules/@apollo/client/link/batch/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/link/batch/batch.cjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/link/batch' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module '@apollo/client/link/batch' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/link/batch/package.json'.", + "File '/node_modules/@apollo/client/link/batch.ts' does not exist.", + "File '/node_modules/@apollo/client/link/batch.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'batch.cjs' that references '/node_modules/@apollo/client/link/batch/batch.cjs'.", + "File '/node_modules/@apollo/client/link/batch/batch.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/link/batch/batch.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/batch/batch.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/link/batch/batch.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/link/batch/batch.cts' does not exist.", + "File '/node_modules/@apollo/client/link/batch/batch.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/link/batch/batch.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/link/batch/batch.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/link/batch/index.ts' does not exist.", + "File '/node_modules/@apollo/client/link/batch/index.tsx' does not exist.", + "Loading module '@apollo/client/link/batch' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/link/batch/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/batch.js' does not exist.", + "File '/node_modules/@apollo/client/link/batch.jsx' does not exist.", + "'package.json' has 'main' field 'batch.cjs' that references '/node_modules/@apollo/client/link/batch/batch.cjs'.", + "File '/node_modules/@apollo/client/link/batch/batch.cjs' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/link/batch' was successfully resolved to '/node_modules/@apollo/client/link/batch/batch.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/utilities/globals/DEV.d.ts", + "/node_modules/@apollo/client/utilities/globals/maybe.d.ts", + "/node_modules/@apollo/client/utilities/globals/global.d.ts", + "/node_modules/@apollo/client/utilities/globals/index.d.ts", + "/node_modules/@apollo/client/utilities/graphql/directives.d.ts", + "/node_modules/@apollo/client/utilities/graphql/fragments.d.ts", + "/node_modules/@apollo/client/utilities/graphql/getFromAST.d.ts", + "/node_modules/@apollo/client/utilities/graphql/storeUtils.d.ts", + "/node_modules/@apollo/client/utilities/graphql/transform.d.ts", + "/node_modules/@apollo/client/cache/core/types/Cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/entityStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fragmentRegistry.d.ts", + "/node_modules/@apollo/client/cache/inmemory/types.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fixPolyfills.d.ts", + "/node_modules/@apollo/client/link/http/parseAndCheckHttpResponse.d.ts", + "/node_modules/@apollo/client/link/http/serializeFetchParameter.d.ts", + "/node_modules/@apollo/client/link/http/selectHttpOptionsAndBody.d.ts", + "/node_modules/@apollo/client/link/http/checkFetcher.d.ts", + "/node_modules/@apollo/client/link/http/createSignalIfSupported.d.ts", + "/node_modules/@apollo/client/link/http/selectURI.d.ts", + "/node_modules/@apollo/client/link/http/createHttpLink.d.ts", + "/node_modules/@apollo/client/link/http/HttpLink.d.ts", + "/node_modules/@apollo/client/link/http/rewriteURIForGET.d.ts", + "/node_modules/@apollo/client/link/http/index.d.ts", + "/node_modules/@apollo/client/core/networkStatus.d.ts", + "/node_modules/@apollo/client/link/utils/fromError.d.ts", + "/node_modules/@apollo/client/link/utils/toPromise.d.ts", + "/node_modules/@apollo/client/link/utils/fromPromise.d.ts", + "/node_modules/@apollo/client/link/utils/throwServerError.d.ts", + "/node_modules/@apollo/client/link/utils/validateOperation.d.ts", + "/node_modules/@apollo/client/link/utils/createOperation.d.ts", + "/node_modules/@apollo/client/link/utils/transformOperation.d.ts", + "/node_modules/@apollo/client/link/utils/index.d.ts", + "/node_modules/@apollo/client/errors/index.d.ts", + "/node_modules/@apollo/client/core/QueryInfo.d.ts", + "/node_modules/@apollo/client/core/LocalState.d.ts", + "/node_modules/@apollo/client/core/types.d.ts", + "/node_modules/@apollo/client/core/watchQueryOptions.d.ts", + "/node_modules/@apollo/client/core/QueryManager.d.ts", + "/node_modules/@apollo/client/core/ObservableQuery.d.ts", + "/node_modules/@apollo/client/core/ApolloClient.d.ts", + "/node_modules/@apollo/client/core/index.d.ts", + "/node_modules/@apollo/client/cache/inmemory/reactiveVars.d.ts", + "/node_modules/@apollo/client/cache/inmemory/inMemoryCache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/object-canon.d.ts", + "/node_modules/@apollo/client/cache/inmemory/readFromStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/writeToStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/policies.d.ts", + "/node_modules/@apollo/client/cache/core/types/common.d.ts", + "/node_modules/@apollo/client/cache/core/types/DataProxy.d.ts", + "/node_modules/@apollo/client/cache/core/cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/helpers.d.ts", + "/node_modules/@apollo/client/cache/index.d.ts", + "/node_modules/@apollo/client/utilities/policies/pagination.d.ts", + "/node_modules/@apollo/client/utilities/observables/Observable.d.ts", + "/node_modules/@apollo/client/utilities/common/objects.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/cloneDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/maybeDeepFreeze.d.ts", + "/node_modules/@apollo/client/utilities/observables/iteration.d.ts", + "/node_modules/@apollo/client/utilities/observables/asyncMap.d.ts", + "/node_modules/@apollo/client/utilities/observables/Concast.d.ts", + "/node_modules/@apollo/client/utilities/observables/subclassing.d.ts", + "/node_modules/@apollo/client/utilities/common/arrays.d.ts", + "/node_modules/@apollo/client/utilities/common/errorHandling.d.ts", + "/node_modules/@apollo/client/utilities/common/canUse.d.ts", + "/node_modules/@apollo/client/utilities/common/compact.d.ts", + "/node_modules/@apollo/client/utilities/common/makeUniqueId.d.ts", + "/node_modules/@apollo/client/utilities/common/stringifyForDisplay.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeOptions.d.ts", + "/node_modules/@apollo/client/utilities/types/IsStrictlyAny.d.ts", + "/node_modules/@apollo/client/utilities/index.d.ts", + "/node_modules/@apollo/client/link/core/types.d.ts", + "/node_modules/@apollo/client/link/core/ApolloLink.d.ts", + "/node_modules/@apollo/client/link/core/empty.d.ts", + "/node_modules/@apollo/client/link/core/from.d.ts", + "/node_modules/@apollo/client/link/core/split.d.ts", + "/node_modules/@apollo/client/link/core/concat.d.ts", + "/node_modules/@apollo/client/link/core/execute.d.ts", + "/node_modules/@apollo/client/link/core/index.d.ts", + "/node_modules/@apollo/client/link/batch/batching.d.ts", + "/node_modules/@apollo/client/link/batch/batchLink.d.ts", + "/node_modules/@apollo/client/link/batch/index.d.ts" + ] + }, + "node16-cjs": { + "name": "./link/batch", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/@apollo/client/link/batch/index.d.ts", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/@apollo/client/link/batch/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/link/batch' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/batch' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/@apollo/client/link/batch/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/batch.ts' does not exist.", + "File '/node_modules/@apollo/client/link/batch.tsx' does not exist.", + "File '/node_modules/@apollo/client/link/batch.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/link/batch/index.d.ts'.", + "File '/node_modules/@apollo/client/link/batch/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/link/batch' was successfully resolved to '/node_modules/@apollo/client/link/batch/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/link/batch/batch.cjs", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "extension", + "reasonFileName": "/node_modules/@apollo/client/link/batch/batch.cjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/link/batch' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/batch' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/link/batch/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/batch.ts' does not exist.", + "File '/node_modules/@apollo/client/link/batch.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'batch.cjs' that references '/node_modules/@apollo/client/link/batch/batch.cjs'.", + "File '/node_modules/@apollo/client/link/batch/batch.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/link/batch/batch.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/batch/batch.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/link/batch/batch.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/link/batch/batch.cts' does not exist.", + "File '/node_modules/@apollo/client/link/batch/batch.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/link/batch/batch.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/link/batch/batch.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/link/batch/index.ts' does not exist.", + "File '/node_modules/@apollo/client/link/batch/index.tsx' does not exist.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/link/batch/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/batch.js' does not exist.", + "File '/node_modules/@apollo/client/link/batch.jsx' does not exist.", + "'package.json' has 'main' field 'batch.cjs' that references '/node_modules/@apollo/client/link/batch/batch.cjs'.", + "File '/node_modules/@apollo/client/link/batch/batch.cjs' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/link/batch' was successfully resolved to '/node_modules/@apollo/client/link/batch/batch.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/link/batch/index.d.ts" + ] + }, + "node16-esm": { + "name": "./link/batch", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/@apollo/client/link/batch/index.d.ts", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/@apollo/client/link/batch/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/link/batch' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/batch' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/@apollo/client/link/batch/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/link/batch/index.d.ts'.", + "File '/node_modules/@apollo/client/link/batch/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/link/batch' was successfully resolved to '/node_modules/@apollo/client/link/batch/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/link/batch/batch.cjs", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "extension", + "reasonFileName": "/node_modules/@apollo/client/link/batch/batch.cjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/link/batch' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/batch' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/link/batch/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'batch.cjs' that references '/node_modules/@apollo/client/link/batch/batch.cjs'.", + "File '/node_modules/@apollo/client/link/batch/batch.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/link/batch/batch.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/batch/batch.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/link/batch/batch.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/link/batch/batch.cts' does not exist.", + "Directory '/node_modules/@apollo/client/link/batch/batch.cjs' does not exist, skipping all lookups in it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/link/batch/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'batch.cjs' that references '/node_modules/@apollo/client/link/batch/batch.cjs'.", + "File '/node_modules/@apollo/client/link/batch/batch.cjs' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/batch' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/link/batch/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'batch.cjs' that references '/node_modules/@apollo/client/link/batch/batch.cjs'.", + "File '/node_modules/@apollo/client/link/batch/batch.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/link/batch/batch.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/batch/batch.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/link/batch/batch.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/link/batch/batch.cts' does not exist.", + "Directory '/node_modules/@apollo/client/link/batch/batch.cjs' does not exist, skipping all lookups in it.", + "======== Module name '@apollo/client/link/batch' was successfully resolved to '/node_modules/@apollo/client/link/batch/batch.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/link/batch/index.d.ts" + ] + }, + "bundler": { + "name": "./link/batch", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/@apollo/client/link/batch/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/link/batch' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/batch' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/@apollo/client/link/batch/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/batch.ts' does not exist.", + "File '/node_modules/@apollo/client/link/batch.tsx' does not exist.", + "File '/node_modules/@apollo/client/link/batch.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/link/batch/index.d.ts'.", + "File '/node_modules/@apollo/client/link/batch/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/link/batch' was successfully resolved to '/node_modules/@apollo/client/link/batch/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/link/batch/batch.cjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/link/batch' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/batch' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/link/batch/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/batch.ts' does not exist.", + "File '/node_modules/@apollo/client/link/batch.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'batch.cjs' that references '/node_modules/@apollo/client/link/batch/batch.cjs'.", + "File '/node_modules/@apollo/client/link/batch/batch.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/link/batch/batch.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/batch/batch.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/link/batch/batch.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/link/batch/batch.cts' does not exist.", + "File '/node_modules/@apollo/client/link/batch/batch.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/link/batch/batch.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/link/batch/batch.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/link/batch/index.ts' does not exist.", + "File '/node_modules/@apollo/client/link/batch/index.tsx' does not exist.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/link/batch/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/batch.js' does not exist.", + "File '/node_modules/@apollo/client/link/batch.jsx' does not exist.", + "'package.json' has 'main' field 'batch.cjs' that references '/node_modules/@apollo/client/link/batch/batch.cjs'.", + "File '/node_modules/@apollo/client/link/batch/batch.cjs' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/batch' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/link/batch/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/batch.ts' does not exist.", + "File '/node_modules/@apollo/client/link/batch.tsx' does not exist.", + "'package.json' has 'main' field 'batch.cjs' that references '/node_modules/@apollo/client/link/batch/batch.cjs'.", + "File '/node_modules/@apollo/client/link/batch/batch.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/link/batch/batch.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/batch/batch.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/link/batch/batch.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/link/batch/batch.cts' does not exist.", + "File '/node_modules/@apollo/client/link/batch/batch.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/link/batch/batch.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/link/batch/batch.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/link/batch/index.ts' does not exist.", + "File '/node_modules/@apollo/client/link/batch/index.tsx' does not exist.", + "======== Module name '@apollo/client/link/batch' was successfully resolved to '/node_modules/@apollo/client/link/batch/batch.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/utilities/globals/DEV.d.ts", + "/node_modules/@apollo/client/utilities/globals/maybe.d.ts", + "/node_modules/@apollo/client/utilities/globals/global.d.ts", + "/node_modules/@apollo/client/utilities/globals/index.d.ts", + "/node_modules/@apollo/client/utilities/graphql/directives.d.ts", + "/node_modules/@apollo/client/utilities/graphql/fragments.d.ts", + "/node_modules/@apollo/client/utilities/graphql/getFromAST.d.ts", + "/node_modules/@apollo/client/utilities/graphql/storeUtils.d.ts", + "/node_modules/@apollo/client/utilities/graphql/transform.d.ts", + "/node_modules/@apollo/client/cache/core/types/Cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/entityStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fragmentRegistry.d.ts", + "/node_modules/@apollo/client/cache/inmemory/types.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fixPolyfills.d.ts", + "/node_modules/@apollo/client/link/http/parseAndCheckHttpResponse.d.ts", + "/node_modules/@apollo/client/link/http/serializeFetchParameter.d.ts", + "/node_modules/@apollo/client/link/http/selectHttpOptionsAndBody.d.ts", + "/node_modules/@apollo/client/link/http/checkFetcher.d.ts", + "/node_modules/@apollo/client/link/http/createSignalIfSupported.d.ts", + "/node_modules/@apollo/client/link/http/selectURI.d.ts", + "/node_modules/@apollo/client/link/http/createHttpLink.d.ts", + "/node_modules/@apollo/client/link/http/HttpLink.d.ts", + "/node_modules/@apollo/client/link/http/rewriteURIForGET.d.ts", + "/node_modules/@apollo/client/link/http/index.d.ts", + "/node_modules/@apollo/client/core/networkStatus.d.ts", + "/node_modules/@apollo/client/link/utils/fromError.d.ts", + "/node_modules/@apollo/client/link/utils/toPromise.d.ts", + "/node_modules/@apollo/client/link/utils/fromPromise.d.ts", + "/node_modules/@apollo/client/link/utils/throwServerError.d.ts", + "/node_modules/@apollo/client/link/utils/validateOperation.d.ts", + "/node_modules/@apollo/client/link/utils/createOperation.d.ts", + "/node_modules/@apollo/client/link/utils/transformOperation.d.ts", + "/node_modules/@apollo/client/link/utils/index.d.ts", + "/node_modules/@apollo/client/errors/index.d.ts", + "/node_modules/@apollo/client/core/QueryInfo.d.ts", + "/node_modules/@apollo/client/core/LocalState.d.ts", + "/node_modules/@apollo/client/core/types.d.ts", + "/node_modules/@apollo/client/core/watchQueryOptions.d.ts", + "/node_modules/@apollo/client/core/QueryManager.d.ts", + "/node_modules/@apollo/client/core/ObservableQuery.d.ts", + "/node_modules/@apollo/client/core/ApolloClient.d.ts", + "/node_modules/@apollo/client/core/index.d.ts", + "/node_modules/@apollo/client/cache/inmemory/reactiveVars.d.ts", + "/node_modules/@apollo/client/cache/inmemory/inMemoryCache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/object-canon.d.ts", + "/node_modules/@apollo/client/cache/inmemory/readFromStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/writeToStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/policies.d.ts", + "/node_modules/@apollo/client/cache/core/types/common.d.ts", + "/node_modules/@apollo/client/cache/core/types/DataProxy.d.ts", + "/node_modules/@apollo/client/cache/core/cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/helpers.d.ts", + "/node_modules/@apollo/client/cache/index.d.ts", + "/node_modules/@apollo/client/utilities/policies/pagination.d.ts", + "/node_modules/@apollo/client/utilities/observables/Observable.d.ts", + "/node_modules/@apollo/client/utilities/common/objects.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/cloneDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/maybeDeepFreeze.d.ts", + "/node_modules/@apollo/client/utilities/observables/iteration.d.ts", + "/node_modules/@apollo/client/utilities/observables/asyncMap.d.ts", + "/node_modules/@apollo/client/utilities/observables/Concast.d.ts", + "/node_modules/@apollo/client/utilities/observables/subclassing.d.ts", + "/node_modules/@apollo/client/utilities/common/arrays.d.ts", + "/node_modules/@apollo/client/utilities/common/errorHandling.d.ts", + "/node_modules/@apollo/client/utilities/common/canUse.d.ts", + "/node_modules/@apollo/client/utilities/common/compact.d.ts", + "/node_modules/@apollo/client/utilities/common/makeUniqueId.d.ts", + "/node_modules/@apollo/client/utilities/common/stringifyForDisplay.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeOptions.d.ts", + "/node_modules/@apollo/client/utilities/types/IsStrictlyAny.d.ts", + "/node_modules/@apollo/client/utilities/index.d.ts", + "/node_modules/@apollo/client/link/core/types.d.ts", + "/node_modules/@apollo/client/link/core/ApolloLink.d.ts", + "/node_modules/@apollo/client/link/core/empty.d.ts", + "/node_modules/@apollo/client/link/core/from.d.ts", + "/node_modules/@apollo/client/link/core/split.d.ts", + "/node_modules/@apollo/client/link/core/concat.d.ts", + "/node_modules/@apollo/client/link/core/execute.d.ts", + "/node_modules/@apollo/client/link/core/index.d.ts", + "/node_modules/@apollo/client/link/batch/batching.d.ts", + "/node_modules/@apollo/client/link/batch/batchLink.d.ts", + "/node_modules/@apollo/client/link/batch/index.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + }, + "./link/batch-http": { + "subpath": "./link/batch-http", + "resolutions": { + "node10": { + "name": "./link/batch-http", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/@apollo/client/link/batch-http/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/link/batch-http' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module '@apollo/client/link/batch-http' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/@apollo/client/link/batch-http/package.json'.", + "File '/node_modules/@apollo/client/link/batch-http.ts' does not exist.", + "File '/node_modules/@apollo/client/link/batch-http.tsx' does not exist.", + "File '/node_modules/@apollo/client/link/batch-http.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/link/batch-http/index.d.ts'.", + "File '/node_modules/@apollo/client/link/batch-http/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/link/batch-http' was successfully resolved to '/node_modules/@apollo/client/link/batch-http/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/link/batch-http/batch-http.cjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/link/batch-http' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module '@apollo/client/link/batch-http' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/link/batch-http/package.json'.", + "File '/node_modules/@apollo/client/link/batch-http.ts' does not exist.", + "File '/node_modules/@apollo/client/link/batch-http.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'batch-http.cjs' that references '/node_modules/@apollo/client/link/batch-http/batch-http.cjs'.", + "File '/node_modules/@apollo/client/link/batch-http/batch-http.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/link/batch-http/batch-http.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/batch-http/batch-http.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/link/batch-http/batch-http.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/link/batch-http/batch-http.cts' does not exist.", + "File '/node_modules/@apollo/client/link/batch-http/batch-http.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/link/batch-http/batch-http.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/link/batch-http/batch-http.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/link/batch-http/index.ts' does not exist.", + "File '/node_modules/@apollo/client/link/batch-http/index.tsx' does not exist.", + "Loading module '@apollo/client/link/batch-http' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/link/batch-http/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/batch-http.js' does not exist.", + "File '/node_modules/@apollo/client/link/batch-http.jsx' does not exist.", + "'package.json' has 'main' field 'batch-http.cjs' that references '/node_modules/@apollo/client/link/batch-http/batch-http.cjs'.", + "File '/node_modules/@apollo/client/link/batch-http/batch-http.cjs' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/link/batch-http' was successfully resolved to '/node_modules/@apollo/client/link/batch-http/batch-http.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/utilities/globals/DEV.d.ts", + "/node_modules/@apollo/client/utilities/globals/maybe.d.ts", + "/node_modules/@apollo/client/utilities/globals/global.d.ts", + "/node_modules/@apollo/client/utilities/globals/index.d.ts", + "/node_modules/@apollo/client/utilities/graphql/directives.d.ts", + "/node_modules/@apollo/client/utilities/graphql/fragments.d.ts", + "/node_modules/@apollo/client/utilities/graphql/getFromAST.d.ts", + "/node_modules/@apollo/client/utilities/graphql/storeUtils.d.ts", + "/node_modules/@apollo/client/utilities/graphql/transform.d.ts", + "/node_modules/@apollo/client/cache/core/types/Cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/entityStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fragmentRegistry.d.ts", + "/node_modules/@apollo/client/cache/inmemory/types.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fixPolyfills.d.ts", + "/node_modules/@apollo/client/link/http/parseAndCheckHttpResponse.d.ts", + "/node_modules/@apollo/client/link/http/serializeFetchParameter.d.ts", + "/node_modules/@apollo/client/link/http/selectHttpOptionsAndBody.d.ts", + "/node_modules/@apollo/client/link/http/checkFetcher.d.ts", + "/node_modules/@apollo/client/link/http/createSignalIfSupported.d.ts", + "/node_modules/@apollo/client/link/http/selectURI.d.ts", + "/node_modules/@apollo/client/link/http/createHttpLink.d.ts", + "/node_modules/@apollo/client/link/http/HttpLink.d.ts", + "/node_modules/@apollo/client/link/http/rewriteURIForGET.d.ts", + "/node_modules/@apollo/client/link/http/index.d.ts", + "/node_modules/@apollo/client/core/networkStatus.d.ts", + "/node_modules/@apollo/client/link/utils/fromError.d.ts", + "/node_modules/@apollo/client/link/utils/toPromise.d.ts", + "/node_modules/@apollo/client/link/utils/fromPromise.d.ts", + "/node_modules/@apollo/client/link/utils/throwServerError.d.ts", + "/node_modules/@apollo/client/link/utils/validateOperation.d.ts", + "/node_modules/@apollo/client/link/utils/createOperation.d.ts", + "/node_modules/@apollo/client/link/utils/transformOperation.d.ts", + "/node_modules/@apollo/client/link/utils/index.d.ts", + "/node_modules/@apollo/client/errors/index.d.ts", + "/node_modules/@apollo/client/core/QueryInfo.d.ts", + "/node_modules/@apollo/client/core/LocalState.d.ts", + "/node_modules/@apollo/client/core/types.d.ts", + "/node_modules/@apollo/client/core/watchQueryOptions.d.ts", + "/node_modules/@apollo/client/core/QueryManager.d.ts", + "/node_modules/@apollo/client/core/ObservableQuery.d.ts", + "/node_modules/@apollo/client/core/ApolloClient.d.ts", + "/node_modules/@apollo/client/core/index.d.ts", + "/node_modules/@apollo/client/cache/inmemory/reactiveVars.d.ts", + "/node_modules/@apollo/client/cache/inmemory/inMemoryCache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/object-canon.d.ts", + "/node_modules/@apollo/client/cache/inmemory/readFromStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/writeToStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/policies.d.ts", + "/node_modules/@apollo/client/cache/core/types/common.d.ts", + "/node_modules/@apollo/client/cache/core/types/DataProxy.d.ts", + "/node_modules/@apollo/client/cache/core/cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/helpers.d.ts", + "/node_modules/@apollo/client/cache/index.d.ts", + "/node_modules/@apollo/client/utilities/policies/pagination.d.ts", + "/node_modules/@apollo/client/utilities/observables/Observable.d.ts", + "/node_modules/@apollo/client/utilities/common/objects.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/cloneDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/maybeDeepFreeze.d.ts", + "/node_modules/@apollo/client/utilities/observables/iteration.d.ts", + "/node_modules/@apollo/client/utilities/observables/asyncMap.d.ts", + "/node_modules/@apollo/client/utilities/observables/Concast.d.ts", + "/node_modules/@apollo/client/utilities/observables/subclassing.d.ts", + "/node_modules/@apollo/client/utilities/common/arrays.d.ts", + "/node_modules/@apollo/client/utilities/common/errorHandling.d.ts", + "/node_modules/@apollo/client/utilities/common/canUse.d.ts", + "/node_modules/@apollo/client/utilities/common/compact.d.ts", + "/node_modules/@apollo/client/utilities/common/makeUniqueId.d.ts", + "/node_modules/@apollo/client/utilities/common/stringifyForDisplay.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeOptions.d.ts", + "/node_modules/@apollo/client/utilities/types/IsStrictlyAny.d.ts", + "/node_modules/@apollo/client/utilities/index.d.ts", + "/node_modules/@apollo/client/link/core/types.d.ts", + "/node_modules/@apollo/client/link/core/ApolloLink.d.ts", + "/node_modules/@apollo/client/link/core/empty.d.ts", + "/node_modules/@apollo/client/link/core/from.d.ts", + "/node_modules/@apollo/client/link/core/split.d.ts", + "/node_modules/@apollo/client/link/core/concat.d.ts", + "/node_modules/@apollo/client/link/core/execute.d.ts", + "/node_modules/@apollo/client/link/core/index.d.ts", + "/node_modules/@apollo/client/link/batch/batching.d.ts", + "/node_modules/@apollo/client/link/batch/batchLink.d.ts", + "/node_modules/@apollo/client/link/batch/index.d.ts", + "/node_modules/@apollo/client/link/batch-http/batchHttpLink.d.ts", + "/node_modules/@apollo/client/link/batch-http/index.d.ts" + ] + }, + "node16-cjs": { + "name": "./link/batch-http", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/@apollo/client/link/batch-http/index.d.ts", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/@apollo/client/link/batch-http/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/link/batch-http' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/batch-http' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/@apollo/client/link/batch-http/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/batch-http.ts' does not exist.", + "File '/node_modules/@apollo/client/link/batch-http.tsx' does not exist.", + "File '/node_modules/@apollo/client/link/batch-http.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/link/batch-http/index.d.ts'.", + "File '/node_modules/@apollo/client/link/batch-http/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/link/batch-http' was successfully resolved to '/node_modules/@apollo/client/link/batch-http/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/link/batch-http/batch-http.cjs", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "extension", + "reasonFileName": "/node_modules/@apollo/client/link/batch-http/batch-http.cjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/link/batch-http' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/batch-http' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/link/batch-http/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/batch-http.ts' does not exist.", + "File '/node_modules/@apollo/client/link/batch-http.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'batch-http.cjs' that references '/node_modules/@apollo/client/link/batch-http/batch-http.cjs'.", + "File '/node_modules/@apollo/client/link/batch-http/batch-http.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/link/batch-http/batch-http.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/batch-http/batch-http.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/link/batch-http/batch-http.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/link/batch-http/batch-http.cts' does not exist.", + "File '/node_modules/@apollo/client/link/batch-http/batch-http.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/link/batch-http/batch-http.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/link/batch-http/batch-http.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/link/batch-http/index.ts' does not exist.", + "File '/node_modules/@apollo/client/link/batch-http/index.tsx' does not exist.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/link/batch-http/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/batch-http.js' does not exist.", + "File '/node_modules/@apollo/client/link/batch-http.jsx' does not exist.", + "'package.json' has 'main' field 'batch-http.cjs' that references '/node_modules/@apollo/client/link/batch-http/batch-http.cjs'.", + "File '/node_modules/@apollo/client/link/batch-http/batch-http.cjs' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/link/batch-http' was successfully resolved to '/node_modules/@apollo/client/link/batch-http/batch-http.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/link/batch-http/index.d.ts" + ] + }, + "node16-esm": { + "name": "./link/batch-http", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/@apollo/client/link/batch-http/index.d.ts", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/@apollo/client/link/batch-http/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/link/batch-http' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/batch-http' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/@apollo/client/link/batch-http/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/link/batch-http/index.d.ts'.", + "File '/node_modules/@apollo/client/link/batch-http/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/link/batch-http' was successfully resolved to '/node_modules/@apollo/client/link/batch-http/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/link/batch-http/batch-http.cjs", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "extension", + "reasonFileName": "/node_modules/@apollo/client/link/batch-http/batch-http.cjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/link/batch-http' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/batch-http' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/link/batch-http/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'batch-http.cjs' that references '/node_modules/@apollo/client/link/batch-http/batch-http.cjs'.", + "File '/node_modules/@apollo/client/link/batch-http/batch-http.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/link/batch-http/batch-http.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/batch-http/batch-http.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/link/batch-http/batch-http.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/link/batch-http/batch-http.cts' does not exist.", + "Directory '/node_modules/@apollo/client/link/batch-http/batch-http.cjs' does not exist, skipping all lookups in it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/link/batch-http/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'batch-http.cjs' that references '/node_modules/@apollo/client/link/batch-http/batch-http.cjs'.", + "File '/node_modules/@apollo/client/link/batch-http/batch-http.cjs' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/batch-http' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/link/batch-http/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'batch-http.cjs' that references '/node_modules/@apollo/client/link/batch-http/batch-http.cjs'.", + "File '/node_modules/@apollo/client/link/batch-http/batch-http.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/link/batch-http/batch-http.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/batch-http/batch-http.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/link/batch-http/batch-http.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/link/batch-http/batch-http.cts' does not exist.", + "Directory '/node_modules/@apollo/client/link/batch-http/batch-http.cjs' does not exist, skipping all lookups in it.", + "======== Module name '@apollo/client/link/batch-http' was successfully resolved to '/node_modules/@apollo/client/link/batch-http/batch-http.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/link/batch-http/index.d.ts" + ] + }, + "bundler": { + "name": "./link/batch-http", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/@apollo/client/link/batch-http/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/link/batch-http' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/batch-http' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/@apollo/client/link/batch-http/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/batch-http.ts' does not exist.", + "File '/node_modules/@apollo/client/link/batch-http.tsx' does not exist.", + "File '/node_modules/@apollo/client/link/batch-http.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/link/batch-http/index.d.ts'.", + "File '/node_modules/@apollo/client/link/batch-http/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/link/batch-http' was successfully resolved to '/node_modules/@apollo/client/link/batch-http/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/link/batch-http/batch-http.cjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/link/batch-http' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/batch-http' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/link/batch-http/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/batch-http.ts' does not exist.", + "File '/node_modules/@apollo/client/link/batch-http.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'batch-http.cjs' that references '/node_modules/@apollo/client/link/batch-http/batch-http.cjs'.", + "File '/node_modules/@apollo/client/link/batch-http/batch-http.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/link/batch-http/batch-http.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/batch-http/batch-http.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/link/batch-http/batch-http.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/link/batch-http/batch-http.cts' does not exist.", + "File '/node_modules/@apollo/client/link/batch-http/batch-http.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/link/batch-http/batch-http.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/link/batch-http/batch-http.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/link/batch-http/index.ts' does not exist.", + "File '/node_modules/@apollo/client/link/batch-http/index.tsx' does not exist.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/link/batch-http/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/batch-http.js' does not exist.", + "File '/node_modules/@apollo/client/link/batch-http.jsx' does not exist.", + "'package.json' has 'main' field 'batch-http.cjs' that references '/node_modules/@apollo/client/link/batch-http/batch-http.cjs'.", + "File '/node_modules/@apollo/client/link/batch-http/batch-http.cjs' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/batch-http' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/link/batch-http/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/batch-http.ts' does not exist.", + "File '/node_modules/@apollo/client/link/batch-http.tsx' does not exist.", + "'package.json' has 'main' field 'batch-http.cjs' that references '/node_modules/@apollo/client/link/batch-http/batch-http.cjs'.", + "File '/node_modules/@apollo/client/link/batch-http/batch-http.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/link/batch-http/batch-http.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/batch-http/batch-http.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/link/batch-http/batch-http.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/link/batch-http/batch-http.cts' does not exist.", + "File '/node_modules/@apollo/client/link/batch-http/batch-http.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/link/batch-http/batch-http.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/link/batch-http/batch-http.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/link/batch-http/index.ts' does not exist.", + "File '/node_modules/@apollo/client/link/batch-http/index.tsx' does not exist.", + "======== Module name '@apollo/client/link/batch-http' was successfully resolved to '/node_modules/@apollo/client/link/batch-http/batch-http.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/utilities/globals/DEV.d.ts", + "/node_modules/@apollo/client/utilities/globals/maybe.d.ts", + "/node_modules/@apollo/client/utilities/globals/global.d.ts", + "/node_modules/@apollo/client/utilities/globals/index.d.ts", + "/node_modules/@apollo/client/utilities/graphql/directives.d.ts", + "/node_modules/@apollo/client/utilities/graphql/fragments.d.ts", + "/node_modules/@apollo/client/utilities/graphql/getFromAST.d.ts", + "/node_modules/@apollo/client/utilities/graphql/storeUtils.d.ts", + "/node_modules/@apollo/client/utilities/graphql/transform.d.ts", + "/node_modules/@apollo/client/cache/core/types/Cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/entityStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fragmentRegistry.d.ts", + "/node_modules/@apollo/client/cache/inmemory/types.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fixPolyfills.d.ts", + "/node_modules/@apollo/client/link/http/parseAndCheckHttpResponse.d.ts", + "/node_modules/@apollo/client/link/http/serializeFetchParameter.d.ts", + "/node_modules/@apollo/client/link/http/selectHttpOptionsAndBody.d.ts", + "/node_modules/@apollo/client/link/http/checkFetcher.d.ts", + "/node_modules/@apollo/client/link/http/createSignalIfSupported.d.ts", + "/node_modules/@apollo/client/link/http/selectURI.d.ts", + "/node_modules/@apollo/client/link/http/createHttpLink.d.ts", + "/node_modules/@apollo/client/link/http/HttpLink.d.ts", + "/node_modules/@apollo/client/link/http/rewriteURIForGET.d.ts", + "/node_modules/@apollo/client/link/http/index.d.ts", + "/node_modules/@apollo/client/core/networkStatus.d.ts", + "/node_modules/@apollo/client/link/utils/fromError.d.ts", + "/node_modules/@apollo/client/link/utils/toPromise.d.ts", + "/node_modules/@apollo/client/link/utils/fromPromise.d.ts", + "/node_modules/@apollo/client/link/utils/throwServerError.d.ts", + "/node_modules/@apollo/client/link/utils/validateOperation.d.ts", + "/node_modules/@apollo/client/link/utils/createOperation.d.ts", + "/node_modules/@apollo/client/link/utils/transformOperation.d.ts", + "/node_modules/@apollo/client/link/utils/index.d.ts", + "/node_modules/@apollo/client/errors/index.d.ts", + "/node_modules/@apollo/client/core/QueryInfo.d.ts", + "/node_modules/@apollo/client/core/LocalState.d.ts", + "/node_modules/@apollo/client/core/types.d.ts", + "/node_modules/@apollo/client/core/watchQueryOptions.d.ts", + "/node_modules/@apollo/client/core/QueryManager.d.ts", + "/node_modules/@apollo/client/core/ObservableQuery.d.ts", + "/node_modules/@apollo/client/core/ApolloClient.d.ts", + "/node_modules/@apollo/client/core/index.d.ts", + "/node_modules/@apollo/client/cache/inmemory/reactiveVars.d.ts", + "/node_modules/@apollo/client/cache/inmemory/inMemoryCache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/object-canon.d.ts", + "/node_modules/@apollo/client/cache/inmemory/readFromStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/writeToStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/policies.d.ts", + "/node_modules/@apollo/client/cache/core/types/common.d.ts", + "/node_modules/@apollo/client/cache/core/types/DataProxy.d.ts", + "/node_modules/@apollo/client/cache/core/cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/helpers.d.ts", + "/node_modules/@apollo/client/cache/index.d.ts", + "/node_modules/@apollo/client/utilities/policies/pagination.d.ts", + "/node_modules/@apollo/client/utilities/observables/Observable.d.ts", + "/node_modules/@apollo/client/utilities/common/objects.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/cloneDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/maybeDeepFreeze.d.ts", + "/node_modules/@apollo/client/utilities/observables/iteration.d.ts", + "/node_modules/@apollo/client/utilities/observables/asyncMap.d.ts", + "/node_modules/@apollo/client/utilities/observables/Concast.d.ts", + "/node_modules/@apollo/client/utilities/observables/subclassing.d.ts", + "/node_modules/@apollo/client/utilities/common/arrays.d.ts", + "/node_modules/@apollo/client/utilities/common/errorHandling.d.ts", + "/node_modules/@apollo/client/utilities/common/canUse.d.ts", + "/node_modules/@apollo/client/utilities/common/compact.d.ts", + "/node_modules/@apollo/client/utilities/common/makeUniqueId.d.ts", + "/node_modules/@apollo/client/utilities/common/stringifyForDisplay.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeOptions.d.ts", + "/node_modules/@apollo/client/utilities/types/IsStrictlyAny.d.ts", + "/node_modules/@apollo/client/utilities/index.d.ts", + "/node_modules/@apollo/client/link/core/types.d.ts", + "/node_modules/@apollo/client/link/core/ApolloLink.d.ts", + "/node_modules/@apollo/client/link/core/empty.d.ts", + "/node_modules/@apollo/client/link/core/from.d.ts", + "/node_modules/@apollo/client/link/core/split.d.ts", + "/node_modules/@apollo/client/link/core/concat.d.ts", + "/node_modules/@apollo/client/link/core/execute.d.ts", + "/node_modules/@apollo/client/link/core/index.d.ts", + "/node_modules/@apollo/client/link/batch/batching.d.ts", + "/node_modules/@apollo/client/link/batch/batchLink.d.ts", + "/node_modules/@apollo/client/link/batch/index.d.ts", + "/node_modules/@apollo/client/link/batch-http/batchHttpLink.d.ts", + "/node_modules/@apollo/client/link/batch-http/index.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + }, + "./link/context": { + "subpath": "./link/context", + "resolutions": { + "node10": { + "name": "./link/context", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/@apollo/client/link/context/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/link/context' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module '@apollo/client/link/context' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/@apollo/client/link/context/package.json'.", + "File '/node_modules/@apollo/client/link/context.ts' does not exist.", + "File '/node_modules/@apollo/client/link/context.tsx' does not exist.", + "File '/node_modules/@apollo/client/link/context.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/link/context/index.d.ts'.", + "File '/node_modules/@apollo/client/link/context/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/link/context' was successfully resolved to '/node_modules/@apollo/client/link/context/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/link/context/context.cjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/link/context' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module '@apollo/client/link/context' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/link/context/package.json'.", + "File '/node_modules/@apollo/client/link/context.ts' does not exist.", + "File '/node_modules/@apollo/client/link/context.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'context.cjs' that references '/node_modules/@apollo/client/link/context/context.cjs'.", + "File '/node_modules/@apollo/client/link/context/context.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/link/context/context.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/context/context.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/link/context/context.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/link/context/context.cts' does not exist.", + "File '/node_modules/@apollo/client/link/context/context.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/link/context/context.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/link/context/context.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/link/context/index.ts' does not exist.", + "File '/node_modules/@apollo/client/link/context/index.tsx' does not exist.", + "Loading module '@apollo/client/link/context' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/link/context/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/context.js' does not exist.", + "File '/node_modules/@apollo/client/link/context.jsx' does not exist.", + "'package.json' has 'main' field 'context.cjs' that references '/node_modules/@apollo/client/link/context/context.cjs'.", + "File '/node_modules/@apollo/client/link/context/context.cjs' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/link/context' was successfully resolved to '/node_modules/@apollo/client/link/context/context.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/utilities/globals/DEV.d.ts", + "/node_modules/@apollo/client/utilities/globals/maybe.d.ts", + "/node_modules/@apollo/client/utilities/globals/global.d.ts", + "/node_modules/@apollo/client/utilities/globals/index.d.ts", + "/node_modules/@apollo/client/utilities/graphql/directives.d.ts", + "/node_modules/@apollo/client/utilities/graphql/fragments.d.ts", + "/node_modules/@apollo/client/utilities/graphql/getFromAST.d.ts", + "/node_modules/@apollo/client/utilities/graphql/storeUtils.d.ts", + "/node_modules/@apollo/client/utilities/graphql/transform.d.ts", + "/node_modules/@apollo/client/cache/core/types/Cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/entityStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fragmentRegistry.d.ts", + "/node_modules/@apollo/client/cache/inmemory/types.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fixPolyfills.d.ts", + "/node_modules/@apollo/client/link/http/parseAndCheckHttpResponse.d.ts", + "/node_modules/@apollo/client/link/http/serializeFetchParameter.d.ts", + "/node_modules/@apollo/client/link/http/selectHttpOptionsAndBody.d.ts", + "/node_modules/@apollo/client/link/http/checkFetcher.d.ts", + "/node_modules/@apollo/client/link/http/createSignalIfSupported.d.ts", + "/node_modules/@apollo/client/link/http/selectURI.d.ts", + "/node_modules/@apollo/client/link/http/createHttpLink.d.ts", + "/node_modules/@apollo/client/link/http/HttpLink.d.ts", + "/node_modules/@apollo/client/link/http/rewriteURIForGET.d.ts", + "/node_modules/@apollo/client/link/http/index.d.ts", + "/node_modules/@apollo/client/core/networkStatus.d.ts", + "/node_modules/@apollo/client/link/utils/fromError.d.ts", + "/node_modules/@apollo/client/link/utils/toPromise.d.ts", + "/node_modules/@apollo/client/link/utils/fromPromise.d.ts", + "/node_modules/@apollo/client/link/utils/throwServerError.d.ts", + "/node_modules/@apollo/client/link/utils/validateOperation.d.ts", + "/node_modules/@apollo/client/link/utils/createOperation.d.ts", + "/node_modules/@apollo/client/link/utils/transformOperation.d.ts", + "/node_modules/@apollo/client/link/utils/index.d.ts", + "/node_modules/@apollo/client/errors/index.d.ts", + "/node_modules/@apollo/client/core/QueryInfo.d.ts", + "/node_modules/@apollo/client/core/LocalState.d.ts", + "/node_modules/@apollo/client/core/types.d.ts", + "/node_modules/@apollo/client/core/watchQueryOptions.d.ts", + "/node_modules/@apollo/client/core/QueryManager.d.ts", + "/node_modules/@apollo/client/core/ObservableQuery.d.ts", + "/node_modules/@apollo/client/core/ApolloClient.d.ts", + "/node_modules/@apollo/client/core/index.d.ts", + "/node_modules/@apollo/client/cache/inmemory/reactiveVars.d.ts", + "/node_modules/@apollo/client/cache/inmemory/inMemoryCache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/object-canon.d.ts", + "/node_modules/@apollo/client/cache/inmemory/readFromStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/writeToStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/policies.d.ts", + "/node_modules/@apollo/client/cache/core/types/common.d.ts", + "/node_modules/@apollo/client/cache/core/types/DataProxy.d.ts", + "/node_modules/@apollo/client/cache/core/cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/helpers.d.ts", + "/node_modules/@apollo/client/cache/index.d.ts", + "/node_modules/@apollo/client/utilities/policies/pagination.d.ts", + "/node_modules/@apollo/client/utilities/observables/Observable.d.ts", + "/node_modules/@apollo/client/utilities/common/objects.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/cloneDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/maybeDeepFreeze.d.ts", + "/node_modules/@apollo/client/utilities/observables/iteration.d.ts", + "/node_modules/@apollo/client/utilities/observables/asyncMap.d.ts", + "/node_modules/@apollo/client/utilities/observables/Concast.d.ts", + "/node_modules/@apollo/client/utilities/observables/subclassing.d.ts", + "/node_modules/@apollo/client/utilities/common/arrays.d.ts", + "/node_modules/@apollo/client/utilities/common/errorHandling.d.ts", + "/node_modules/@apollo/client/utilities/common/canUse.d.ts", + "/node_modules/@apollo/client/utilities/common/compact.d.ts", + "/node_modules/@apollo/client/utilities/common/makeUniqueId.d.ts", + "/node_modules/@apollo/client/utilities/common/stringifyForDisplay.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeOptions.d.ts", + "/node_modules/@apollo/client/utilities/types/IsStrictlyAny.d.ts", + "/node_modules/@apollo/client/utilities/index.d.ts", + "/node_modules/@apollo/client/link/core/types.d.ts", + "/node_modules/@apollo/client/link/core/ApolloLink.d.ts", + "/node_modules/@apollo/client/link/core/empty.d.ts", + "/node_modules/@apollo/client/link/core/from.d.ts", + "/node_modules/@apollo/client/link/core/split.d.ts", + "/node_modules/@apollo/client/link/core/concat.d.ts", + "/node_modules/@apollo/client/link/core/execute.d.ts", + "/node_modules/@apollo/client/link/core/index.d.ts", + "/node_modules/@apollo/client/link/context/index.d.ts" + ] + }, + "node16-cjs": { + "name": "./link/context", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/@apollo/client/link/context/index.d.ts", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/@apollo/client/link/context/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/link/context' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/context' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/@apollo/client/link/context/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/context.ts' does not exist.", + "File '/node_modules/@apollo/client/link/context.tsx' does not exist.", + "File '/node_modules/@apollo/client/link/context.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/link/context/index.d.ts'.", + "File '/node_modules/@apollo/client/link/context/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/link/context' was successfully resolved to '/node_modules/@apollo/client/link/context/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/link/context/context.cjs", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "extension", + "reasonFileName": "/node_modules/@apollo/client/link/context/context.cjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/link/context' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/context' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/link/context/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/context.ts' does not exist.", + "File '/node_modules/@apollo/client/link/context.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'context.cjs' that references '/node_modules/@apollo/client/link/context/context.cjs'.", + "File '/node_modules/@apollo/client/link/context/context.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/link/context/context.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/context/context.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/link/context/context.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/link/context/context.cts' does not exist.", + "File '/node_modules/@apollo/client/link/context/context.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/link/context/context.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/link/context/context.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/link/context/index.ts' does not exist.", + "File '/node_modules/@apollo/client/link/context/index.tsx' does not exist.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/link/context/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/context.js' does not exist.", + "File '/node_modules/@apollo/client/link/context.jsx' does not exist.", + "'package.json' has 'main' field 'context.cjs' that references '/node_modules/@apollo/client/link/context/context.cjs'.", + "File '/node_modules/@apollo/client/link/context/context.cjs' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/link/context' was successfully resolved to '/node_modules/@apollo/client/link/context/context.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/link/context/index.d.ts" + ] + }, + "node16-esm": { + "name": "./link/context", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/@apollo/client/link/context/index.d.ts", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/@apollo/client/link/context/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/link/context' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/context' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/@apollo/client/link/context/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/link/context/index.d.ts'.", + "File '/node_modules/@apollo/client/link/context/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/link/context' was successfully resolved to '/node_modules/@apollo/client/link/context/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/link/context/context.cjs", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "extension", + "reasonFileName": "/node_modules/@apollo/client/link/context/context.cjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/link/context' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/context' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/link/context/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'context.cjs' that references '/node_modules/@apollo/client/link/context/context.cjs'.", + "File '/node_modules/@apollo/client/link/context/context.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/link/context/context.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/context/context.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/link/context/context.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/link/context/context.cts' does not exist.", + "Directory '/node_modules/@apollo/client/link/context/context.cjs' does not exist, skipping all lookups in it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/link/context/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'context.cjs' that references '/node_modules/@apollo/client/link/context/context.cjs'.", + "File '/node_modules/@apollo/client/link/context/context.cjs' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/context' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/link/context/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'context.cjs' that references '/node_modules/@apollo/client/link/context/context.cjs'.", + "File '/node_modules/@apollo/client/link/context/context.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/link/context/context.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/context/context.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/link/context/context.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/link/context/context.cts' does not exist.", + "Directory '/node_modules/@apollo/client/link/context/context.cjs' does not exist, skipping all lookups in it.", + "======== Module name '@apollo/client/link/context' was successfully resolved to '/node_modules/@apollo/client/link/context/context.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/link/context/index.d.ts" + ] + }, + "bundler": { + "name": "./link/context", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/@apollo/client/link/context/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/link/context' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/context' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/@apollo/client/link/context/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/context.ts' does not exist.", + "File '/node_modules/@apollo/client/link/context.tsx' does not exist.", + "File '/node_modules/@apollo/client/link/context.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/link/context/index.d.ts'.", + "File '/node_modules/@apollo/client/link/context/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/link/context' was successfully resolved to '/node_modules/@apollo/client/link/context/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/link/context/context.cjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/link/context' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/context' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/link/context/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/context.ts' does not exist.", + "File '/node_modules/@apollo/client/link/context.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'context.cjs' that references '/node_modules/@apollo/client/link/context/context.cjs'.", + "File '/node_modules/@apollo/client/link/context/context.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/link/context/context.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/context/context.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/link/context/context.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/link/context/context.cts' does not exist.", + "File '/node_modules/@apollo/client/link/context/context.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/link/context/context.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/link/context/context.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/link/context/index.ts' does not exist.", + "File '/node_modules/@apollo/client/link/context/index.tsx' does not exist.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/link/context/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/context.js' does not exist.", + "File '/node_modules/@apollo/client/link/context.jsx' does not exist.", + "'package.json' has 'main' field 'context.cjs' that references '/node_modules/@apollo/client/link/context/context.cjs'.", + "File '/node_modules/@apollo/client/link/context/context.cjs' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/context' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/link/context/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/context.ts' does not exist.", + "File '/node_modules/@apollo/client/link/context.tsx' does not exist.", + "'package.json' has 'main' field 'context.cjs' that references '/node_modules/@apollo/client/link/context/context.cjs'.", + "File '/node_modules/@apollo/client/link/context/context.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/link/context/context.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/context/context.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/link/context/context.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/link/context/context.cts' does not exist.", + "File '/node_modules/@apollo/client/link/context/context.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/link/context/context.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/link/context/context.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/link/context/index.ts' does not exist.", + "File '/node_modules/@apollo/client/link/context/index.tsx' does not exist.", + "======== Module name '@apollo/client/link/context' was successfully resolved to '/node_modules/@apollo/client/link/context/context.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/utilities/globals/DEV.d.ts", + "/node_modules/@apollo/client/utilities/globals/maybe.d.ts", + "/node_modules/@apollo/client/utilities/globals/global.d.ts", + "/node_modules/@apollo/client/utilities/globals/index.d.ts", + "/node_modules/@apollo/client/utilities/graphql/directives.d.ts", + "/node_modules/@apollo/client/utilities/graphql/fragments.d.ts", + "/node_modules/@apollo/client/utilities/graphql/getFromAST.d.ts", + "/node_modules/@apollo/client/utilities/graphql/storeUtils.d.ts", + "/node_modules/@apollo/client/utilities/graphql/transform.d.ts", + "/node_modules/@apollo/client/cache/core/types/Cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/entityStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fragmentRegistry.d.ts", + "/node_modules/@apollo/client/cache/inmemory/types.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fixPolyfills.d.ts", + "/node_modules/@apollo/client/link/http/parseAndCheckHttpResponse.d.ts", + "/node_modules/@apollo/client/link/http/serializeFetchParameter.d.ts", + "/node_modules/@apollo/client/link/http/selectHttpOptionsAndBody.d.ts", + "/node_modules/@apollo/client/link/http/checkFetcher.d.ts", + "/node_modules/@apollo/client/link/http/createSignalIfSupported.d.ts", + "/node_modules/@apollo/client/link/http/selectURI.d.ts", + "/node_modules/@apollo/client/link/http/createHttpLink.d.ts", + "/node_modules/@apollo/client/link/http/HttpLink.d.ts", + "/node_modules/@apollo/client/link/http/rewriteURIForGET.d.ts", + "/node_modules/@apollo/client/link/http/index.d.ts", + "/node_modules/@apollo/client/core/networkStatus.d.ts", + "/node_modules/@apollo/client/link/utils/fromError.d.ts", + "/node_modules/@apollo/client/link/utils/toPromise.d.ts", + "/node_modules/@apollo/client/link/utils/fromPromise.d.ts", + "/node_modules/@apollo/client/link/utils/throwServerError.d.ts", + "/node_modules/@apollo/client/link/utils/validateOperation.d.ts", + "/node_modules/@apollo/client/link/utils/createOperation.d.ts", + "/node_modules/@apollo/client/link/utils/transformOperation.d.ts", + "/node_modules/@apollo/client/link/utils/index.d.ts", + "/node_modules/@apollo/client/errors/index.d.ts", + "/node_modules/@apollo/client/core/QueryInfo.d.ts", + "/node_modules/@apollo/client/core/LocalState.d.ts", + "/node_modules/@apollo/client/core/types.d.ts", + "/node_modules/@apollo/client/core/watchQueryOptions.d.ts", + "/node_modules/@apollo/client/core/QueryManager.d.ts", + "/node_modules/@apollo/client/core/ObservableQuery.d.ts", + "/node_modules/@apollo/client/core/ApolloClient.d.ts", + "/node_modules/@apollo/client/core/index.d.ts", + "/node_modules/@apollo/client/cache/inmemory/reactiveVars.d.ts", + "/node_modules/@apollo/client/cache/inmemory/inMemoryCache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/object-canon.d.ts", + "/node_modules/@apollo/client/cache/inmemory/readFromStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/writeToStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/policies.d.ts", + "/node_modules/@apollo/client/cache/core/types/common.d.ts", + "/node_modules/@apollo/client/cache/core/types/DataProxy.d.ts", + "/node_modules/@apollo/client/cache/core/cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/helpers.d.ts", + "/node_modules/@apollo/client/cache/index.d.ts", + "/node_modules/@apollo/client/utilities/policies/pagination.d.ts", + "/node_modules/@apollo/client/utilities/observables/Observable.d.ts", + "/node_modules/@apollo/client/utilities/common/objects.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/cloneDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/maybeDeepFreeze.d.ts", + "/node_modules/@apollo/client/utilities/observables/iteration.d.ts", + "/node_modules/@apollo/client/utilities/observables/asyncMap.d.ts", + "/node_modules/@apollo/client/utilities/observables/Concast.d.ts", + "/node_modules/@apollo/client/utilities/observables/subclassing.d.ts", + "/node_modules/@apollo/client/utilities/common/arrays.d.ts", + "/node_modules/@apollo/client/utilities/common/errorHandling.d.ts", + "/node_modules/@apollo/client/utilities/common/canUse.d.ts", + "/node_modules/@apollo/client/utilities/common/compact.d.ts", + "/node_modules/@apollo/client/utilities/common/makeUniqueId.d.ts", + "/node_modules/@apollo/client/utilities/common/stringifyForDisplay.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeOptions.d.ts", + "/node_modules/@apollo/client/utilities/types/IsStrictlyAny.d.ts", + "/node_modules/@apollo/client/utilities/index.d.ts", + "/node_modules/@apollo/client/link/core/types.d.ts", + "/node_modules/@apollo/client/link/core/ApolloLink.d.ts", + "/node_modules/@apollo/client/link/core/empty.d.ts", + "/node_modules/@apollo/client/link/core/from.d.ts", + "/node_modules/@apollo/client/link/core/split.d.ts", + "/node_modules/@apollo/client/link/core/concat.d.ts", + "/node_modules/@apollo/client/link/core/execute.d.ts", + "/node_modules/@apollo/client/link/core/index.d.ts", + "/node_modules/@apollo/client/link/context/index.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + }, + "./link/core": { + "subpath": "./link/core", + "resolutions": { + "node10": { + "name": "./link/core", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/@apollo/client/link/core/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/link/core' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module '@apollo/client/link/core' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/@apollo/client/link/core/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/core.ts' does not exist.", + "File '/node_modules/@apollo/client/link/core.tsx' does not exist.", + "File '/node_modules/@apollo/client/link/core.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/link/core/index.d.ts'.", + "File '/node_modules/@apollo/client/link/core/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/link/core' was successfully resolved to '/node_modules/@apollo/client/link/core/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/link/core/core.cjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/link/core' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module '@apollo/client/link/core' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/link/core/package.json'.", + "File '/node_modules/@apollo/client/link/core.ts' does not exist.", + "File '/node_modules/@apollo/client/link/core.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'core.cjs' that references '/node_modules/@apollo/client/link/core/core.cjs'.", + "File '/node_modules/@apollo/client/link/core/core.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/link/core/core.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/core/core.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/link/core/core.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/link/core/core.cts' does not exist.", + "File '/node_modules/@apollo/client/link/core/core.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/link/core/core.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/link/core/core.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/link/core/index.ts' does not exist.", + "File '/node_modules/@apollo/client/link/core/index.tsx' does not exist.", + "Loading module '@apollo/client/link/core' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/link/core/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/core.js' does not exist.", + "File '/node_modules/@apollo/client/link/core.jsx' does not exist.", + "'package.json' has 'main' field 'core.cjs' that references '/node_modules/@apollo/client/link/core/core.cjs'.", + "File '/node_modules/@apollo/client/link/core/core.cjs' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/link/core' was successfully resolved to '/node_modules/@apollo/client/link/core/core.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/utilities/globals/DEV.d.ts", + "/node_modules/@apollo/client/utilities/globals/maybe.d.ts", + "/node_modules/@apollo/client/utilities/globals/global.d.ts", + "/node_modules/@apollo/client/utilities/globals/index.d.ts", + "/node_modules/@apollo/client/utilities/graphql/directives.d.ts", + "/node_modules/@apollo/client/utilities/graphql/fragments.d.ts", + "/node_modules/@apollo/client/utilities/graphql/getFromAST.d.ts", + "/node_modules/@apollo/client/utilities/graphql/storeUtils.d.ts", + "/node_modules/@apollo/client/utilities/graphql/transform.d.ts", + "/node_modules/@apollo/client/cache/core/types/Cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/entityStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fragmentRegistry.d.ts", + "/node_modules/@apollo/client/cache/inmemory/types.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fixPolyfills.d.ts", + "/node_modules/@apollo/client/link/http/parseAndCheckHttpResponse.d.ts", + "/node_modules/@apollo/client/link/http/serializeFetchParameter.d.ts", + "/node_modules/@apollo/client/link/http/selectHttpOptionsAndBody.d.ts", + "/node_modules/@apollo/client/link/http/checkFetcher.d.ts", + "/node_modules/@apollo/client/link/http/createSignalIfSupported.d.ts", + "/node_modules/@apollo/client/link/http/selectURI.d.ts", + "/node_modules/@apollo/client/link/http/createHttpLink.d.ts", + "/node_modules/@apollo/client/link/http/HttpLink.d.ts", + "/node_modules/@apollo/client/link/http/rewriteURIForGET.d.ts", + "/node_modules/@apollo/client/link/http/index.d.ts", + "/node_modules/@apollo/client/core/networkStatus.d.ts", + "/node_modules/@apollo/client/link/utils/fromError.d.ts", + "/node_modules/@apollo/client/link/utils/toPromise.d.ts", + "/node_modules/@apollo/client/link/utils/fromPromise.d.ts", + "/node_modules/@apollo/client/link/utils/throwServerError.d.ts", + "/node_modules/@apollo/client/link/utils/validateOperation.d.ts", + "/node_modules/@apollo/client/link/utils/createOperation.d.ts", + "/node_modules/@apollo/client/link/utils/transformOperation.d.ts", + "/node_modules/@apollo/client/link/utils/index.d.ts", + "/node_modules/@apollo/client/errors/index.d.ts", + "/node_modules/@apollo/client/core/QueryInfo.d.ts", + "/node_modules/@apollo/client/core/LocalState.d.ts", + "/node_modules/@apollo/client/core/types.d.ts", + "/node_modules/@apollo/client/core/watchQueryOptions.d.ts", + "/node_modules/@apollo/client/core/QueryManager.d.ts", + "/node_modules/@apollo/client/core/ObservableQuery.d.ts", + "/node_modules/@apollo/client/core/ApolloClient.d.ts", + "/node_modules/@apollo/client/core/index.d.ts", + "/node_modules/@apollo/client/cache/inmemory/reactiveVars.d.ts", + "/node_modules/@apollo/client/cache/inmemory/inMemoryCache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/object-canon.d.ts", + "/node_modules/@apollo/client/cache/inmemory/readFromStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/writeToStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/policies.d.ts", + "/node_modules/@apollo/client/cache/core/types/common.d.ts", + "/node_modules/@apollo/client/cache/core/types/DataProxy.d.ts", + "/node_modules/@apollo/client/cache/core/cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/helpers.d.ts", + "/node_modules/@apollo/client/cache/index.d.ts", + "/node_modules/@apollo/client/utilities/policies/pagination.d.ts", + "/node_modules/@apollo/client/utilities/observables/Observable.d.ts", + "/node_modules/@apollo/client/utilities/common/objects.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/cloneDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/maybeDeepFreeze.d.ts", + "/node_modules/@apollo/client/utilities/observables/iteration.d.ts", + "/node_modules/@apollo/client/utilities/observables/asyncMap.d.ts", + "/node_modules/@apollo/client/utilities/observables/Concast.d.ts", + "/node_modules/@apollo/client/utilities/observables/subclassing.d.ts", + "/node_modules/@apollo/client/utilities/common/arrays.d.ts", + "/node_modules/@apollo/client/utilities/common/errorHandling.d.ts", + "/node_modules/@apollo/client/utilities/common/canUse.d.ts", + "/node_modules/@apollo/client/utilities/common/compact.d.ts", + "/node_modules/@apollo/client/utilities/common/makeUniqueId.d.ts", + "/node_modules/@apollo/client/utilities/common/stringifyForDisplay.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeOptions.d.ts", + "/node_modules/@apollo/client/utilities/types/IsStrictlyAny.d.ts", + "/node_modules/@apollo/client/utilities/index.d.ts", + "/node_modules/@apollo/client/link/core/types.d.ts", + "/node_modules/@apollo/client/link/core/ApolloLink.d.ts", + "/node_modules/@apollo/client/link/core/empty.d.ts", + "/node_modules/@apollo/client/link/core/from.d.ts", + "/node_modules/@apollo/client/link/core/split.d.ts", + "/node_modules/@apollo/client/link/core/concat.d.ts", + "/node_modules/@apollo/client/link/core/execute.d.ts", + "/node_modules/@apollo/client/link/core/index.d.ts" + ] + }, + "node16-cjs": { + "name": "./link/core", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/@apollo/client/link/core/index.d.ts", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/@apollo/client/link/core/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/link/core' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/core' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/@apollo/client/link/core/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/core.ts' does not exist.", + "File '/node_modules/@apollo/client/link/core.tsx' does not exist.", + "File '/node_modules/@apollo/client/link/core.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/link/core/index.d.ts'.", + "File '/node_modules/@apollo/client/link/core/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/link/core' was successfully resolved to '/node_modules/@apollo/client/link/core/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/link/core/core.cjs", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "extension", + "reasonFileName": "/node_modules/@apollo/client/link/core/core.cjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/link/core' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/core' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/link/core/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/core.ts' does not exist.", + "File '/node_modules/@apollo/client/link/core.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'core.cjs' that references '/node_modules/@apollo/client/link/core/core.cjs'.", + "File '/node_modules/@apollo/client/link/core/core.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/link/core/core.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/core/core.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/link/core/core.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/link/core/core.cts' does not exist.", + "File '/node_modules/@apollo/client/link/core/core.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/link/core/core.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/link/core/core.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/link/core/index.ts' does not exist.", + "File '/node_modules/@apollo/client/link/core/index.tsx' does not exist.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/link/core/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/core.js' does not exist.", + "File '/node_modules/@apollo/client/link/core.jsx' does not exist.", + "'package.json' has 'main' field 'core.cjs' that references '/node_modules/@apollo/client/link/core/core.cjs'.", + "File '/node_modules/@apollo/client/link/core/core.cjs' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/link/core' was successfully resolved to '/node_modules/@apollo/client/link/core/core.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/link/core/index.d.ts" + ] + }, + "node16-esm": { + "name": "./link/core", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/@apollo/client/link/core/index.d.ts", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/@apollo/client/link/core/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/link/core' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/core' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/@apollo/client/link/core/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/link/core/index.d.ts'.", + "File '/node_modules/@apollo/client/link/core/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/link/core' was successfully resolved to '/node_modules/@apollo/client/link/core/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/link/core/core.cjs", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "extension", + "reasonFileName": "/node_modules/@apollo/client/link/core/core.cjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/link/core' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/core' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/link/core/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'core.cjs' that references '/node_modules/@apollo/client/link/core/core.cjs'.", + "File '/node_modules/@apollo/client/link/core/core.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/link/core/core.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/core/core.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/link/core/core.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/link/core/core.cts' does not exist.", + "Directory '/node_modules/@apollo/client/link/core/core.cjs' does not exist, skipping all lookups in it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/link/core/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'core.cjs' that references '/node_modules/@apollo/client/link/core/core.cjs'.", + "File '/node_modules/@apollo/client/link/core/core.cjs' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/core' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/link/core/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'core.cjs' that references '/node_modules/@apollo/client/link/core/core.cjs'.", + "File '/node_modules/@apollo/client/link/core/core.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/link/core/core.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/core/core.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/link/core/core.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/link/core/core.cts' does not exist.", + "Directory '/node_modules/@apollo/client/link/core/core.cjs' does not exist, skipping all lookups in it.", + "======== Module name '@apollo/client/link/core' was successfully resolved to '/node_modules/@apollo/client/link/core/core.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/link/core/index.d.ts" + ] + }, + "bundler": { + "name": "./link/core", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/@apollo/client/link/core/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/link/core' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/core' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/@apollo/client/link/core/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/core.ts' does not exist.", + "File '/node_modules/@apollo/client/link/core.tsx' does not exist.", + "File '/node_modules/@apollo/client/link/core.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/link/core/index.d.ts'.", + "File '/node_modules/@apollo/client/link/core/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/link/core' was successfully resolved to '/node_modules/@apollo/client/link/core/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/link/core/core.cjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/link/core' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/core' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/link/core/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/core.ts' does not exist.", + "File '/node_modules/@apollo/client/link/core.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'core.cjs' that references '/node_modules/@apollo/client/link/core/core.cjs'.", + "File '/node_modules/@apollo/client/link/core/core.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/link/core/core.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/core/core.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/link/core/core.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/link/core/core.cts' does not exist.", + "File '/node_modules/@apollo/client/link/core/core.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/link/core/core.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/link/core/core.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/link/core/index.ts' does not exist.", + "File '/node_modules/@apollo/client/link/core/index.tsx' does not exist.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/link/core/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/core.js' does not exist.", + "File '/node_modules/@apollo/client/link/core.jsx' does not exist.", + "'package.json' has 'main' field 'core.cjs' that references '/node_modules/@apollo/client/link/core/core.cjs'.", + "File '/node_modules/@apollo/client/link/core/core.cjs' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/core' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/link/core/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/core.ts' does not exist.", + "File '/node_modules/@apollo/client/link/core.tsx' does not exist.", + "'package.json' has 'main' field 'core.cjs' that references '/node_modules/@apollo/client/link/core/core.cjs'.", + "File '/node_modules/@apollo/client/link/core/core.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/link/core/core.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/core/core.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/link/core/core.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/link/core/core.cts' does not exist.", + "File '/node_modules/@apollo/client/link/core/core.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/link/core/core.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/link/core/core.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/link/core/index.ts' does not exist.", + "File '/node_modules/@apollo/client/link/core/index.tsx' does not exist.", + "======== Module name '@apollo/client/link/core' was successfully resolved to '/node_modules/@apollo/client/link/core/core.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/utilities/globals/DEV.d.ts", + "/node_modules/@apollo/client/utilities/globals/maybe.d.ts", + "/node_modules/@apollo/client/utilities/globals/global.d.ts", + "/node_modules/@apollo/client/utilities/globals/index.d.ts", + "/node_modules/@apollo/client/utilities/graphql/directives.d.ts", + "/node_modules/@apollo/client/utilities/graphql/fragments.d.ts", + "/node_modules/@apollo/client/utilities/graphql/getFromAST.d.ts", + "/node_modules/@apollo/client/utilities/graphql/storeUtils.d.ts", + "/node_modules/@apollo/client/utilities/graphql/transform.d.ts", + "/node_modules/@apollo/client/cache/core/types/Cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/entityStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fragmentRegistry.d.ts", + "/node_modules/@apollo/client/cache/inmemory/types.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fixPolyfills.d.ts", + "/node_modules/@apollo/client/link/http/parseAndCheckHttpResponse.d.ts", + "/node_modules/@apollo/client/link/http/serializeFetchParameter.d.ts", + "/node_modules/@apollo/client/link/http/selectHttpOptionsAndBody.d.ts", + "/node_modules/@apollo/client/link/http/checkFetcher.d.ts", + "/node_modules/@apollo/client/link/http/createSignalIfSupported.d.ts", + "/node_modules/@apollo/client/link/http/selectURI.d.ts", + "/node_modules/@apollo/client/link/http/createHttpLink.d.ts", + "/node_modules/@apollo/client/link/http/HttpLink.d.ts", + "/node_modules/@apollo/client/link/http/rewriteURIForGET.d.ts", + "/node_modules/@apollo/client/link/http/index.d.ts", + "/node_modules/@apollo/client/core/networkStatus.d.ts", + "/node_modules/@apollo/client/link/utils/fromError.d.ts", + "/node_modules/@apollo/client/link/utils/toPromise.d.ts", + "/node_modules/@apollo/client/link/utils/fromPromise.d.ts", + "/node_modules/@apollo/client/link/utils/throwServerError.d.ts", + "/node_modules/@apollo/client/link/utils/validateOperation.d.ts", + "/node_modules/@apollo/client/link/utils/createOperation.d.ts", + "/node_modules/@apollo/client/link/utils/transformOperation.d.ts", + "/node_modules/@apollo/client/link/utils/index.d.ts", + "/node_modules/@apollo/client/errors/index.d.ts", + "/node_modules/@apollo/client/core/QueryInfo.d.ts", + "/node_modules/@apollo/client/core/LocalState.d.ts", + "/node_modules/@apollo/client/core/types.d.ts", + "/node_modules/@apollo/client/core/watchQueryOptions.d.ts", + "/node_modules/@apollo/client/core/QueryManager.d.ts", + "/node_modules/@apollo/client/core/ObservableQuery.d.ts", + "/node_modules/@apollo/client/core/ApolloClient.d.ts", + "/node_modules/@apollo/client/core/index.d.ts", + "/node_modules/@apollo/client/cache/inmemory/reactiveVars.d.ts", + "/node_modules/@apollo/client/cache/inmemory/inMemoryCache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/object-canon.d.ts", + "/node_modules/@apollo/client/cache/inmemory/readFromStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/writeToStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/policies.d.ts", + "/node_modules/@apollo/client/cache/core/types/common.d.ts", + "/node_modules/@apollo/client/cache/core/types/DataProxy.d.ts", + "/node_modules/@apollo/client/cache/core/cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/helpers.d.ts", + "/node_modules/@apollo/client/cache/index.d.ts", + "/node_modules/@apollo/client/utilities/policies/pagination.d.ts", + "/node_modules/@apollo/client/utilities/observables/Observable.d.ts", + "/node_modules/@apollo/client/utilities/common/objects.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/cloneDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/maybeDeepFreeze.d.ts", + "/node_modules/@apollo/client/utilities/observables/iteration.d.ts", + "/node_modules/@apollo/client/utilities/observables/asyncMap.d.ts", + "/node_modules/@apollo/client/utilities/observables/Concast.d.ts", + "/node_modules/@apollo/client/utilities/observables/subclassing.d.ts", + "/node_modules/@apollo/client/utilities/common/arrays.d.ts", + "/node_modules/@apollo/client/utilities/common/errorHandling.d.ts", + "/node_modules/@apollo/client/utilities/common/canUse.d.ts", + "/node_modules/@apollo/client/utilities/common/compact.d.ts", + "/node_modules/@apollo/client/utilities/common/makeUniqueId.d.ts", + "/node_modules/@apollo/client/utilities/common/stringifyForDisplay.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeOptions.d.ts", + "/node_modules/@apollo/client/utilities/types/IsStrictlyAny.d.ts", + "/node_modules/@apollo/client/utilities/index.d.ts", + "/node_modules/@apollo/client/link/core/types.d.ts", + "/node_modules/@apollo/client/link/core/ApolloLink.d.ts", + "/node_modules/@apollo/client/link/core/empty.d.ts", + "/node_modules/@apollo/client/link/core/from.d.ts", + "/node_modules/@apollo/client/link/core/split.d.ts", + "/node_modules/@apollo/client/link/core/concat.d.ts", + "/node_modules/@apollo/client/link/core/execute.d.ts", + "/node_modules/@apollo/client/link/core/index.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + }, + "./link/error": { + "subpath": "./link/error", + "resolutions": { + "node10": { + "name": "./link/error", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/@apollo/client/link/error/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/link/error' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module '@apollo/client/link/error' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/@apollo/client/link/error/package.json'.", + "File '/node_modules/@apollo/client/link/error.ts' does not exist.", + "File '/node_modules/@apollo/client/link/error.tsx' does not exist.", + "File '/node_modules/@apollo/client/link/error.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/link/error/index.d.ts'.", + "File '/node_modules/@apollo/client/link/error/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/link/error' was successfully resolved to '/node_modules/@apollo/client/link/error/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/link/error/error.cjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/link/error' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module '@apollo/client/link/error' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/link/error/package.json'.", + "File '/node_modules/@apollo/client/link/error.ts' does not exist.", + "File '/node_modules/@apollo/client/link/error.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'error.cjs' that references '/node_modules/@apollo/client/link/error/error.cjs'.", + "File '/node_modules/@apollo/client/link/error/error.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/link/error/error.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/error/error.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/link/error/error.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/link/error/error.cts' does not exist.", + "File '/node_modules/@apollo/client/link/error/error.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/link/error/error.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/link/error/error.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/link/error/index.ts' does not exist.", + "File '/node_modules/@apollo/client/link/error/index.tsx' does not exist.", + "Loading module '@apollo/client/link/error' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/link/error/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/error.js' does not exist.", + "File '/node_modules/@apollo/client/link/error.jsx' does not exist.", + "'package.json' has 'main' field 'error.cjs' that references '/node_modules/@apollo/client/link/error/error.cjs'.", + "File '/node_modules/@apollo/client/link/error/error.cjs' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/link/error' was successfully resolved to '/node_modules/@apollo/client/link/error/error.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/utilities/globals/DEV.d.ts", + "/node_modules/@apollo/client/utilities/globals/maybe.d.ts", + "/node_modules/@apollo/client/utilities/globals/global.d.ts", + "/node_modules/@apollo/client/utilities/globals/index.d.ts", + "/node_modules/@apollo/client/utilities/graphql/directives.d.ts", + "/node_modules/@apollo/client/utilities/graphql/fragments.d.ts", + "/node_modules/@apollo/client/utilities/graphql/getFromAST.d.ts", + "/node_modules/@apollo/client/utilities/graphql/storeUtils.d.ts", + "/node_modules/@apollo/client/utilities/graphql/transform.d.ts", + "/node_modules/@apollo/client/cache/core/types/Cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/entityStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fragmentRegistry.d.ts", + "/node_modules/@apollo/client/cache/inmemory/types.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fixPolyfills.d.ts", + "/node_modules/@apollo/client/core/networkStatus.d.ts", + "/node_modules/@apollo/client/core/QueryInfo.d.ts", + "/node_modules/@apollo/client/core/LocalState.d.ts", + "/node_modules/@apollo/client/core/types.d.ts", + "/node_modules/@apollo/client/core/watchQueryOptions.d.ts", + "/node_modules/@apollo/client/core/QueryManager.d.ts", + "/node_modules/@apollo/client/core/ObservableQuery.d.ts", + "/node_modules/@apollo/client/core/ApolloClient.d.ts", + "/node_modules/@apollo/client/link/utils/fromError.d.ts", + "/node_modules/@apollo/client/link/utils/toPromise.d.ts", + "/node_modules/@apollo/client/link/utils/fromPromise.d.ts", + "/node_modules/@apollo/client/link/utils/throwServerError.d.ts", + "/node_modules/@apollo/client/link/utils/validateOperation.d.ts", + "/node_modules/@apollo/client/link/utils/createOperation.d.ts", + "/node_modules/@apollo/client/link/utils/transformOperation.d.ts", + "/node_modules/@apollo/client/link/utils/index.d.ts", + "/node_modules/@apollo/client/core/index.d.ts", + "/node_modules/@apollo/client/cache/inmemory/reactiveVars.d.ts", + "/node_modules/@apollo/client/cache/inmemory/inMemoryCache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/object-canon.d.ts", + "/node_modules/@apollo/client/cache/inmemory/readFromStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/writeToStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/policies.d.ts", + "/node_modules/@apollo/client/cache/core/types/common.d.ts", + "/node_modules/@apollo/client/cache/core/types/DataProxy.d.ts", + "/node_modules/@apollo/client/cache/core/cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/helpers.d.ts", + "/node_modules/@apollo/client/cache/index.d.ts", + "/node_modules/@apollo/client/utilities/policies/pagination.d.ts", + "/node_modules/@apollo/client/utilities/observables/Observable.d.ts", + "/node_modules/@apollo/client/utilities/common/objects.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/cloneDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/maybeDeepFreeze.d.ts", + "/node_modules/@apollo/client/utilities/observables/iteration.d.ts", + "/node_modules/@apollo/client/utilities/observables/asyncMap.d.ts", + "/node_modules/@apollo/client/utilities/observables/Concast.d.ts", + "/node_modules/@apollo/client/utilities/observables/subclassing.d.ts", + "/node_modules/@apollo/client/utilities/common/arrays.d.ts", + "/node_modules/@apollo/client/utilities/common/errorHandling.d.ts", + "/node_modules/@apollo/client/utilities/common/canUse.d.ts", + "/node_modules/@apollo/client/utilities/common/compact.d.ts", + "/node_modules/@apollo/client/utilities/common/makeUniqueId.d.ts", + "/node_modules/@apollo/client/utilities/common/stringifyForDisplay.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeOptions.d.ts", + "/node_modules/@apollo/client/utilities/types/IsStrictlyAny.d.ts", + "/node_modules/@apollo/client/utilities/index.d.ts", + "/node_modules/@apollo/client/link/core/types.d.ts", + "/node_modules/@apollo/client/link/core/ApolloLink.d.ts", + "/node_modules/@apollo/client/link/core/empty.d.ts", + "/node_modules/@apollo/client/link/core/from.d.ts", + "/node_modules/@apollo/client/link/core/split.d.ts", + "/node_modules/@apollo/client/link/core/concat.d.ts", + "/node_modules/@apollo/client/link/core/execute.d.ts", + "/node_modules/@apollo/client/link/core/index.d.ts", + "/node_modules/@apollo/client/link/http/parseAndCheckHttpResponse.d.ts", + "/node_modules/@apollo/client/link/http/serializeFetchParameter.d.ts", + "/node_modules/@apollo/client/link/http/selectHttpOptionsAndBody.d.ts", + "/node_modules/@apollo/client/link/http/checkFetcher.d.ts", + "/node_modules/@apollo/client/link/http/createSignalIfSupported.d.ts", + "/node_modules/@apollo/client/link/http/selectURI.d.ts", + "/node_modules/@apollo/client/link/http/createHttpLink.d.ts", + "/node_modules/@apollo/client/link/http/HttpLink.d.ts", + "/node_modules/@apollo/client/link/http/rewriteURIForGET.d.ts", + "/node_modules/@apollo/client/link/http/index.d.ts", + "/node_modules/@apollo/client/errors/index.d.ts", + "/node_modules/@apollo/client/link/error/index.d.ts" + ] + }, + "node16-cjs": { + "name": "./link/error", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/@apollo/client/link/error/index.d.ts", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/@apollo/client/link/error/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/link/error' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/error' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/@apollo/client/link/error/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/error.ts' does not exist.", + "File '/node_modules/@apollo/client/link/error.tsx' does not exist.", + "File '/node_modules/@apollo/client/link/error.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/link/error/index.d.ts'.", + "File '/node_modules/@apollo/client/link/error/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/link/error' was successfully resolved to '/node_modules/@apollo/client/link/error/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/link/error/error.cjs", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "extension", + "reasonFileName": "/node_modules/@apollo/client/link/error/error.cjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/link/error' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/error' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/link/error/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/error.ts' does not exist.", + "File '/node_modules/@apollo/client/link/error.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'error.cjs' that references '/node_modules/@apollo/client/link/error/error.cjs'.", + "File '/node_modules/@apollo/client/link/error/error.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/link/error/error.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/error/error.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/link/error/error.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/link/error/error.cts' does not exist.", + "File '/node_modules/@apollo/client/link/error/error.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/link/error/error.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/link/error/error.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/link/error/index.ts' does not exist.", + "File '/node_modules/@apollo/client/link/error/index.tsx' does not exist.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/link/error/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/error.js' does not exist.", + "File '/node_modules/@apollo/client/link/error.jsx' does not exist.", + "'package.json' has 'main' field 'error.cjs' that references '/node_modules/@apollo/client/link/error/error.cjs'.", + "File '/node_modules/@apollo/client/link/error/error.cjs' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/link/error' was successfully resolved to '/node_modules/@apollo/client/link/error/error.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/link/error/index.d.ts" + ] + }, + "node16-esm": { + "name": "./link/error", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/@apollo/client/link/error/index.d.ts", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/@apollo/client/link/error/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/link/error' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/error' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/@apollo/client/link/error/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/link/error/index.d.ts'.", + "File '/node_modules/@apollo/client/link/error/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/link/error' was successfully resolved to '/node_modules/@apollo/client/link/error/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/link/error/error.cjs", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "extension", + "reasonFileName": "/node_modules/@apollo/client/link/error/error.cjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/link/error' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/error' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/link/error/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'error.cjs' that references '/node_modules/@apollo/client/link/error/error.cjs'.", + "File '/node_modules/@apollo/client/link/error/error.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/link/error/error.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/error/error.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/link/error/error.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/link/error/error.cts' does not exist.", + "Directory '/node_modules/@apollo/client/link/error/error.cjs' does not exist, skipping all lookups in it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/link/error/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'error.cjs' that references '/node_modules/@apollo/client/link/error/error.cjs'.", + "File '/node_modules/@apollo/client/link/error/error.cjs' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/error' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/link/error/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'error.cjs' that references '/node_modules/@apollo/client/link/error/error.cjs'.", + "File '/node_modules/@apollo/client/link/error/error.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/link/error/error.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/error/error.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/link/error/error.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/link/error/error.cts' does not exist.", + "Directory '/node_modules/@apollo/client/link/error/error.cjs' does not exist, skipping all lookups in it.", + "======== Module name '@apollo/client/link/error' was successfully resolved to '/node_modules/@apollo/client/link/error/error.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/link/error/index.d.ts" + ] + }, + "bundler": { + "name": "./link/error", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/@apollo/client/link/error/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/link/error' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/error' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/@apollo/client/link/error/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/error.ts' does not exist.", + "File '/node_modules/@apollo/client/link/error.tsx' does not exist.", + "File '/node_modules/@apollo/client/link/error.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/link/error/index.d.ts'.", + "File '/node_modules/@apollo/client/link/error/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/link/error' was successfully resolved to '/node_modules/@apollo/client/link/error/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/link/error/error.cjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/link/error' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/error' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/link/error/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/error.ts' does not exist.", + "File '/node_modules/@apollo/client/link/error.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'error.cjs' that references '/node_modules/@apollo/client/link/error/error.cjs'.", + "File '/node_modules/@apollo/client/link/error/error.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/link/error/error.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/error/error.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/link/error/error.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/link/error/error.cts' does not exist.", + "File '/node_modules/@apollo/client/link/error/error.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/link/error/error.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/link/error/error.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/link/error/index.ts' does not exist.", + "File '/node_modules/@apollo/client/link/error/index.tsx' does not exist.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/link/error/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/error.js' does not exist.", + "File '/node_modules/@apollo/client/link/error.jsx' does not exist.", + "'package.json' has 'main' field 'error.cjs' that references '/node_modules/@apollo/client/link/error/error.cjs'.", + "File '/node_modules/@apollo/client/link/error/error.cjs' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/error' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/link/error/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/error.ts' does not exist.", + "File '/node_modules/@apollo/client/link/error.tsx' does not exist.", + "'package.json' has 'main' field 'error.cjs' that references '/node_modules/@apollo/client/link/error/error.cjs'.", + "File '/node_modules/@apollo/client/link/error/error.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/link/error/error.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/error/error.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/link/error/error.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/link/error/error.cts' does not exist.", + "File '/node_modules/@apollo/client/link/error/error.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/link/error/error.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/link/error/error.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/link/error/index.ts' does not exist.", + "File '/node_modules/@apollo/client/link/error/index.tsx' does not exist.", + "======== Module name '@apollo/client/link/error' was successfully resolved to '/node_modules/@apollo/client/link/error/error.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/utilities/globals/DEV.d.ts", + "/node_modules/@apollo/client/utilities/globals/maybe.d.ts", + "/node_modules/@apollo/client/utilities/globals/global.d.ts", + "/node_modules/@apollo/client/utilities/globals/index.d.ts", + "/node_modules/@apollo/client/utilities/graphql/directives.d.ts", + "/node_modules/@apollo/client/utilities/graphql/fragments.d.ts", + "/node_modules/@apollo/client/utilities/graphql/getFromAST.d.ts", + "/node_modules/@apollo/client/utilities/graphql/storeUtils.d.ts", + "/node_modules/@apollo/client/utilities/graphql/transform.d.ts", + "/node_modules/@apollo/client/cache/core/types/Cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/entityStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fragmentRegistry.d.ts", + "/node_modules/@apollo/client/cache/inmemory/types.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fixPolyfills.d.ts", + "/node_modules/@apollo/client/core/networkStatus.d.ts", + "/node_modules/@apollo/client/core/QueryInfo.d.ts", + "/node_modules/@apollo/client/core/LocalState.d.ts", + "/node_modules/@apollo/client/core/types.d.ts", + "/node_modules/@apollo/client/core/watchQueryOptions.d.ts", + "/node_modules/@apollo/client/core/QueryManager.d.ts", + "/node_modules/@apollo/client/core/ObservableQuery.d.ts", + "/node_modules/@apollo/client/core/ApolloClient.d.ts", + "/node_modules/@apollo/client/link/utils/fromError.d.ts", + "/node_modules/@apollo/client/link/utils/toPromise.d.ts", + "/node_modules/@apollo/client/link/utils/fromPromise.d.ts", + "/node_modules/@apollo/client/link/utils/throwServerError.d.ts", + "/node_modules/@apollo/client/link/utils/validateOperation.d.ts", + "/node_modules/@apollo/client/link/utils/createOperation.d.ts", + "/node_modules/@apollo/client/link/utils/transformOperation.d.ts", + "/node_modules/@apollo/client/link/utils/index.d.ts", + "/node_modules/@apollo/client/core/index.d.ts", + "/node_modules/@apollo/client/cache/inmemory/reactiveVars.d.ts", + "/node_modules/@apollo/client/cache/inmemory/inMemoryCache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/object-canon.d.ts", + "/node_modules/@apollo/client/cache/inmemory/readFromStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/writeToStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/policies.d.ts", + "/node_modules/@apollo/client/cache/core/types/common.d.ts", + "/node_modules/@apollo/client/cache/core/types/DataProxy.d.ts", + "/node_modules/@apollo/client/cache/core/cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/helpers.d.ts", + "/node_modules/@apollo/client/cache/index.d.ts", + "/node_modules/@apollo/client/utilities/policies/pagination.d.ts", + "/node_modules/@apollo/client/utilities/observables/Observable.d.ts", + "/node_modules/@apollo/client/utilities/common/objects.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/cloneDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/maybeDeepFreeze.d.ts", + "/node_modules/@apollo/client/utilities/observables/iteration.d.ts", + "/node_modules/@apollo/client/utilities/observables/asyncMap.d.ts", + "/node_modules/@apollo/client/utilities/observables/Concast.d.ts", + "/node_modules/@apollo/client/utilities/observables/subclassing.d.ts", + "/node_modules/@apollo/client/utilities/common/arrays.d.ts", + "/node_modules/@apollo/client/utilities/common/errorHandling.d.ts", + "/node_modules/@apollo/client/utilities/common/canUse.d.ts", + "/node_modules/@apollo/client/utilities/common/compact.d.ts", + "/node_modules/@apollo/client/utilities/common/makeUniqueId.d.ts", + "/node_modules/@apollo/client/utilities/common/stringifyForDisplay.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeOptions.d.ts", + "/node_modules/@apollo/client/utilities/types/IsStrictlyAny.d.ts", + "/node_modules/@apollo/client/utilities/index.d.ts", + "/node_modules/@apollo/client/link/core/types.d.ts", + "/node_modules/@apollo/client/link/core/ApolloLink.d.ts", + "/node_modules/@apollo/client/link/core/empty.d.ts", + "/node_modules/@apollo/client/link/core/from.d.ts", + "/node_modules/@apollo/client/link/core/split.d.ts", + "/node_modules/@apollo/client/link/core/concat.d.ts", + "/node_modules/@apollo/client/link/core/execute.d.ts", + "/node_modules/@apollo/client/link/core/index.d.ts", + "/node_modules/@apollo/client/link/http/parseAndCheckHttpResponse.d.ts", + "/node_modules/@apollo/client/link/http/serializeFetchParameter.d.ts", + "/node_modules/@apollo/client/link/http/selectHttpOptionsAndBody.d.ts", + "/node_modules/@apollo/client/link/http/checkFetcher.d.ts", + "/node_modules/@apollo/client/link/http/createSignalIfSupported.d.ts", + "/node_modules/@apollo/client/link/http/selectURI.d.ts", + "/node_modules/@apollo/client/link/http/createHttpLink.d.ts", + "/node_modules/@apollo/client/link/http/HttpLink.d.ts", + "/node_modules/@apollo/client/link/http/rewriteURIForGET.d.ts", + "/node_modules/@apollo/client/link/http/index.d.ts", + "/node_modules/@apollo/client/errors/index.d.ts", + "/node_modules/@apollo/client/link/error/index.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + }, + "./link/http": { + "subpath": "./link/http", + "resolutions": { + "node10": { + "name": "./link/http", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/@apollo/client/link/http/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/link/http' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module '@apollo/client/link/http' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/@apollo/client/link/http/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/http.ts' does not exist.", + "File '/node_modules/@apollo/client/link/http.tsx' does not exist.", + "File '/node_modules/@apollo/client/link/http.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/link/http/index.d.ts'.", + "File '/node_modules/@apollo/client/link/http/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/link/http' was successfully resolved to '/node_modules/@apollo/client/link/http/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/link/http/http.cjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/link/http' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module '@apollo/client/link/http' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/link/http/package.json'.", + "File '/node_modules/@apollo/client/link/http.ts' does not exist.", + "File '/node_modules/@apollo/client/link/http.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'http.cjs' that references '/node_modules/@apollo/client/link/http/http.cjs'.", + "File '/node_modules/@apollo/client/link/http/http.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/link/http/http.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/http/http.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/link/http/http.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/link/http/http.cts' does not exist.", + "File '/node_modules/@apollo/client/link/http/http.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/link/http/http.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/link/http/http.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/link/http/index.ts' does not exist.", + "File '/node_modules/@apollo/client/link/http/index.tsx' does not exist.", + "Loading module '@apollo/client/link/http' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/link/http/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/http.js' does not exist.", + "File '/node_modules/@apollo/client/link/http.jsx' does not exist.", + "'package.json' has 'main' field 'http.cjs' that references '/node_modules/@apollo/client/link/http/http.cjs'.", + "File '/node_modules/@apollo/client/link/http/http.cjs' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/link/http' was successfully resolved to '/node_modules/@apollo/client/link/http/http.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/utilities/globals/DEV.d.ts", + "/node_modules/@apollo/client/utilities/globals/maybe.d.ts", + "/node_modules/@apollo/client/utilities/globals/global.d.ts", + "/node_modules/@apollo/client/utilities/globals/index.d.ts", + "/node_modules/@apollo/client/utilities/graphql/directives.d.ts", + "/node_modules/@apollo/client/utilities/graphql/fragments.d.ts", + "/node_modules/@apollo/client/utilities/graphql/getFromAST.d.ts", + "/node_modules/@apollo/client/utilities/graphql/storeUtils.d.ts", + "/node_modules/@apollo/client/utilities/graphql/transform.d.ts", + "/node_modules/@apollo/client/cache/core/types/Cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/entityStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fragmentRegistry.d.ts", + "/node_modules/@apollo/client/cache/inmemory/types.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fixPolyfills.d.ts", + "/node_modules/@apollo/client/core/networkStatus.d.ts", + "/node_modules/@apollo/client/link/utils/fromError.d.ts", + "/node_modules/@apollo/client/link/utils/toPromise.d.ts", + "/node_modules/@apollo/client/link/utils/fromPromise.d.ts", + "/node_modules/@apollo/client/link/utils/throwServerError.d.ts", + "/node_modules/@apollo/client/link/utils/validateOperation.d.ts", + "/node_modules/@apollo/client/link/utils/createOperation.d.ts", + "/node_modules/@apollo/client/link/utils/transformOperation.d.ts", + "/node_modules/@apollo/client/link/utils/index.d.ts", + "/node_modules/@apollo/client/errors/index.d.ts", + "/node_modules/@apollo/client/core/QueryInfo.d.ts", + "/node_modules/@apollo/client/core/LocalState.d.ts", + "/node_modules/@apollo/client/core/types.d.ts", + "/node_modules/@apollo/client/core/watchQueryOptions.d.ts", + "/node_modules/@apollo/client/core/QueryManager.d.ts", + "/node_modules/@apollo/client/core/ObservableQuery.d.ts", + "/node_modules/@apollo/client/core/ApolloClient.d.ts", + "/node_modules/@apollo/client/core/index.d.ts", + "/node_modules/@apollo/client/cache/inmemory/reactiveVars.d.ts", + "/node_modules/@apollo/client/cache/inmemory/inMemoryCache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/object-canon.d.ts", + "/node_modules/@apollo/client/cache/inmemory/readFromStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/writeToStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/policies.d.ts", + "/node_modules/@apollo/client/cache/core/types/common.d.ts", + "/node_modules/@apollo/client/cache/core/types/DataProxy.d.ts", + "/node_modules/@apollo/client/cache/core/cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/helpers.d.ts", + "/node_modules/@apollo/client/cache/index.d.ts", + "/node_modules/@apollo/client/utilities/policies/pagination.d.ts", + "/node_modules/@apollo/client/utilities/observables/Observable.d.ts", + "/node_modules/@apollo/client/utilities/common/objects.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/cloneDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/maybeDeepFreeze.d.ts", + "/node_modules/@apollo/client/utilities/observables/iteration.d.ts", + "/node_modules/@apollo/client/utilities/observables/asyncMap.d.ts", + "/node_modules/@apollo/client/utilities/observables/Concast.d.ts", + "/node_modules/@apollo/client/utilities/observables/subclassing.d.ts", + "/node_modules/@apollo/client/utilities/common/arrays.d.ts", + "/node_modules/@apollo/client/utilities/common/errorHandling.d.ts", + "/node_modules/@apollo/client/utilities/common/canUse.d.ts", + "/node_modules/@apollo/client/utilities/common/compact.d.ts", + "/node_modules/@apollo/client/utilities/common/makeUniqueId.d.ts", + "/node_modules/@apollo/client/utilities/common/stringifyForDisplay.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeOptions.d.ts", + "/node_modules/@apollo/client/utilities/types/IsStrictlyAny.d.ts", + "/node_modules/@apollo/client/utilities/index.d.ts", + "/node_modules/@apollo/client/link/core/types.d.ts", + "/node_modules/@apollo/client/link/core/ApolloLink.d.ts", + "/node_modules/@apollo/client/link/core/empty.d.ts", + "/node_modules/@apollo/client/link/core/from.d.ts", + "/node_modules/@apollo/client/link/core/split.d.ts", + "/node_modules/@apollo/client/link/core/concat.d.ts", + "/node_modules/@apollo/client/link/core/execute.d.ts", + "/node_modules/@apollo/client/link/core/index.d.ts", + "/node_modules/@apollo/client/link/http/parseAndCheckHttpResponse.d.ts", + "/node_modules/@apollo/client/link/http/serializeFetchParameter.d.ts", + "/node_modules/@apollo/client/link/http/selectHttpOptionsAndBody.d.ts", + "/node_modules/@apollo/client/link/http/checkFetcher.d.ts", + "/node_modules/@apollo/client/link/http/createSignalIfSupported.d.ts", + "/node_modules/@apollo/client/link/http/selectURI.d.ts", + "/node_modules/@apollo/client/link/http/createHttpLink.d.ts", + "/node_modules/@apollo/client/link/http/HttpLink.d.ts", + "/node_modules/@apollo/client/link/http/rewriteURIForGET.d.ts", + "/node_modules/@apollo/client/link/http/index.d.ts" + ] + }, + "node16-cjs": { + "name": "./link/http", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/@apollo/client/link/http/index.d.ts", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/@apollo/client/link/http/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/link/http' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/http' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/@apollo/client/link/http/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/http.ts' does not exist.", + "File '/node_modules/@apollo/client/link/http.tsx' does not exist.", + "File '/node_modules/@apollo/client/link/http.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/link/http/index.d.ts'.", + "File '/node_modules/@apollo/client/link/http/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/link/http' was successfully resolved to '/node_modules/@apollo/client/link/http/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/link/http/http.cjs", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "extension", + "reasonFileName": "/node_modules/@apollo/client/link/http/http.cjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/link/http' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/http' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/link/http/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/http.ts' does not exist.", + "File '/node_modules/@apollo/client/link/http.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'http.cjs' that references '/node_modules/@apollo/client/link/http/http.cjs'.", + "File '/node_modules/@apollo/client/link/http/http.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/link/http/http.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/http/http.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/link/http/http.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/link/http/http.cts' does not exist.", + "File '/node_modules/@apollo/client/link/http/http.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/link/http/http.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/link/http/http.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/link/http/index.ts' does not exist.", + "File '/node_modules/@apollo/client/link/http/index.tsx' does not exist.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/link/http/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/http.js' does not exist.", + "File '/node_modules/@apollo/client/link/http.jsx' does not exist.", + "'package.json' has 'main' field 'http.cjs' that references '/node_modules/@apollo/client/link/http/http.cjs'.", + "File '/node_modules/@apollo/client/link/http/http.cjs' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/link/http' was successfully resolved to '/node_modules/@apollo/client/link/http/http.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/link/http/index.d.ts" + ] + }, + "node16-esm": { + "name": "./link/http", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/@apollo/client/link/http/index.d.ts", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/@apollo/client/link/http/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/link/http' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/http' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/@apollo/client/link/http/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/link/http/index.d.ts'.", + "File '/node_modules/@apollo/client/link/http/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/link/http' was successfully resolved to '/node_modules/@apollo/client/link/http/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/link/http/http.cjs", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "extension", + "reasonFileName": "/node_modules/@apollo/client/link/http/http.cjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/link/http' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/http' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/link/http/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'http.cjs' that references '/node_modules/@apollo/client/link/http/http.cjs'.", + "File '/node_modules/@apollo/client/link/http/http.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/link/http/http.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/http/http.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/link/http/http.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/link/http/http.cts' does not exist.", + "Directory '/node_modules/@apollo/client/link/http/http.cjs' does not exist, skipping all lookups in it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/link/http/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'http.cjs' that references '/node_modules/@apollo/client/link/http/http.cjs'.", + "File '/node_modules/@apollo/client/link/http/http.cjs' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/http' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/link/http/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'http.cjs' that references '/node_modules/@apollo/client/link/http/http.cjs'.", + "File '/node_modules/@apollo/client/link/http/http.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/link/http/http.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/http/http.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/link/http/http.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/link/http/http.cts' does not exist.", + "Directory '/node_modules/@apollo/client/link/http/http.cjs' does not exist, skipping all lookups in it.", + "======== Module name '@apollo/client/link/http' was successfully resolved to '/node_modules/@apollo/client/link/http/http.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/link/http/index.d.ts" + ] + }, + "bundler": { + "name": "./link/http", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/@apollo/client/link/http/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/link/http' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/http' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/@apollo/client/link/http/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/http.ts' does not exist.", + "File '/node_modules/@apollo/client/link/http.tsx' does not exist.", + "File '/node_modules/@apollo/client/link/http.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/link/http/index.d.ts'.", + "File '/node_modules/@apollo/client/link/http/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/link/http' was successfully resolved to '/node_modules/@apollo/client/link/http/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/link/http/http.cjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/link/http' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/http' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/link/http/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/http.ts' does not exist.", + "File '/node_modules/@apollo/client/link/http.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'http.cjs' that references '/node_modules/@apollo/client/link/http/http.cjs'.", + "File '/node_modules/@apollo/client/link/http/http.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/link/http/http.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/http/http.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/link/http/http.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/link/http/http.cts' does not exist.", + "File '/node_modules/@apollo/client/link/http/http.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/link/http/http.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/link/http/http.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/link/http/index.ts' does not exist.", + "File '/node_modules/@apollo/client/link/http/index.tsx' does not exist.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/link/http/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/http.js' does not exist.", + "File '/node_modules/@apollo/client/link/http.jsx' does not exist.", + "'package.json' has 'main' field 'http.cjs' that references '/node_modules/@apollo/client/link/http/http.cjs'.", + "File '/node_modules/@apollo/client/link/http/http.cjs' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/http' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/link/http/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/http.ts' does not exist.", + "File '/node_modules/@apollo/client/link/http.tsx' does not exist.", + "'package.json' has 'main' field 'http.cjs' that references '/node_modules/@apollo/client/link/http/http.cjs'.", + "File '/node_modules/@apollo/client/link/http/http.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/link/http/http.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/http/http.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/link/http/http.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/link/http/http.cts' does not exist.", + "File '/node_modules/@apollo/client/link/http/http.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/link/http/http.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/link/http/http.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/link/http/index.ts' does not exist.", + "File '/node_modules/@apollo/client/link/http/index.tsx' does not exist.", + "======== Module name '@apollo/client/link/http' was successfully resolved to '/node_modules/@apollo/client/link/http/http.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/utilities/globals/DEV.d.ts", + "/node_modules/@apollo/client/utilities/globals/maybe.d.ts", + "/node_modules/@apollo/client/utilities/globals/global.d.ts", + "/node_modules/@apollo/client/utilities/globals/index.d.ts", + "/node_modules/@apollo/client/utilities/graphql/directives.d.ts", + "/node_modules/@apollo/client/utilities/graphql/fragments.d.ts", + "/node_modules/@apollo/client/utilities/graphql/getFromAST.d.ts", + "/node_modules/@apollo/client/utilities/graphql/storeUtils.d.ts", + "/node_modules/@apollo/client/utilities/graphql/transform.d.ts", + "/node_modules/@apollo/client/cache/core/types/Cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/entityStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fragmentRegistry.d.ts", + "/node_modules/@apollo/client/cache/inmemory/types.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fixPolyfills.d.ts", + "/node_modules/@apollo/client/core/networkStatus.d.ts", + "/node_modules/@apollo/client/link/utils/fromError.d.ts", + "/node_modules/@apollo/client/link/utils/toPromise.d.ts", + "/node_modules/@apollo/client/link/utils/fromPromise.d.ts", + "/node_modules/@apollo/client/link/utils/throwServerError.d.ts", + "/node_modules/@apollo/client/link/utils/validateOperation.d.ts", + "/node_modules/@apollo/client/link/utils/createOperation.d.ts", + "/node_modules/@apollo/client/link/utils/transformOperation.d.ts", + "/node_modules/@apollo/client/link/utils/index.d.ts", + "/node_modules/@apollo/client/errors/index.d.ts", + "/node_modules/@apollo/client/core/QueryInfo.d.ts", + "/node_modules/@apollo/client/core/LocalState.d.ts", + "/node_modules/@apollo/client/core/types.d.ts", + "/node_modules/@apollo/client/core/watchQueryOptions.d.ts", + "/node_modules/@apollo/client/core/QueryManager.d.ts", + "/node_modules/@apollo/client/core/ObservableQuery.d.ts", + "/node_modules/@apollo/client/core/ApolloClient.d.ts", + "/node_modules/@apollo/client/core/index.d.ts", + "/node_modules/@apollo/client/cache/inmemory/reactiveVars.d.ts", + "/node_modules/@apollo/client/cache/inmemory/inMemoryCache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/object-canon.d.ts", + "/node_modules/@apollo/client/cache/inmemory/readFromStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/writeToStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/policies.d.ts", + "/node_modules/@apollo/client/cache/core/types/common.d.ts", + "/node_modules/@apollo/client/cache/core/types/DataProxy.d.ts", + "/node_modules/@apollo/client/cache/core/cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/helpers.d.ts", + "/node_modules/@apollo/client/cache/index.d.ts", + "/node_modules/@apollo/client/utilities/policies/pagination.d.ts", + "/node_modules/@apollo/client/utilities/observables/Observable.d.ts", + "/node_modules/@apollo/client/utilities/common/objects.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/cloneDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/maybeDeepFreeze.d.ts", + "/node_modules/@apollo/client/utilities/observables/iteration.d.ts", + "/node_modules/@apollo/client/utilities/observables/asyncMap.d.ts", + "/node_modules/@apollo/client/utilities/observables/Concast.d.ts", + "/node_modules/@apollo/client/utilities/observables/subclassing.d.ts", + "/node_modules/@apollo/client/utilities/common/arrays.d.ts", + "/node_modules/@apollo/client/utilities/common/errorHandling.d.ts", + "/node_modules/@apollo/client/utilities/common/canUse.d.ts", + "/node_modules/@apollo/client/utilities/common/compact.d.ts", + "/node_modules/@apollo/client/utilities/common/makeUniqueId.d.ts", + "/node_modules/@apollo/client/utilities/common/stringifyForDisplay.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeOptions.d.ts", + "/node_modules/@apollo/client/utilities/types/IsStrictlyAny.d.ts", + "/node_modules/@apollo/client/utilities/index.d.ts", + "/node_modules/@apollo/client/link/core/types.d.ts", + "/node_modules/@apollo/client/link/core/ApolloLink.d.ts", + "/node_modules/@apollo/client/link/core/empty.d.ts", + "/node_modules/@apollo/client/link/core/from.d.ts", + "/node_modules/@apollo/client/link/core/split.d.ts", + "/node_modules/@apollo/client/link/core/concat.d.ts", + "/node_modules/@apollo/client/link/core/execute.d.ts", + "/node_modules/@apollo/client/link/core/index.d.ts", + "/node_modules/@apollo/client/link/http/parseAndCheckHttpResponse.d.ts", + "/node_modules/@apollo/client/link/http/serializeFetchParameter.d.ts", + "/node_modules/@apollo/client/link/http/selectHttpOptionsAndBody.d.ts", + "/node_modules/@apollo/client/link/http/checkFetcher.d.ts", + "/node_modules/@apollo/client/link/http/createSignalIfSupported.d.ts", + "/node_modules/@apollo/client/link/http/selectURI.d.ts", + "/node_modules/@apollo/client/link/http/createHttpLink.d.ts", + "/node_modules/@apollo/client/link/http/HttpLink.d.ts", + "/node_modules/@apollo/client/link/http/rewriteURIForGET.d.ts", + "/node_modules/@apollo/client/link/http/index.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + }, + "./link/persisted-queries": { + "subpath": "./link/persisted-queries", + "resolutions": { + "node10": { + "name": "./link/persisted-queries", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/@apollo/client/link/persisted-queries/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/link/persisted-queries' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module '@apollo/client/link/persisted-queries' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/@apollo/client/link/persisted-queries/package.json'.", + "File '/node_modules/@apollo/client/link/persisted-queries.ts' does not exist.", + "File '/node_modules/@apollo/client/link/persisted-queries.tsx' does not exist.", + "File '/node_modules/@apollo/client/link/persisted-queries.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/link/persisted-queries/index.d.ts'.", + "File '/node_modules/@apollo/client/link/persisted-queries/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/link/persisted-queries' was successfully resolved to '/node_modules/@apollo/client/link/persisted-queries/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/link/persisted-queries/persisted-queries.cjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/link/persisted-queries' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module '@apollo/client/link/persisted-queries' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/link/persisted-queries/package.json'.", + "File '/node_modules/@apollo/client/link/persisted-queries.ts' does not exist.", + "File '/node_modules/@apollo/client/link/persisted-queries.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'persisted-queries.cjs' that references '/node_modules/@apollo/client/link/persisted-queries/persisted-queries.cjs'.", + "File '/node_modules/@apollo/client/link/persisted-queries/persisted-queries.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/link/persisted-queries/persisted-queries.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/persisted-queries/persisted-queries.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/link/persisted-queries/persisted-queries.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/link/persisted-queries/persisted-queries.cts' does not exist.", + "File '/node_modules/@apollo/client/link/persisted-queries/persisted-queries.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/link/persisted-queries/persisted-queries.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/link/persisted-queries/persisted-queries.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/link/persisted-queries/index.ts' does not exist.", + "File '/node_modules/@apollo/client/link/persisted-queries/index.tsx' does not exist.", + "Loading module '@apollo/client/link/persisted-queries' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/link/persisted-queries/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/persisted-queries.js' does not exist.", + "File '/node_modules/@apollo/client/link/persisted-queries.jsx' does not exist.", + "'package.json' has 'main' field 'persisted-queries.cjs' that references '/node_modules/@apollo/client/link/persisted-queries/persisted-queries.cjs'.", + "File '/node_modules/@apollo/client/link/persisted-queries/persisted-queries.cjs' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/link/persisted-queries' was successfully resolved to '/node_modules/@apollo/client/link/persisted-queries/persisted-queries.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/utilities/globals/DEV.d.ts", + "/node_modules/@apollo/client/utilities/globals/maybe.d.ts", + "/node_modules/@apollo/client/utilities/globals/global.d.ts", + "/node_modules/@apollo/client/utilities/globals/index.d.ts", + "/node_modules/@apollo/client/utilities/graphql/directives.d.ts", + "/node_modules/@apollo/client/utilities/graphql/fragments.d.ts", + "/node_modules/@apollo/client/utilities/graphql/getFromAST.d.ts", + "/node_modules/@apollo/client/utilities/graphql/storeUtils.d.ts", + "/node_modules/@apollo/client/utilities/graphql/transform.d.ts", + "/node_modules/@apollo/client/cache/core/types/Cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/entityStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fragmentRegistry.d.ts", + "/node_modules/@apollo/client/cache/inmemory/types.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fixPolyfills.d.ts", + "/node_modules/@apollo/client/link/http/parseAndCheckHttpResponse.d.ts", + "/node_modules/@apollo/client/link/http/serializeFetchParameter.d.ts", + "/node_modules/@apollo/client/link/http/selectHttpOptionsAndBody.d.ts", + "/node_modules/@apollo/client/link/http/checkFetcher.d.ts", + "/node_modules/@apollo/client/link/http/createSignalIfSupported.d.ts", + "/node_modules/@apollo/client/link/http/selectURI.d.ts", + "/node_modules/@apollo/client/link/http/createHttpLink.d.ts", + "/node_modules/@apollo/client/link/http/HttpLink.d.ts", + "/node_modules/@apollo/client/link/http/rewriteURIForGET.d.ts", + "/node_modules/@apollo/client/link/http/index.d.ts", + "/node_modules/@apollo/client/core/networkStatus.d.ts", + "/node_modules/@apollo/client/link/utils/fromError.d.ts", + "/node_modules/@apollo/client/link/utils/toPromise.d.ts", + "/node_modules/@apollo/client/link/utils/fromPromise.d.ts", + "/node_modules/@apollo/client/link/utils/throwServerError.d.ts", + "/node_modules/@apollo/client/link/utils/validateOperation.d.ts", + "/node_modules/@apollo/client/link/utils/createOperation.d.ts", + "/node_modules/@apollo/client/link/utils/transformOperation.d.ts", + "/node_modules/@apollo/client/link/utils/index.d.ts", + "/node_modules/@apollo/client/errors/index.d.ts", + "/node_modules/@apollo/client/core/QueryInfo.d.ts", + "/node_modules/@apollo/client/core/LocalState.d.ts", + "/node_modules/@apollo/client/core/types.d.ts", + "/node_modules/@apollo/client/core/watchQueryOptions.d.ts", + "/node_modules/@apollo/client/core/QueryManager.d.ts", + "/node_modules/@apollo/client/core/ObservableQuery.d.ts", + "/node_modules/@apollo/client/core/ApolloClient.d.ts", + "/node_modules/@apollo/client/core/index.d.ts", + "/node_modules/@apollo/client/cache/inmemory/reactiveVars.d.ts", + "/node_modules/@apollo/client/cache/inmemory/inMemoryCache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/object-canon.d.ts", + "/node_modules/@apollo/client/cache/inmemory/readFromStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/writeToStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/policies.d.ts", + "/node_modules/@apollo/client/cache/core/types/common.d.ts", + "/node_modules/@apollo/client/cache/core/types/DataProxy.d.ts", + "/node_modules/@apollo/client/cache/core/cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/helpers.d.ts", + "/node_modules/@apollo/client/cache/index.d.ts", + "/node_modules/@apollo/client/utilities/policies/pagination.d.ts", + "/node_modules/@apollo/client/utilities/observables/Observable.d.ts", + "/node_modules/@apollo/client/utilities/common/objects.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/cloneDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/maybeDeepFreeze.d.ts", + "/node_modules/@apollo/client/utilities/observables/iteration.d.ts", + "/node_modules/@apollo/client/utilities/observables/asyncMap.d.ts", + "/node_modules/@apollo/client/utilities/observables/Concast.d.ts", + "/node_modules/@apollo/client/utilities/observables/subclassing.d.ts", + "/node_modules/@apollo/client/utilities/common/arrays.d.ts", + "/node_modules/@apollo/client/utilities/common/errorHandling.d.ts", + "/node_modules/@apollo/client/utilities/common/canUse.d.ts", + "/node_modules/@apollo/client/utilities/common/compact.d.ts", + "/node_modules/@apollo/client/utilities/common/makeUniqueId.d.ts", + "/node_modules/@apollo/client/utilities/common/stringifyForDisplay.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeOptions.d.ts", + "/node_modules/@apollo/client/utilities/types/IsStrictlyAny.d.ts", + "/node_modules/@apollo/client/utilities/index.d.ts", + "/node_modules/@apollo/client/link/core/types.d.ts", + "/node_modules/@apollo/client/link/core/ApolloLink.d.ts", + "/node_modules/@apollo/client/link/core/empty.d.ts", + "/node_modules/@apollo/client/link/core/from.d.ts", + "/node_modules/@apollo/client/link/core/split.d.ts", + "/node_modules/@apollo/client/link/core/concat.d.ts", + "/node_modules/@apollo/client/link/core/execute.d.ts", + "/node_modules/@apollo/client/link/core/index.d.ts", + "/node_modules/@apollo/client/link/persisted-queries/index.d.ts" + ] + }, + "node16-cjs": { + "name": "./link/persisted-queries", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/@apollo/client/link/persisted-queries/index.d.ts", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/@apollo/client/link/persisted-queries/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/link/persisted-queries' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/persisted-queries' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/@apollo/client/link/persisted-queries/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/persisted-queries.ts' does not exist.", + "File '/node_modules/@apollo/client/link/persisted-queries.tsx' does not exist.", + "File '/node_modules/@apollo/client/link/persisted-queries.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/link/persisted-queries/index.d.ts'.", + "File '/node_modules/@apollo/client/link/persisted-queries/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/link/persisted-queries' was successfully resolved to '/node_modules/@apollo/client/link/persisted-queries/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/link/persisted-queries/persisted-queries.cjs", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "extension", + "reasonFileName": "/node_modules/@apollo/client/link/persisted-queries/persisted-queries.cjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/link/persisted-queries' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/persisted-queries' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/link/persisted-queries/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/persisted-queries.ts' does not exist.", + "File '/node_modules/@apollo/client/link/persisted-queries.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'persisted-queries.cjs' that references '/node_modules/@apollo/client/link/persisted-queries/persisted-queries.cjs'.", + "File '/node_modules/@apollo/client/link/persisted-queries/persisted-queries.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/link/persisted-queries/persisted-queries.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/persisted-queries/persisted-queries.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/link/persisted-queries/persisted-queries.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/link/persisted-queries/persisted-queries.cts' does not exist.", + "File '/node_modules/@apollo/client/link/persisted-queries/persisted-queries.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/link/persisted-queries/persisted-queries.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/link/persisted-queries/persisted-queries.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/link/persisted-queries/index.ts' does not exist.", + "File '/node_modules/@apollo/client/link/persisted-queries/index.tsx' does not exist.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/link/persisted-queries/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/persisted-queries.js' does not exist.", + "File '/node_modules/@apollo/client/link/persisted-queries.jsx' does not exist.", + "'package.json' has 'main' field 'persisted-queries.cjs' that references '/node_modules/@apollo/client/link/persisted-queries/persisted-queries.cjs'.", + "File '/node_modules/@apollo/client/link/persisted-queries/persisted-queries.cjs' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/link/persisted-queries' was successfully resolved to '/node_modules/@apollo/client/link/persisted-queries/persisted-queries.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/link/persisted-queries/index.d.ts" + ] + }, + "node16-esm": { + "name": "./link/persisted-queries", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/@apollo/client/link/persisted-queries/index.d.ts", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/@apollo/client/link/persisted-queries/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/link/persisted-queries' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/persisted-queries' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/@apollo/client/link/persisted-queries/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/link/persisted-queries/index.d.ts'.", + "File '/node_modules/@apollo/client/link/persisted-queries/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/link/persisted-queries' was successfully resolved to '/node_modules/@apollo/client/link/persisted-queries/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/link/persisted-queries/persisted-queries.cjs", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "extension", + "reasonFileName": "/node_modules/@apollo/client/link/persisted-queries/persisted-queries.cjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/link/persisted-queries' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/persisted-queries' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/link/persisted-queries/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'persisted-queries.cjs' that references '/node_modules/@apollo/client/link/persisted-queries/persisted-queries.cjs'.", + "File '/node_modules/@apollo/client/link/persisted-queries/persisted-queries.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/link/persisted-queries/persisted-queries.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/persisted-queries/persisted-queries.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/link/persisted-queries/persisted-queries.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/link/persisted-queries/persisted-queries.cts' does not exist.", + "Directory '/node_modules/@apollo/client/link/persisted-queries/persisted-queries.cjs' does not exist, skipping all lookups in it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/link/persisted-queries/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'persisted-queries.cjs' that references '/node_modules/@apollo/client/link/persisted-queries/persisted-queries.cjs'.", + "File '/node_modules/@apollo/client/link/persisted-queries/persisted-queries.cjs' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/persisted-queries' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/link/persisted-queries/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'persisted-queries.cjs' that references '/node_modules/@apollo/client/link/persisted-queries/persisted-queries.cjs'.", + "File '/node_modules/@apollo/client/link/persisted-queries/persisted-queries.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/link/persisted-queries/persisted-queries.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/persisted-queries/persisted-queries.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/link/persisted-queries/persisted-queries.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/link/persisted-queries/persisted-queries.cts' does not exist.", + "Directory '/node_modules/@apollo/client/link/persisted-queries/persisted-queries.cjs' does not exist, skipping all lookups in it.", + "======== Module name '@apollo/client/link/persisted-queries' was successfully resolved to '/node_modules/@apollo/client/link/persisted-queries/persisted-queries.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/link/persisted-queries/index.d.ts" + ] + }, + "bundler": { + "name": "./link/persisted-queries", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/@apollo/client/link/persisted-queries/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/link/persisted-queries' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/persisted-queries' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/@apollo/client/link/persisted-queries/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/persisted-queries.ts' does not exist.", + "File '/node_modules/@apollo/client/link/persisted-queries.tsx' does not exist.", + "File '/node_modules/@apollo/client/link/persisted-queries.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/link/persisted-queries/index.d.ts'.", + "File '/node_modules/@apollo/client/link/persisted-queries/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/link/persisted-queries' was successfully resolved to '/node_modules/@apollo/client/link/persisted-queries/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/link/persisted-queries/persisted-queries.cjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/link/persisted-queries' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/persisted-queries' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/link/persisted-queries/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/persisted-queries.ts' does not exist.", + "File '/node_modules/@apollo/client/link/persisted-queries.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'persisted-queries.cjs' that references '/node_modules/@apollo/client/link/persisted-queries/persisted-queries.cjs'.", + "File '/node_modules/@apollo/client/link/persisted-queries/persisted-queries.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/link/persisted-queries/persisted-queries.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/persisted-queries/persisted-queries.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/link/persisted-queries/persisted-queries.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/link/persisted-queries/persisted-queries.cts' does not exist.", + "File '/node_modules/@apollo/client/link/persisted-queries/persisted-queries.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/link/persisted-queries/persisted-queries.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/link/persisted-queries/persisted-queries.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/link/persisted-queries/index.ts' does not exist.", + "File '/node_modules/@apollo/client/link/persisted-queries/index.tsx' does not exist.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/link/persisted-queries/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/persisted-queries.js' does not exist.", + "File '/node_modules/@apollo/client/link/persisted-queries.jsx' does not exist.", + "'package.json' has 'main' field 'persisted-queries.cjs' that references '/node_modules/@apollo/client/link/persisted-queries/persisted-queries.cjs'.", + "File '/node_modules/@apollo/client/link/persisted-queries/persisted-queries.cjs' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/persisted-queries' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/link/persisted-queries/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/persisted-queries.ts' does not exist.", + "File '/node_modules/@apollo/client/link/persisted-queries.tsx' does not exist.", + "'package.json' has 'main' field 'persisted-queries.cjs' that references '/node_modules/@apollo/client/link/persisted-queries/persisted-queries.cjs'.", + "File '/node_modules/@apollo/client/link/persisted-queries/persisted-queries.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/link/persisted-queries/persisted-queries.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/persisted-queries/persisted-queries.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/link/persisted-queries/persisted-queries.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/link/persisted-queries/persisted-queries.cts' does not exist.", + "File '/node_modules/@apollo/client/link/persisted-queries/persisted-queries.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/link/persisted-queries/persisted-queries.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/link/persisted-queries/persisted-queries.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/link/persisted-queries/index.ts' does not exist.", + "File '/node_modules/@apollo/client/link/persisted-queries/index.tsx' does not exist.", + "======== Module name '@apollo/client/link/persisted-queries' was successfully resolved to '/node_modules/@apollo/client/link/persisted-queries/persisted-queries.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/utilities/globals/DEV.d.ts", + "/node_modules/@apollo/client/utilities/globals/maybe.d.ts", + "/node_modules/@apollo/client/utilities/globals/global.d.ts", + "/node_modules/@apollo/client/utilities/globals/index.d.ts", + "/node_modules/@apollo/client/utilities/graphql/directives.d.ts", + "/node_modules/@apollo/client/utilities/graphql/fragments.d.ts", + "/node_modules/@apollo/client/utilities/graphql/getFromAST.d.ts", + "/node_modules/@apollo/client/utilities/graphql/storeUtils.d.ts", + "/node_modules/@apollo/client/utilities/graphql/transform.d.ts", + "/node_modules/@apollo/client/cache/core/types/Cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/entityStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fragmentRegistry.d.ts", + "/node_modules/@apollo/client/cache/inmemory/types.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fixPolyfills.d.ts", + "/node_modules/@apollo/client/link/http/parseAndCheckHttpResponse.d.ts", + "/node_modules/@apollo/client/link/http/serializeFetchParameter.d.ts", + "/node_modules/@apollo/client/link/http/selectHttpOptionsAndBody.d.ts", + "/node_modules/@apollo/client/link/http/checkFetcher.d.ts", + "/node_modules/@apollo/client/link/http/createSignalIfSupported.d.ts", + "/node_modules/@apollo/client/link/http/selectURI.d.ts", + "/node_modules/@apollo/client/link/http/createHttpLink.d.ts", + "/node_modules/@apollo/client/link/http/HttpLink.d.ts", + "/node_modules/@apollo/client/link/http/rewriteURIForGET.d.ts", + "/node_modules/@apollo/client/link/http/index.d.ts", + "/node_modules/@apollo/client/core/networkStatus.d.ts", + "/node_modules/@apollo/client/link/utils/fromError.d.ts", + "/node_modules/@apollo/client/link/utils/toPromise.d.ts", + "/node_modules/@apollo/client/link/utils/fromPromise.d.ts", + "/node_modules/@apollo/client/link/utils/throwServerError.d.ts", + "/node_modules/@apollo/client/link/utils/validateOperation.d.ts", + "/node_modules/@apollo/client/link/utils/createOperation.d.ts", + "/node_modules/@apollo/client/link/utils/transformOperation.d.ts", + "/node_modules/@apollo/client/link/utils/index.d.ts", + "/node_modules/@apollo/client/errors/index.d.ts", + "/node_modules/@apollo/client/core/QueryInfo.d.ts", + "/node_modules/@apollo/client/core/LocalState.d.ts", + "/node_modules/@apollo/client/core/types.d.ts", + "/node_modules/@apollo/client/core/watchQueryOptions.d.ts", + "/node_modules/@apollo/client/core/QueryManager.d.ts", + "/node_modules/@apollo/client/core/ObservableQuery.d.ts", + "/node_modules/@apollo/client/core/ApolloClient.d.ts", + "/node_modules/@apollo/client/core/index.d.ts", + "/node_modules/@apollo/client/cache/inmemory/reactiveVars.d.ts", + "/node_modules/@apollo/client/cache/inmemory/inMemoryCache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/object-canon.d.ts", + "/node_modules/@apollo/client/cache/inmemory/readFromStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/writeToStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/policies.d.ts", + "/node_modules/@apollo/client/cache/core/types/common.d.ts", + "/node_modules/@apollo/client/cache/core/types/DataProxy.d.ts", + "/node_modules/@apollo/client/cache/core/cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/helpers.d.ts", + "/node_modules/@apollo/client/cache/index.d.ts", + "/node_modules/@apollo/client/utilities/policies/pagination.d.ts", + "/node_modules/@apollo/client/utilities/observables/Observable.d.ts", + "/node_modules/@apollo/client/utilities/common/objects.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/cloneDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/maybeDeepFreeze.d.ts", + "/node_modules/@apollo/client/utilities/observables/iteration.d.ts", + "/node_modules/@apollo/client/utilities/observables/asyncMap.d.ts", + "/node_modules/@apollo/client/utilities/observables/Concast.d.ts", + "/node_modules/@apollo/client/utilities/observables/subclassing.d.ts", + "/node_modules/@apollo/client/utilities/common/arrays.d.ts", + "/node_modules/@apollo/client/utilities/common/errorHandling.d.ts", + "/node_modules/@apollo/client/utilities/common/canUse.d.ts", + "/node_modules/@apollo/client/utilities/common/compact.d.ts", + "/node_modules/@apollo/client/utilities/common/makeUniqueId.d.ts", + "/node_modules/@apollo/client/utilities/common/stringifyForDisplay.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeOptions.d.ts", + "/node_modules/@apollo/client/utilities/types/IsStrictlyAny.d.ts", + "/node_modules/@apollo/client/utilities/index.d.ts", + "/node_modules/@apollo/client/link/core/types.d.ts", + "/node_modules/@apollo/client/link/core/ApolloLink.d.ts", + "/node_modules/@apollo/client/link/core/empty.d.ts", + "/node_modules/@apollo/client/link/core/from.d.ts", + "/node_modules/@apollo/client/link/core/split.d.ts", + "/node_modules/@apollo/client/link/core/concat.d.ts", + "/node_modules/@apollo/client/link/core/execute.d.ts", + "/node_modules/@apollo/client/link/core/index.d.ts", + "/node_modules/@apollo/client/link/persisted-queries/index.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + }, + "./link/retry": { + "subpath": "./link/retry", + "resolutions": { + "node10": { + "name": "./link/retry", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/@apollo/client/link/retry/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/link/retry' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module '@apollo/client/link/retry' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/@apollo/client/link/retry/package.json'.", + "File '/node_modules/@apollo/client/link/retry.ts' does not exist.", + "File '/node_modules/@apollo/client/link/retry.tsx' does not exist.", + "File '/node_modules/@apollo/client/link/retry.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/link/retry/index.d.ts'.", + "File '/node_modules/@apollo/client/link/retry/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/link/retry' was successfully resolved to '/node_modules/@apollo/client/link/retry/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/link/retry/retry.cjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/link/retry' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module '@apollo/client/link/retry' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/link/retry/package.json'.", + "File '/node_modules/@apollo/client/link/retry.ts' does not exist.", + "File '/node_modules/@apollo/client/link/retry.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'retry.cjs' that references '/node_modules/@apollo/client/link/retry/retry.cjs'.", + "File '/node_modules/@apollo/client/link/retry/retry.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/link/retry/retry.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/retry/retry.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/link/retry/retry.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/link/retry/retry.cts' does not exist.", + "File '/node_modules/@apollo/client/link/retry/retry.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/link/retry/retry.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/link/retry/retry.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/link/retry/index.ts' does not exist.", + "File '/node_modules/@apollo/client/link/retry/index.tsx' does not exist.", + "Loading module '@apollo/client/link/retry' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/link/retry/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/retry.js' does not exist.", + "File '/node_modules/@apollo/client/link/retry.jsx' does not exist.", + "'package.json' has 'main' field 'retry.cjs' that references '/node_modules/@apollo/client/link/retry/retry.cjs'.", + "File '/node_modules/@apollo/client/link/retry/retry.cjs' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/link/retry' was successfully resolved to '/node_modules/@apollo/client/link/retry/retry.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/utilities/globals/DEV.d.ts", + "/node_modules/@apollo/client/utilities/globals/maybe.d.ts", + "/node_modules/@apollo/client/utilities/globals/global.d.ts", + "/node_modules/@apollo/client/utilities/globals/index.d.ts", + "/node_modules/@apollo/client/utilities/graphql/directives.d.ts", + "/node_modules/@apollo/client/utilities/graphql/fragments.d.ts", + "/node_modules/@apollo/client/utilities/graphql/getFromAST.d.ts", + "/node_modules/@apollo/client/utilities/graphql/storeUtils.d.ts", + "/node_modules/@apollo/client/utilities/graphql/transform.d.ts", + "/node_modules/@apollo/client/cache/core/types/Cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/entityStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fragmentRegistry.d.ts", + "/node_modules/@apollo/client/cache/inmemory/types.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fixPolyfills.d.ts", + "/node_modules/@apollo/client/link/http/parseAndCheckHttpResponse.d.ts", + "/node_modules/@apollo/client/link/http/serializeFetchParameter.d.ts", + "/node_modules/@apollo/client/link/http/selectHttpOptionsAndBody.d.ts", + "/node_modules/@apollo/client/link/http/checkFetcher.d.ts", + "/node_modules/@apollo/client/link/http/createSignalIfSupported.d.ts", + "/node_modules/@apollo/client/link/http/selectURI.d.ts", + "/node_modules/@apollo/client/link/http/createHttpLink.d.ts", + "/node_modules/@apollo/client/link/http/HttpLink.d.ts", + "/node_modules/@apollo/client/link/http/rewriteURIForGET.d.ts", + "/node_modules/@apollo/client/link/http/index.d.ts", + "/node_modules/@apollo/client/core/networkStatus.d.ts", + "/node_modules/@apollo/client/link/utils/fromError.d.ts", + "/node_modules/@apollo/client/link/utils/toPromise.d.ts", + "/node_modules/@apollo/client/link/utils/fromPromise.d.ts", + "/node_modules/@apollo/client/link/utils/throwServerError.d.ts", + "/node_modules/@apollo/client/link/utils/validateOperation.d.ts", + "/node_modules/@apollo/client/link/utils/createOperation.d.ts", + "/node_modules/@apollo/client/link/utils/transformOperation.d.ts", + "/node_modules/@apollo/client/link/utils/index.d.ts", + "/node_modules/@apollo/client/errors/index.d.ts", + "/node_modules/@apollo/client/core/QueryInfo.d.ts", + "/node_modules/@apollo/client/core/LocalState.d.ts", + "/node_modules/@apollo/client/core/types.d.ts", + "/node_modules/@apollo/client/core/watchQueryOptions.d.ts", + "/node_modules/@apollo/client/core/QueryManager.d.ts", + "/node_modules/@apollo/client/core/ObservableQuery.d.ts", + "/node_modules/@apollo/client/core/ApolloClient.d.ts", + "/node_modules/@apollo/client/core/index.d.ts", + "/node_modules/@apollo/client/cache/inmemory/reactiveVars.d.ts", + "/node_modules/@apollo/client/cache/inmemory/inMemoryCache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/object-canon.d.ts", + "/node_modules/@apollo/client/cache/inmemory/readFromStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/writeToStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/policies.d.ts", + "/node_modules/@apollo/client/cache/core/types/common.d.ts", + "/node_modules/@apollo/client/cache/core/types/DataProxy.d.ts", + "/node_modules/@apollo/client/cache/core/cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/helpers.d.ts", + "/node_modules/@apollo/client/cache/index.d.ts", + "/node_modules/@apollo/client/utilities/policies/pagination.d.ts", + "/node_modules/@apollo/client/utilities/observables/Observable.d.ts", + "/node_modules/@apollo/client/utilities/common/objects.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/cloneDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/maybeDeepFreeze.d.ts", + "/node_modules/@apollo/client/utilities/observables/iteration.d.ts", + "/node_modules/@apollo/client/utilities/observables/asyncMap.d.ts", + "/node_modules/@apollo/client/utilities/observables/Concast.d.ts", + "/node_modules/@apollo/client/utilities/observables/subclassing.d.ts", + "/node_modules/@apollo/client/utilities/common/arrays.d.ts", + "/node_modules/@apollo/client/utilities/common/errorHandling.d.ts", + "/node_modules/@apollo/client/utilities/common/canUse.d.ts", + "/node_modules/@apollo/client/utilities/common/compact.d.ts", + "/node_modules/@apollo/client/utilities/common/makeUniqueId.d.ts", + "/node_modules/@apollo/client/utilities/common/stringifyForDisplay.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeOptions.d.ts", + "/node_modules/@apollo/client/utilities/types/IsStrictlyAny.d.ts", + "/node_modules/@apollo/client/utilities/index.d.ts", + "/node_modules/@apollo/client/link/core/types.d.ts", + "/node_modules/@apollo/client/link/core/ApolloLink.d.ts", + "/node_modules/@apollo/client/link/core/empty.d.ts", + "/node_modules/@apollo/client/link/core/from.d.ts", + "/node_modules/@apollo/client/link/core/split.d.ts", + "/node_modules/@apollo/client/link/core/concat.d.ts", + "/node_modules/@apollo/client/link/core/execute.d.ts", + "/node_modules/@apollo/client/link/core/index.d.ts", + "/node_modules/@apollo/client/link/retry/delayFunction.d.ts", + "/node_modules/@apollo/client/link/retry/retryFunction.d.ts", + "/node_modules/@apollo/client/link/retry/retryLink.d.ts", + "/node_modules/@apollo/client/link/retry/index.d.ts" + ] + }, + "node16-cjs": { + "name": "./link/retry", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/@apollo/client/link/retry/index.d.ts", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/@apollo/client/link/retry/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/link/retry' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/retry' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/@apollo/client/link/retry/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/retry.ts' does not exist.", + "File '/node_modules/@apollo/client/link/retry.tsx' does not exist.", + "File '/node_modules/@apollo/client/link/retry.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/link/retry/index.d.ts'.", + "File '/node_modules/@apollo/client/link/retry/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/link/retry' was successfully resolved to '/node_modules/@apollo/client/link/retry/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/link/retry/retry.cjs", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "extension", + "reasonFileName": "/node_modules/@apollo/client/link/retry/retry.cjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/link/retry' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/retry' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/link/retry/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/retry.ts' does not exist.", + "File '/node_modules/@apollo/client/link/retry.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'retry.cjs' that references '/node_modules/@apollo/client/link/retry/retry.cjs'.", + "File '/node_modules/@apollo/client/link/retry/retry.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/link/retry/retry.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/retry/retry.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/link/retry/retry.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/link/retry/retry.cts' does not exist.", + "File '/node_modules/@apollo/client/link/retry/retry.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/link/retry/retry.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/link/retry/retry.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/link/retry/index.ts' does not exist.", + "File '/node_modules/@apollo/client/link/retry/index.tsx' does not exist.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/link/retry/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/retry.js' does not exist.", + "File '/node_modules/@apollo/client/link/retry.jsx' does not exist.", + "'package.json' has 'main' field 'retry.cjs' that references '/node_modules/@apollo/client/link/retry/retry.cjs'.", + "File '/node_modules/@apollo/client/link/retry/retry.cjs' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/link/retry' was successfully resolved to '/node_modules/@apollo/client/link/retry/retry.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/link/retry/index.d.ts" + ] + }, + "node16-esm": { + "name": "./link/retry", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/@apollo/client/link/retry/index.d.ts", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/@apollo/client/link/retry/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/link/retry' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/retry' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/@apollo/client/link/retry/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/link/retry/index.d.ts'.", + "File '/node_modules/@apollo/client/link/retry/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/link/retry' was successfully resolved to '/node_modules/@apollo/client/link/retry/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/link/retry/retry.cjs", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "extension", + "reasonFileName": "/node_modules/@apollo/client/link/retry/retry.cjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/link/retry' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/retry' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/link/retry/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'retry.cjs' that references '/node_modules/@apollo/client/link/retry/retry.cjs'.", + "File '/node_modules/@apollo/client/link/retry/retry.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/link/retry/retry.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/retry/retry.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/link/retry/retry.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/link/retry/retry.cts' does not exist.", + "Directory '/node_modules/@apollo/client/link/retry/retry.cjs' does not exist, skipping all lookups in it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/link/retry/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'retry.cjs' that references '/node_modules/@apollo/client/link/retry/retry.cjs'.", + "File '/node_modules/@apollo/client/link/retry/retry.cjs' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/retry' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/link/retry/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'retry.cjs' that references '/node_modules/@apollo/client/link/retry/retry.cjs'.", + "File '/node_modules/@apollo/client/link/retry/retry.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/link/retry/retry.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/retry/retry.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/link/retry/retry.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/link/retry/retry.cts' does not exist.", + "Directory '/node_modules/@apollo/client/link/retry/retry.cjs' does not exist, skipping all lookups in it.", + "======== Module name '@apollo/client/link/retry' was successfully resolved to '/node_modules/@apollo/client/link/retry/retry.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/link/retry/index.d.ts" + ] + }, + "bundler": { + "name": "./link/retry", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/@apollo/client/link/retry/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/link/retry' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/retry' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/@apollo/client/link/retry/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/retry.ts' does not exist.", + "File '/node_modules/@apollo/client/link/retry.tsx' does not exist.", + "File '/node_modules/@apollo/client/link/retry.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/link/retry/index.d.ts'.", + "File '/node_modules/@apollo/client/link/retry/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/link/retry' was successfully resolved to '/node_modules/@apollo/client/link/retry/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/link/retry/retry.cjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/link/retry' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/retry' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/link/retry/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/retry.ts' does not exist.", + "File '/node_modules/@apollo/client/link/retry.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'retry.cjs' that references '/node_modules/@apollo/client/link/retry/retry.cjs'.", + "File '/node_modules/@apollo/client/link/retry/retry.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/link/retry/retry.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/retry/retry.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/link/retry/retry.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/link/retry/retry.cts' does not exist.", + "File '/node_modules/@apollo/client/link/retry/retry.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/link/retry/retry.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/link/retry/retry.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/link/retry/index.ts' does not exist.", + "File '/node_modules/@apollo/client/link/retry/index.tsx' does not exist.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/link/retry/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/retry.js' does not exist.", + "File '/node_modules/@apollo/client/link/retry.jsx' does not exist.", + "'package.json' has 'main' field 'retry.cjs' that references '/node_modules/@apollo/client/link/retry/retry.cjs'.", + "File '/node_modules/@apollo/client/link/retry/retry.cjs' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/retry' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/link/retry/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/retry.ts' does not exist.", + "File '/node_modules/@apollo/client/link/retry.tsx' does not exist.", + "'package.json' has 'main' field 'retry.cjs' that references '/node_modules/@apollo/client/link/retry/retry.cjs'.", + "File '/node_modules/@apollo/client/link/retry/retry.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/link/retry/retry.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/retry/retry.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/link/retry/retry.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/link/retry/retry.cts' does not exist.", + "File '/node_modules/@apollo/client/link/retry/retry.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/link/retry/retry.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/link/retry/retry.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/link/retry/index.ts' does not exist.", + "File '/node_modules/@apollo/client/link/retry/index.tsx' does not exist.", + "======== Module name '@apollo/client/link/retry' was successfully resolved to '/node_modules/@apollo/client/link/retry/retry.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/utilities/globals/DEV.d.ts", + "/node_modules/@apollo/client/utilities/globals/maybe.d.ts", + "/node_modules/@apollo/client/utilities/globals/global.d.ts", + "/node_modules/@apollo/client/utilities/globals/index.d.ts", + "/node_modules/@apollo/client/utilities/graphql/directives.d.ts", + "/node_modules/@apollo/client/utilities/graphql/fragments.d.ts", + "/node_modules/@apollo/client/utilities/graphql/getFromAST.d.ts", + "/node_modules/@apollo/client/utilities/graphql/storeUtils.d.ts", + "/node_modules/@apollo/client/utilities/graphql/transform.d.ts", + "/node_modules/@apollo/client/cache/core/types/Cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/entityStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fragmentRegistry.d.ts", + "/node_modules/@apollo/client/cache/inmemory/types.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fixPolyfills.d.ts", + "/node_modules/@apollo/client/link/http/parseAndCheckHttpResponse.d.ts", + "/node_modules/@apollo/client/link/http/serializeFetchParameter.d.ts", + "/node_modules/@apollo/client/link/http/selectHttpOptionsAndBody.d.ts", + "/node_modules/@apollo/client/link/http/checkFetcher.d.ts", + "/node_modules/@apollo/client/link/http/createSignalIfSupported.d.ts", + "/node_modules/@apollo/client/link/http/selectURI.d.ts", + "/node_modules/@apollo/client/link/http/createHttpLink.d.ts", + "/node_modules/@apollo/client/link/http/HttpLink.d.ts", + "/node_modules/@apollo/client/link/http/rewriteURIForGET.d.ts", + "/node_modules/@apollo/client/link/http/index.d.ts", + "/node_modules/@apollo/client/core/networkStatus.d.ts", + "/node_modules/@apollo/client/link/utils/fromError.d.ts", + "/node_modules/@apollo/client/link/utils/toPromise.d.ts", + "/node_modules/@apollo/client/link/utils/fromPromise.d.ts", + "/node_modules/@apollo/client/link/utils/throwServerError.d.ts", + "/node_modules/@apollo/client/link/utils/validateOperation.d.ts", + "/node_modules/@apollo/client/link/utils/createOperation.d.ts", + "/node_modules/@apollo/client/link/utils/transformOperation.d.ts", + "/node_modules/@apollo/client/link/utils/index.d.ts", + "/node_modules/@apollo/client/errors/index.d.ts", + "/node_modules/@apollo/client/core/QueryInfo.d.ts", + "/node_modules/@apollo/client/core/LocalState.d.ts", + "/node_modules/@apollo/client/core/types.d.ts", + "/node_modules/@apollo/client/core/watchQueryOptions.d.ts", + "/node_modules/@apollo/client/core/QueryManager.d.ts", + "/node_modules/@apollo/client/core/ObservableQuery.d.ts", + "/node_modules/@apollo/client/core/ApolloClient.d.ts", + "/node_modules/@apollo/client/core/index.d.ts", + "/node_modules/@apollo/client/cache/inmemory/reactiveVars.d.ts", + "/node_modules/@apollo/client/cache/inmemory/inMemoryCache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/object-canon.d.ts", + "/node_modules/@apollo/client/cache/inmemory/readFromStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/writeToStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/policies.d.ts", + "/node_modules/@apollo/client/cache/core/types/common.d.ts", + "/node_modules/@apollo/client/cache/core/types/DataProxy.d.ts", + "/node_modules/@apollo/client/cache/core/cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/helpers.d.ts", + "/node_modules/@apollo/client/cache/index.d.ts", + "/node_modules/@apollo/client/utilities/policies/pagination.d.ts", + "/node_modules/@apollo/client/utilities/observables/Observable.d.ts", + "/node_modules/@apollo/client/utilities/common/objects.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/cloneDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/maybeDeepFreeze.d.ts", + "/node_modules/@apollo/client/utilities/observables/iteration.d.ts", + "/node_modules/@apollo/client/utilities/observables/asyncMap.d.ts", + "/node_modules/@apollo/client/utilities/observables/Concast.d.ts", + "/node_modules/@apollo/client/utilities/observables/subclassing.d.ts", + "/node_modules/@apollo/client/utilities/common/arrays.d.ts", + "/node_modules/@apollo/client/utilities/common/errorHandling.d.ts", + "/node_modules/@apollo/client/utilities/common/canUse.d.ts", + "/node_modules/@apollo/client/utilities/common/compact.d.ts", + "/node_modules/@apollo/client/utilities/common/makeUniqueId.d.ts", + "/node_modules/@apollo/client/utilities/common/stringifyForDisplay.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeOptions.d.ts", + "/node_modules/@apollo/client/utilities/types/IsStrictlyAny.d.ts", + "/node_modules/@apollo/client/utilities/index.d.ts", + "/node_modules/@apollo/client/link/core/types.d.ts", + "/node_modules/@apollo/client/link/core/ApolloLink.d.ts", + "/node_modules/@apollo/client/link/core/empty.d.ts", + "/node_modules/@apollo/client/link/core/from.d.ts", + "/node_modules/@apollo/client/link/core/split.d.ts", + "/node_modules/@apollo/client/link/core/concat.d.ts", + "/node_modules/@apollo/client/link/core/execute.d.ts", + "/node_modules/@apollo/client/link/core/index.d.ts", + "/node_modules/@apollo/client/link/retry/delayFunction.d.ts", + "/node_modules/@apollo/client/link/retry/retryFunction.d.ts", + "/node_modules/@apollo/client/link/retry/retryLink.d.ts", + "/node_modules/@apollo/client/link/retry/index.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + }, + "./link/schema": { + "subpath": "./link/schema", + "resolutions": { + "node10": { + "name": "./link/schema", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/@apollo/client/link/schema/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/link/schema' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module '@apollo/client/link/schema' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/@apollo/client/link/schema/package.json'.", + "File '/node_modules/@apollo/client/link/schema.ts' does not exist.", + "File '/node_modules/@apollo/client/link/schema.tsx' does not exist.", + "File '/node_modules/@apollo/client/link/schema.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/link/schema/index.d.ts'.", + "File '/node_modules/@apollo/client/link/schema/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/link/schema' was successfully resolved to '/node_modules/@apollo/client/link/schema/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/link/schema/schema.cjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/link/schema' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module '@apollo/client/link/schema' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/link/schema/package.json'.", + "File '/node_modules/@apollo/client/link/schema.ts' does not exist.", + "File '/node_modules/@apollo/client/link/schema.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'schema.cjs' that references '/node_modules/@apollo/client/link/schema/schema.cjs'.", + "File '/node_modules/@apollo/client/link/schema/schema.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/link/schema/schema.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/schema/schema.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/link/schema/schema.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/link/schema/schema.cts' does not exist.", + "File '/node_modules/@apollo/client/link/schema/schema.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/link/schema/schema.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/link/schema/schema.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/link/schema/index.ts' does not exist.", + "File '/node_modules/@apollo/client/link/schema/index.tsx' does not exist.", + "Loading module '@apollo/client/link/schema' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/link/schema/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/schema.js' does not exist.", + "File '/node_modules/@apollo/client/link/schema.jsx' does not exist.", + "'package.json' has 'main' field 'schema.cjs' that references '/node_modules/@apollo/client/link/schema/schema.cjs'.", + "File '/node_modules/@apollo/client/link/schema/schema.cjs' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/link/schema' was successfully resolved to '/node_modules/@apollo/client/link/schema/schema.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/utilities/globals/DEV.d.ts", + "/node_modules/@apollo/client/utilities/globals/maybe.d.ts", + "/node_modules/@apollo/client/utilities/globals/global.d.ts", + "/node_modules/@apollo/client/utilities/globals/index.d.ts", + "/node_modules/@apollo/client/utilities/graphql/directives.d.ts", + "/node_modules/@apollo/client/utilities/graphql/fragments.d.ts", + "/node_modules/@apollo/client/utilities/graphql/getFromAST.d.ts", + "/node_modules/@apollo/client/utilities/graphql/storeUtils.d.ts", + "/node_modules/@apollo/client/utilities/graphql/transform.d.ts", + "/node_modules/@apollo/client/cache/core/types/Cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/entityStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fragmentRegistry.d.ts", + "/node_modules/@apollo/client/cache/inmemory/types.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fixPolyfills.d.ts", + "/node_modules/@apollo/client/link/http/parseAndCheckHttpResponse.d.ts", + "/node_modules/@apollo/client/link/http/serializeFetchParameter.d.ts", + "/node_modules/@apollo/client/link/http/selectHttpOptionsAndBody.d.ts", + "/node_modules/@apollo/client/link/http/checkFetcher.d.ts", + "/node_modules/@apollo/client/link/http/createSignalIfSupported.d.ts", + "/node_modules/@apollo/client/link/http/selectURI.d.ts", + "/node_modules/@apollo/client/link/http/createHttpLink.d.ts", + "/node_modules/@apollo/client/link/http/HttpLink.d.ts", + "/node_modules/@apollo/client/link/http/rewriteURIForGET.d.ts", + "/node_modules/@apollo/client/link/http/index.d.ts", + "/node_modules/@apollo/client/core/networkStatus.d.ts", + "/node_modules/@apollo/client/link/utils/fromError.d.ts", + "/node_modules/@apollo/client/link/utils/toPromise.d.ts", + "/node_modules/@apollo/client/link/utils/fromPromise.d.ts", + "/node_modules/@apollo/client/link/utils/throwServerError.d.ts", + "/node_modules/@apollo/client/link/utils/validateOperation.d.ts", + "/node_modules/@apollo/client/link/utils/createOperation.d.ts", + "/node_modules/@apollo/client/link/utils/transformOperation.d.ts", + "/node_modules/@apollo/client/link/utils/index.d.ts", + "/node_modules/@apollo/client/errors/index.d.ts", + "/node_modules/@apollo/client/core/QueryInfo.d.ts", + "/node_modules/@apollo/client/core/LocalState.d.ts", + "/node_modules/@apollo/client/core/types.d.ts", + "/node_modules/@apollo/client/core/watchQueryOptions.d.ts", + "/node_modules/@apollo/client/core/QueryManager.d.ts", + "/node_modules/@apollo/client/core/ObservableQuery.d.ts", + "/node_modules/@apollo/client/core/ApolloClient.d.ts", + "/node_modules/@apollo/client/core/index.d.ts", + "/node_modules/@apollo/client/cache/inmemory/reactiveVars.d.ts", + "/node_modules/@apollo/client/cache/inmemory/inMemoryCache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/object-canon.d.ts", + "/node_modules/@apollo/client/cache/inmemory/readFromStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/writeToStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/policies.d.ts", + "/node_modules/@apollo/client/cache/core/types/common.d.ts", + "/node_modules/@apollo/client/cache/core/types/DataProxy.d.ts", + "/node_modules/@apollo/client/cache/core/cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/helpers.d.ts", + "/node_modules/@apollo/client/cache/index.d.ts", + "/node_modules/@apollo/client/utilities/policies/pagination.d.ts", + "/node_modules/@apollo/client/utilities/observables/Observable.d.ts", + "/node_modules/@apollo/client/utilities/common/objects.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/cloneDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/maybeDeepFreeze.d.ts", + "/node_modules/@apollo/client/utilities/observables/iteration.d.ts", + "/node_modules/@apollo/client/utilities/observables/asyncMap.d.ts", + "/node_modules/@apollo/client/utilities/observables/Concast.d.ts", + "/node_modules/@apollo/client/utilities/observables/subclassing.d.ts", + "/node_modules/@apollo/client/utilities/common/arrays.d.ts", + "/node_modules/@apollo/client/utilities/common/errorHandling.d.ts", + "/node_modules/@apollo/client/utilities/common/canUse.d.ts", + "/node_modules/@apollo/client/utilities/common/compact.d.ts", + "/node_modules/@apollo/client/utilities/common/makeUniqueId.d.ts", + "/node_modules/@apollo/client/utilities/common/stringifyForDisplay.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeOptions.d.ts", + "/node_modules/@apollo/client/utilities/types/IsStrictlyAny.d.ts", + "/node_modules/@apollo/client/utilities/index.d.ts", + "/node_modules/@apollo/client/link/core/types.d.ts", + "/node_modules/@apollo/client/link/core/ApolloLink.d.ts", + "/node_modules/@apollo/client/link/core/empty.d.ts", + "/node_modules/@apollo/client/link/core/from.d.ts", + "/node_modules/@apollo/client/link/core/split.d.ts", + "/node_modules/@apollo/client/link/core/concat.d.ts", + "/node_modules/@apollo/client/link/core/execute.d.ts", + "/node_modules/@apollo/client/link/core/index.d.ts", + "/node_modules/@apollo/client/link/schema/index.d.ts" + ] + }, + "node16-cjs": { + "name": "./link/schema", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/@apollo/client/link/schema/index.d.ts", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/@apollo/client/link/schema/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/link/schema' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/schema' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/@apollo/client/link/schema/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/schema.ts' does not exist.", + "File '/node_modules/@apollo/client/link/schema.tsx' does not exist.", + "File '/node_modules/@apollo/client/link/schema.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/link/schema/index.d.ts'.", + "File '/node_modules/@apollo/client/link/schema/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/link/schema' was successfully resolved to '/node_modules/@apollo/client/link/schema/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/link/schema/schema.cjs", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "extension", + "reasonFileName": "/node_modules/@apollo/client/link/schema/schema.cjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/link/schema' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/schema' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/link/schema/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/schema.ts' does not exist.", + "File '/node_modules/@apollo/client/link/schema.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'schema.cjs' that references '/node_modules/@apollo/client/link/schema/schema.cjs'.", + "File '/node_modules/@apollo/client/link/schema/schema.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/link/schema/schema.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/schema/schema.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/link/schema/schema.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/link/schema/schema.cts' does not exist.", + "File '/node_modules/@apollo/client/link/schema/schema.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/link/schema/schema.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/link/schema/schema.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/link/schema/index.ts' does not exist.", + "File '/node_modules/@apollo/client/link/schema/index.tsx' does not exist.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/link/schema/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/schema.js' does not exist.", + "File '/node_modules/@apollo/client/link/schema.jsx' does not exist.", + "'package.json' has 'main' field 'schema.cjs' that references '/node_modules/@apollo/client/link/schema/schema.cjs'.", + "File '/node_modules/@apollo/client/link/schema/schema.cjs' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/link/schema' was successfully resolved to '/node_modules/@apollo/client/link/schema/schema.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/link/schema/index.d.ts" + ] + }, + "node16-esm": { + "name": "./link/schema", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/@apollo/client/link/schema/index.d.ts", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/@apollo/client/link/schema/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/link/schema' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/schema' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/@apollo/client/link/schema/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/link/schema/index.d.ts'.", + "File '/node_modules/@apollo/client/link/schema/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/link/schema' was successfully resolved to '/node_modules/@apollo/client/link/schema/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/link/schema/schema.cjs", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "extension", + "reasonFileName": "/node_modules/@apollo/client/link/schema/schema.cjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/link/schema' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/schema' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/link/schema/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'schema.cjs' that references '/node_modules/@apollo/client/link/schema/schema.cjs'.", + "File '/node_modules/@apollo/client/link/schema/schema.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/link/schema/schema.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/schema/schema.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/link/schema/schema.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/link/schema/schema.cts' does not exist.", + "Directory '/node_modules/@apollo/client/link/schema/schema.cjs' does not exist, skipping all lookups in it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/link/schema/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'schema.cjs' that references '/node_modules/@apollo/client/link/schema/schema.cjs'.", + "File '/node_modules/@apollo/client/link/schema/schema.cjs' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/schema' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/link/schema/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'schema.cjs' that references '/node_modules/@apollo/client/link/schema/schema.cjs'.", + "File '/node_modules/@apollo/client/link/schema/schema.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/link/schema/schema.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/schema/schema.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/link/schema/schema.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/link/schema/schema.cts' does not exist.", + "Directory '/node_modules/@apollo/client/link/schema/schema.cjs' does not exist, skipping all lookups in it.", + "======== Module name '@apollo/client/link/schema' was successfully resolved to '/node_modules/@apollo/client/link/schema/schema.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/link/schema/index.d.ts" + ] + }, + "bundler": { + "name": "./link/schema", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/@apollo/client/link/schema/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/link/schema' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/schema' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/@apollo/client/link/schema/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/schema.ts' does not exist.", + "File '/node_modules/@apollo/client/link/schema.tsx' does not exist.", + "File '/node_modules/@apollo/client/link/schema.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/link/schema/index.d.ts'.", + "File '/node_modules/@apollo/client/link/schema/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/link/schema' was successfully resolved to '/node_modules/@apollo/client/link/schema/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/link/schema/schema.cjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/link/schema' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/schema' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/link/schema/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/schema.ts' does not exist.", + "File '/node_modules/@apollo/client/link/schema.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'schema.cjs' that references '/node_modules/@apollo/client/link/schema/schema.cjs'.", + "File '/node_modules/@apollo/client/link/schema/schema.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/link/schema/schema.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/schema/schema.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/link/schema/schema.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/link/schema/schema.cts' does not exist.", + "File '/node_modules/@apollo/client/link/schema/schema.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/link/schema/schema.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/link/schema/schema.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/link/schema/index.ts' does not exist.", + "File '/node_modules/@apollo/client/link/schema/index.tsx' does not exist.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/link/schema/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/schema.js' does not exist.", + "File '/node_modules/@apollo/client/link/schema.jsx' does not exist.", + "'package.json' has 'main' field 'schema.cjs' that references '/node_modules/@apollo/client/link/schema/schema.cjs'.", + "File '/node_modules/@apollo/client/link/schema/schema.cjs' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/schema' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/link/schema/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/schema.ts' does not exist.", + "File '/node_modules/@apollo/client/link/schema.tsx' does not exist.", + "'package.json' has 'main' field 'schema.cjs' that references '/node_modules/@apollo/client/link/schema/schema.cjs'.", + "File '/node_modules/@apollo/client/link/schema/schema.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/link/schema/schema.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/schema/schema.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/link/schema/schema.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/link/schema/schema.cts' does not exist.", + "File '/node_modules/@apollo/client/link/schema/schema.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/link/schema/schema.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/link/schema/schema.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/link/schema/index.ts' does not exist.", + "File '/node_modules/@apollo/client/link/schema/index.tsx' does not exist.", + "======== Module name '@apollo/client/link/schema' was successfully resolved to '/node_modules/@apollo/client/link/schema/schema.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/utilities/globals/DEV.d.ts", + "/node_modules/@apollo/client/utilities/globals/maybe.d.ts", + "/node_modules/@apollo/client/utilities/globals/global.d.ts", + "/node_modules/@apollo/client/utilities/globals/index.d.ts", + "/node_modules/@apollo/client/utilities/graphql/directives.d.ts", + "/node_modules/@apollo/client/utilities/graphql/fragments.d.ts", + "/node_modules/@apollo/client/utilities/graphql/getFromAST.d.ts", + "/node_modules/@apollo/client/utilities/graphql/storeUtils.d.ts", + "/node_modules/@apollo/client/utilities/graphql/transform.d.ts", + "/node_modules/@apollo/client/cache/core/types/Cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/entityStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fragmentRegistry.d.ts", + "/node_modules/@apollo/client/cache/inmemory/types.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fixPolyfills.d.ts", + "/node_modules/@apollo/client/link/http/parseAndCheckHttpResponse.d.ts", + "/node_modules/@apollo/client/link/http/serializeFetchParameter.d.ts", + "/node_modules/@apollo/client/link/http/selectHttpOptionsAndBody.d.ts", + "/node_modules/@apollo/client/link/http/checkFetcher.d.ts", + "/node_modules/@apollo/client/link/http/createSignalIfSupported.d.ts", + "/node_modules/@apollo/client/link/http/selectURI.d.ts", + "/node_modules/@apollo/client/link/http/createHttpLink.d.ts", + "/node_modules/@apollo/client/link/http/HttpLink.d.ts", + "/node_modules/@apollo/client/link/http/rewriteURIForGET.d.ts", + "/node_modules/@apollo/client/link/http/index.d.ts", + "/node_modules/@apollo/client/core/networkStatus.d.ts", + "/node_modules/@apollo/client/link/utils/fromError.d.ts", + "/node_modules/@apollo/client/link/utils/toPromise.d.ts", + "/node_modules/@apollo/client/link/utils/fromPromise.d.ts", + "/node_modules/@apollo/client/link/utils/throwServerError.d.ts", + "/node_modules/@apollo/client/link/utils/validateOperation.d.ts", + "/node_modules/@apollo/client/link/utils/createOperation.d.ts", + "/node_modules/@apollo/client/link/utils/transformOperation.d.ts", + "/node_modules/@apollo/client/link/utils/index.d.ts", + "/node_modules/@apollo/client/errors/index.d.ts", + "/node_modules/@apollo/client/core/QueryInfo.d.ts", + "/node_modules/@apollo/client/core/LocalState.d.ts", + "/node_modules/@apollo/client/core/types.d.ts", + "/node_modules/@apollo/client/core/watchQueryOptions.d.ts", + "/node_modules/@apollo/client/core/QueryManager.d.ts", + "/node_modules/@apollo/client/core/ObservableQuery.d.ts", + "/node_modules/@apollo/client/core/ApolloClient.d.ts", + "/node_modules/@apollo/client/core/index.d.ts", + "/node_modules/@apollo/client/cache/inmemory/reactiveVars.d.ts", + "/node_modules/@apollo/client/cache/inmemory/inMemoryCache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/object-canon.d.ts", + "/node_modules/@apollo/client/cache/inmemory/readFromStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/writeToStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/policies.d.ts", + "/node_modules/@apollo/client/cache/core/types/common.d.ts", + "/node_modules/@apollo/client/cache/core/types/DataProxy.d.ts", + "/node_modules/@apollo/client/cache/core/cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/helpers.d.ts", + "/node_modules/@apollo/client/cache/index.d.ts", + "/node_modules/@apollo/client/utilities/policies/pagination.d.ts", + "/node_modules/@apollo/client/utilities/observables/Observable.d.ts", + "/node_modules/@apollo/client/utilities/common/objects.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/cloneDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/maybeDeepFreeze.d.ts", + "/node_modules/@apollo/client/utilities/observables/iteration.d.ts", + "/node_modules/@apollo/client/utilities/observables/asyncMap.d.ts", + "/node_modules/@apollo/client/utilities/observables/Concast.d.ts", + "/node_modules/@apollo/client/utilities/observables/subclassing.d.ts", + "/node_modules/@apollo/client/utilities/common/arrays.d.ts", + "/node_modules/@apollo/client/utilities/common/errorHandling.d.ts", + "/node_modules/@apollo/client/utilities/common/canUse.d.ts", + "/node_modules/@apollo/client/utilities/common/compact.d.ts", + "/node_modules/@apollo/client/utilities/common/makeUniqueId.d.ts", + "/node_modules/@apollo/client/utilities/common/stringifyForDisplay.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeOptions.d.ts", + "/node_modules/@apollo/client/utilities/types/IsStrictlyAny.d.ts", + "/node_modules/@apollo/client/utilities/index.d.ts", + "/node_modules/@apollo/client/link/core/types.d.ts", + "/node_modules/@apollo/client/link/core/ApolloLink.d.ts", + "/node_modules/@apollo/client/link/core/empty.d.ts", + "/node_modules/@apollo/client/link/core/from.d.ts", + "/node_modules/@apollo/client/link/core/split.d.ts", + "/node_modules/@apollo/client/link/core/concat.d.ts", + "/node_modules/@apollo/client/link/core/execute.d.ts", + "/node_modules/@apollo/client/link/core/index.d.ts", + "/node_modules/@apollo/client/link/schema/index.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + }, + "./link/subscriptions": { + "subpath": "./link/subscriptions", + "resolutions": { + "node10": { + "name": "./link/subscriptions", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/@apollo/client/link/subscriptions/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/link/subscriptions' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module '@apollo/client/link/subscriptions' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/@apollo/client/link/subscriptions/package.json'.", + "File '/node_modules/@apollo/client/link/subscriptions.ts' does not exist.", + "File '/node_modules/@apollo/client/link/subscriptions.tsx' does not exist.", + "File '/node_modules/@apollo/client/link/subscriptions.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/link/subscriptions/index.d.ts'.", + "File '/node_modules/@apollo/client/link/subscriptions/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/link/subscriptions' was successfully resolved to '/node_modules/@apollo/client/link/subscriptions/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/link/subscriptions/subscriptions.cjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/link/subscriptions' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module '@apollo/client/link/subscriptions' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/link/subscriptions/package.json'.", + "File '/node_modules/@apollo/client/link/subscriptions.ts' does not exist.", + "File '/node_modules/@apollo/client/link/subscriptions.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'subscriptions.cjs' that references '/node_modules/@apollo/client/link/subscriptions/subscriptions.cjs'.", + "File '/node_modules/@apollo/client/link/subscriptions/subscriptions.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/link/subscriptions/subscriptions.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/subscriptions/subscriptions.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/link/subscriptions/subscriptions.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/link/subscriptions/subscriptions.cts' does not exist.", + "File '/node_modules/@apollo/client/link/subscriptions/subscriptions.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/link/subscriptions/subscriptions.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/link/subscriptions/subscriptions.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/link/subscriptions/index.ts' does not exist.", + "File '/node_modules/@apollo/client/link/subscriptions/index.tsx' does not exist.", + "Loading module '@apollo/client/link/subscriptions' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/link/subscriptions/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/subscriptions.js' does not exist.", + "File '/node_modules/@apollo/client/link/subscriptions.jsx' does not exist.", + "'package.json' has 'main' field 'subscriptions.cjs' that references '/node_modules/@apollo/client/link/subscriptions/subscriptions.cjs'.", + "File '/node_modules/@apollo/client/link/subscriptions/subscriptions.cjs' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/link/subscriptions' was successfully resolved to '/node_modules/@apollo/client/link/subscriptions/subscriptions.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/utilities/globals/DEV.d.ts", + "/node_modules/@apollo/client/utilities/globals/maybe.d.ts", + "/node_modules/@apollo/client/utilities/globals/global.d.ts", + "/node_modules/@apollo/client/utilities/globals/index.d.ts", + "/node_modules/@apollo/client/utilities/graphql/directives.d.ts", + "/node_modules/@apollo/client/utilities/graphql/fragments.d.ts", + "/node_modules/@apollo/client/utilities/graphql/getFromAST.d.ts", + "/node_modules/@apollo/client/utilities/graphql/storeUtils.d.ts", + "/node_modules/@apollo/client/utilities/graphql/transform.d.ts", + "/node_modules/@apollo/client/cache/core/types/Cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/entityStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fragmentRegistry.d.ts", + "/node_modules/@apollo/client/cache/inmemory/types.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fixPolyfills.d.ts", + "/node_modules/@apollo/client/link/http/parseAndCheckHttpResponse.d.ts", + "/node_modules/@apollo/client/link/http/serializeFetchParameter.d.ts", + "/node_modules/@apollo/client/link/http/selectHttpOptionsAndBody.d.ts", + "/node_modules/@apollo/client/link/http/checkFetcher.d.ts", + "/node_modules/@apollo/client/link/http/createSignalIfSupported.d.ts", + "/node_modules/@apollo/client/link/http/selectURI.d.ts", + "/node_modules/@apollo/client/link/http/createHttpLink.d.ts", + "/node_modules/@apollo/client/link/http/HttpLink.d.ts", + "/node_modules/@apollo/client/link/http/rewriteURIForGET.d.ts", + "/node_modules/@apollo/client/link/http/index.d.ts", + "/node_modules/@apollo/client/core/networkStatus.d.ts", + "/node_modules/@apollo/client/link/utils/fromError.d.ts", + "/node_modules/@apollo/client/link/utils/toPromise.d.ts", + "/node_modules/@apollo/client/link/utils/fromPromise.d.ts", + "/node_modules/@apollo/client/link/utils/throwServerError.d.ts", + "/node_modules/@apollo/client/link/utils/validateOperation.d.ts", + "/node_modules/@apollo/client/link/utils/createOperation.d.ts", + "/node_modules/@apollo/client/link/utils/transformOperation.d.ts", + "/node_modules/@apollo/client/link/utils/index.d.ts", + "/node_modules/@apollo/client/errors/index.d.ts", + "/node_modules/@apollo/client/core/QueryInfo.d.ts", + "/node_modules/@apollo/client/core/LocalState.d.ts", + "/node_modules/@apollo/client/core/types.d.ts", + "/node_modules/@apollo/client/core/watchQueryOptions.d.ts", + "/node_modules/@apollo/client/core/QueryManager.d.ts", + "/node_modules/@apollo/client/core/ObservableQuery.d.ts", + "/node_modules/@apollo/client/core/ApolloClient.d.ts", + "/node_modules/@apollo/client/core/index.d.ts", + "/node_modules/@apollo/client/cache/inmemory/reactiveVars.d.ts", + "/node_modules/@apollo/client/cache/inmemory/inMemoryCache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/object-canon.d.ts", + "/node_modules/@apollo/client/cache/inmemory/readFromStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/writeToStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/policies.d.ts", + "/node_modules/@apollo/client/cache/core/types/common.d.ts", + "/node_modules/@apollo/client/cache/core/types/DataProxy.d.ts", + "/node_modules/@apollo/client/cache/core/cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/helpers.d.ts", + "/node_modules/@apollo/client/cache/index.d.ts", + "/node_modules/@apollo/client/utilities/policies/pagination.d.ts", + "/node_modules/@apollo/client/utilities/observables/Observable.d.ts", + "/node_modules/@apollo/client/utilities/common/objects.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/cloneDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/maybeDeepFreeze.d.ts", + "/node_modules/@apollo/client/utilities/observables/iteration.d.ts", + "/node_modules/@apollo/client/utilities/observables/asyncMap.d.ts", + "/node_modules/@apollo/client/utilities/observables/Concast.d.ts", + "/node_modules/@apollo/client/utilities/observables/subclassing.d.ts", + "/node_modules/@apollo/client/utilities/common/arrays.d.ts", + "/node_modules/@apollo/client/utilities/common/errorHandling.d.ts", + "/node_modules/@apollo/client/utilities/common/canUse.d.ts", + "/node_modules/@apollo/client/utilities/common/compact.d.ts", + "/node_modules/@apollo/client/utilities/common/makeUniqueId.d.ts", + "/node_modules/@apollo/client/utilities/common/stringifyForDisplay.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeOptions.d.ts", + "/node_modules/@apollo/client/utilities/types/IsStrictlyAny.d.ts", + "/node_modules/@apollo/client/utilities/index.d.ts", + "/node_modules/@apollo/client/link/core/types.d.ts", + "/node_modules/@apollo/client/link/core/ApolloLink.d.ts", + "/node_modules/@apollo/client/link/core/empty.d.ts", + "/node_modules/@apollo/client/link/core/from.d.ts", + "/node_modules/@apollo/client/link/core/split.d.ts", + "/node_modules/@apollo/client/link/core/concat.d.ts", + "/node_modules/@apollo/client/link/core/execute.d.ts", + "/node_modules/@apollo/client/link/core/index.d.ts", + "/node_modules/@apollo/client/link/subscriptions/index.d.ts" + ] + }, + "node16-cjs": { + "name": "./link/subscriptions", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/@apollo/client/link/subscriptions/index.d.ts", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/@apollo/client/link/subscriptions/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/link/subscriptions' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/subscriptions' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/@apollo/client/link/subscriptions/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/subscriptions.ts' does not exist.", + "File '/node_modules/@apollo/client/link/subscriptions.tsx' does not exist.", + "File '/node_modules/@apollo/client/link/subscriptions.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/link/subscriptions/index.d.ts'.", + "File '/node_modules/@apollo/client/link/subscriptions/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/link/subscriptions' was successfully resolved to '/node_modules/@apollo/client/link/subscriptions/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/link/subscriptions/subscriptions.cjs", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "extension", + "reasonFileName": "/node_modules/@apollo/client/link/subscriptions/subscriptions.cjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/link/subscriptions' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/subscriptions' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/link/subscriptions/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/subscriptions.ts' does not exist.", + "File '/node_modules/@apollo/client/link/subscriptions.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'subscriptions.cjs' that references '/node_modules/@apollo/client/link/subscriptions/subscriptions.cjs'.", + "File '/node_modules/@apollo/client/link/subscriptions/subscriptions.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/link/subscriptions/subscriptions.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/subscriptions/subscriptions.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/link/subscriptions/subscriptions.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/link/subscriptions/subscriptions.cts' does not exist.", + "File '/node_modules/@apollo/client/link/subscriptions/subscriptions.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/link/subscriptions/subscriptions.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/link/subscriptions/subscriptions.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/link/subscriptions/index.ts' does not exist.", + "File '/node_modules/@apollo/client/link/subscriptions/index.tsx' does not exist.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/link/subscriptions/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/subscriptions.js' does not exist.", + "File '/node_modules/@apollo/client/link/subscriptions.jsx' does not exist.", + "'package.json' has 'main' field 'subscriptions.cjs' that references '/node_modules/@apollo/client/link/subscriptions/subscriptions.cjs'.", + "File '/node_modules/@apollo/client/link/subscriptions/subscriptions.cjs' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/link/subscriptions' was successfully resolved to '/node_modules/@apollo/client/link/subscriptions/subscriptions.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/link/subscriptions/index.d.ts" + ] + }, + "node16-esm": { + "name": "./link/subscriptions", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/@apollo/client/link/subscriptions/index.d.ts", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/@apollo/client/link/subscriptions/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/link/subscriptions' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/subscriptions' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/@apollo/client/link/subscriptions/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/link/subscriptions/index.d.ts'.", + "File '/node_modules/@apollo/client/link/subscriptions/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/link/subscriptions' was successfully resolved to '/node_modules/@apollo/client/link/subscriptions/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/link/subscriptions/subscriptions.cjs", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "extension", + "reasonFileName": "/node_modules/@apollo/client/link/subscriptions/subscriptions.cjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/link/subscriptions' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/subscriptions' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/link/subscriptions/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'subscriptions.cjs' that references '/node_modules/@apollo/client/link/subscriptions/subscriptions.cjs'.", + "File '/node_modules/@apollo/client/link/subscriptions/subscriptions.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/link/subscriptions/subscriptions.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/subscriptions/subscriptions.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/link/subscriptions/subscriptions.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/link/subscriptions/subscriptions.cts' does not exist.", + "Directory '/node_modules/@apollo/client/link/subscriptions/subscriptions.cjs' does not exist, skipping all lookups in it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/link/subscriptions/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'subscriptions.cjs' that references '/node_modules/@apollo/client/link/subscriptions/subscriptions.cjs'.", + "File '/node_modules/@apollo/client/link/subscriptions/subscriptions.cjs' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/subscriptions' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/link/subscriptions/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'subscriptions.cjs' that references '/node_modules/@apollo/client/link/subscriptions/subscriptions.cjs'.", + "File '/node_modules/@apollo/client/link/subscriptions/subscriptions.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/link/subscriptions/subscriptions.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/subscriptions/subscriptions.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/link/subscriptions/subscriptions.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/link/subscriptions/subscriptions.cts' does not exist.", + "Directory '/node_modules/@apollo/client/link/subscriptions/subscriptions.cjs' does not exist, skipping all lookups in it.", + "======== Module name '@apollo/client/link/subscriptions' was successfully resolved to '/node_modules/@apollo/client/link/subscriptions/subscriptions.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/link/subscriptions/index.d.ts" + ] + }, + "bundler": { + "name": "./link/subscriptions", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/@apollo/client/link/subscriptions/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/link/subscriptions' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/subscriptions' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/@apollo/client/link/subscriptions/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/subscriptions.ts' does not exist.", + "File '/node_modules/@apollo/client/link/subscriptions.tsx' does not exist.", + "File '/node_modules/@apollo/client/link/subscriptions.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/link/subscriptions/index.d.ts'.", + "File '/node_modules/@apollo/client/link/subscriptions/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/link/subscriptions' was successfully resolved to '/node_modules/@apollo/client/link/subscriptions/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/link/subscriptions/subscriptions.cjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/link/subscriptions' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/subscriptions' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/link/subscriptions/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/subscriptions.ts' does not exist.", + "File '/node_modules/@apollo/client/link/subscriptions.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'subscriptions.cjs' that references '/node_modules/@apollo/client/link/subscriptions/subscriptions.cjs'.", + "File '/node_modules/@apollo/client/link/subscriptions/subscriptions.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/link/subscriptions/subscriptions.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/subscriptions/subscriptions.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/link/subscriptions/subscriptions.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/link/subscriptions/subscriptions.cts' does not exist.", + "File '/node_modules/@apollo/client/link/subscriptions/subscriptions.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/link/subscriptions/subscriptions.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/link/subscriptions/subscriptions.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/link/subscriptions/index.ts' does not exist.", + "File '/node_modules/@apollo/client/link/subscriptions/index.tsx' does not exist.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/link/subscriptions/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/subscriptions.js' does not exist.", + "File '/node_modules/@apollo/client/link/subscriptions.jsx' does not exist.", + "'package.json' has 'main' field 'subscriptions.cjs' that references '/node_modules/@apollo/client/link/subscriptions/subscriptions.cjs'.", + "File '/node_modules/@apollo/client/link/subscriptions/subscriptions.cjs' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/subscriptions' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/link/subscriptions/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/subscriptions.ts' does not exist.", + "File '/node_modules/@apollo/client/link/subscriptions.tsx' does not exist.", + "'package.json' has 'main' field 'subscriptions.cjs' that references '/node_modules/@apollo/client/link/subscriptions/subscriptions.cjs'.", + "File '/node_modules/@apollo/client/link/subscriptions/subscriptions.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/link/subscriptions/subscriptions.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/subscriptions/subscriptions.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/link/subscriptions/subscriptions.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/link/subscriptions/subscriptions.cts' does not exist.", + "File '/node_modules/@apollo/client/link/subscriptions/subscriptions.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/link/subscriptions/subscriptions.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/link/subscriptions/subscriptions.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/link/subscriptions/index.ts' does not exist.", + "File '/node_modules/@apollo/client/link/subscriptions/index.tsx' does not exist.", + "======== Module name '@apollo/client/link/subscriptions' was successfully resolved to '/node_modules/@apollo/client/link/subscriptions/subscriptions.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/utilities/globals/DEV.d.ts", + "/node_modules/@apollo/client/utilities/globals/maybe.d.ts", + "/node_modules/@apollo/client/utilities/globals/global.d.ts", + "/node_modules/@apollo/client/utilities/globals/index.d.ts", + "/node_modules/@apollo/client/utilities/graphql/directives.d.ts", + "/node_modules/@apollo/client/utilities/graphql/fragments.d.ts", + "/node_modules/@apollo/client/utilities/graphql/getFromAST.d.ts", + "/node_modules/@apollo/client/utilities/graphql/storeUtils.d.ts", + "/node_modules/@apollo/client/utilities/graphql/transform.d.ts", + "/node_modules/@apollo/client/cache/core/types/Cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/entityStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fragmentRegistry.d.ts", + "/node_modules/@apollo/client/cache/inmemory/types.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fixPolyfills.d.ts", + "/node_modules/@apollo/client/link/http/parseAndCheckHttpResponse.d.ts", + "/node_modules/@apollo/client/link/http/serializeFetchParameter.d.ts", + "/node_modules/@apollo/client/link/http/selectHttpOptionsAndBody.d.ts", + "/node_modules/@apollo/client/link/http/checkFetcher.d.ts", + "/node_modules/@apollo/client/link/http/createSignalIfSupported.d.ts", + "/node_modules/@apollo/client/link/http/selectURI.d.ts", + "/node_modules/@apollo/client/link/http/createHttpLink.d.ts", + "/node_modules/@apollo/client/link/http/HttpLink.d.ts", + "/node_modules/@apollo/client/link/http/rewriteURIForGET.d.ts", + "/node_modules/@apollo/client/link/http/index.d.ts", + "/node_modules/@apollo/client/core/networkStatus.d.ts", + "/node_modules/@apollo/client/link/utils/fromError.d.ts", + "/node_modules/@apollo/client/link/utils/toPromise.d.ts", + "/node_modules/@apollo/client/link/utils/fromPromise.d.ts", + "/node_modules/@apollo/client/link/utils/throwServerError.d.ts", + "/node_modules/@apollo/client/link/utils/validateOperation.d.ts", + "/node_modules/@apollo/client/link/utils/createOperation.d.ts", + "/node_modules/@apollo/client/link/utils/transformOperation.d.ts", + "/node_modules/@apollo/client/link/utils/index.d.ts", + "/node_modules/@apollo/client/errors/index.d.ts", + "/node_modules/@apollo/client/core/QueryInfo.d.ts", + "/node_modules/@apollo/client/core/LocalState.d.ts", + "/node_modules/@apollo/client/core/types.d.ts", + "/node_modules/@apollo/client/core/watchQueryOptions.d.ts", + "/node_modules/@apollo/client/core/QueryManager.d.ts", + "/node_modules/@apollo/client/core/ObservableQuery.d.ts", + "/node_modules/@apollo/client/core/ApolloClient.d.ts", + "/node_modules/@apollo/client/core/index.d.ts", + "/node_modules/@apollo/client/cache/inmemory/reactiveVars.d.ts", + "/node_modules/@apollo/client/cache/inmemory/inMemoryCache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/object-canon.d.ts", + "/node_modules/@apollo/client/cache/inmemory/readFromStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/writeToStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/policies.d.ts", + "/node_modules/@apollo/client/cache/core/types/common.d.ts", + "/node_modules/@apollo/client/cache/core/types/DataProxy.d.ts", + "/node_modules/@apollo/client/cache/core/cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/helpers.d.ts", + "/node_modules/@apollo/client/cache/index.d.ts", + "/node_modules/@apollo/client/utilities/policies/pagination.d.ts", + "/node_modules/@apollo/client/utilities/observables/Observable.d.ts", + "/node_modules/@apollo/client/utilities/common/objects.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/cloneDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/maybeDeepFreeze.d.ts", + "/node_modules/@apollo/client/utilities/observables/iteration.d.ts", + "/node_modules/@apollo/client/utilities/observables/asyncMap.d.ts", + "/node_modules/@apollo/client/utilities/observables/Concast.d.ts", + "/node_modules/@apollo/client/utilities/observables/subclassing.d.ts", + "/node_modules/@apollo/client/utilities/common/arrays.d.ts", + "/node_modules/@apollo/client/utilities/common/errorHandling.d.ts", + "/node_modules/@apollo/client/utilities/common/canUse.d.ts", + "/node_modules/@apollo/client/utilities/common/compact.d.ts", + "/node_modules/@apollo/client/utilities/common/makeUniqueId.d.ts", + "/node_modules/@apollo/client/utilities/common/stringifyForDisplay.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeOptions.d.ts", + "/node_modules/@apollo/client/utilities/types/IsStrictlyAny.d.ts", + "/node_modules/@apollo/client/utilities/index.d.ts", + "/node_modules/@apollo/client/link/core/types.d.ts", + "/node_modules/@apollo/client/link/core/ApolloLink.d.ts", + "/node_modules/@apollo/client/link/core/empty.d.ts", + "/node_modules/@apollo/client/link/core/from.d.ts", + "/node_modules/@apollo/client/link/core/split.d.ts", + "/node_modules/@apollo/client/link/core/concat.d.ts", + "/node_modules/@apollo/client/link/core/execute.d.ts", + "/node_modules/@apollo/client/link/core/index.d.ts", + "/node_modules/@apollo/client/link/subscriptions/index.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + }, + "./link/utils": { + "subpath": "./link/utils", + "resolutions": { + "node10": { + "name": "./link/utils", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/@apollo/client/link/utils/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/link/utils' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module '@apollo/client/link/utils' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/@apollo/client/link/utils/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/utils.ts' does not exist.", + "File '/node_modules/@apollo/client/link/utils.tsx' does not exist.", + "File '/node_modules/@apollo/client/link/utils.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/link/utils/index.d.ts'.", + "File '/node_modules/@apollo/client/link/utils/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/link/utils' was successfully resolved to '/node_modules/@apollo/client/link/utils/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/link/utils/utils.cjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/link/utils' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module '@apollo/client/link/utils' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/link/utils/package.json'.", + "File '/node_modules/@apollo/client/link/utils.ts' does not exist.", + "File '/node_modules/@apollo/client/link/utils.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'utils.cjs' that references '/node_modules/@apollo/client/link/utils/utils.cjs'.", + "File '/node_modules/@apollo/client/link/utils/utils.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/link/utils/utils.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/utils/utils.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/link/utils/utils.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/link/utils/utils.cts' does not exist.", + "File '/node_modules/@apollo/client/link/utils/utils.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/link/utils/utils.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/link/utils/utils.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/link/utils/index.ts' does not exist.", + "File '/node_modules/@apollo/client/link/utils/index.tsx' does not exist.", + "Loading module '@apollo/client/link/utils' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/link/utils/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/utils.js' does not exist.", + "File '/node_modules/@apollo/client/link/utils.jsx' does not exist.", + "'package.json' has 'main' field 'utils.cjs' that references '/node_modules/@apollo/client/link/utils/utils.cjs'.", + "File '/node_modules/@apollo/client/link/utils/utils.cjs' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/link/utils' was successfully resolved to '/node_modules/@apollo/client/link/utils/utils.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/utilities/globals/DEV.d.ts", + "/node_modules/@apollo/client/utilities/globals/maybe.d.ts", + "/node_modules/@apollo/client/utilities/globals/global.d.ts", + "/node_modules/@apollo/client/utilities/globals/index.d.ts", + "/node_modules/@apollo/client/utilities/graphql/directives.d.ts", + "/node_modules/@apollo/client/utilities/graphql/fragments.d.ts", + "/node_modules/@apollo/client/utilities/graphql/getFromAST.d.ts", + "/node_modules/@apollo/client/utilities/graphql/storeUtils.d.ts", + "/node_modules/@apollo/client/utilities/graphql/transform.d.ts", + "/node_modules/@apollo/client/cache/core/types/Cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/entityStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fragmentRegistry.d.ts", + "/node_modules/@apollo/client/cache/inmemory/types.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fixPolyfills.d.ts", + "/node_modules/@apollo/client/link/core/types.d.ts", + "/node_modules/@apollo/client/link/core/ApolloLink.d.ts", + "/node_modules/@apollo/client/link/core/empty.d.ts", + "/node_modules/@apollo/client/link/core/from.d.ts", + "/node_modules/@apollo/client/link/core/split.d.ts", + "/node_modules/@apollo/client/link/core/concat.d.ts", + "/node_modules/@apollo/client/link/core/execute.d.ts", + "/node_modules/@apollo/client/link/core/index.d.ts", + "/node_modules/@apollo/client/link/http/parseAndCheckHttpResponse.d.ts", + "/node_modules/@apollo/client/link/http/serializeFetchParameter.d.ts", + "/node_modules/@apollo/client/link/http/selectHttpOptionsAndBody.d.ts", + "/node_modules/@apollo/client/link/http/checkFetcher.d.ts", + "/node_modules/@apollo/client/link/http/createSignalIfSupported.d.ts", + "/node_modules/@apollo/client/link/http/selectURI.d.ts", + "/node_modules/@apollo/client/link/http/createHttpLink.d.ts", + "/node_modules/@apollo/client/link/http/HttpLink.d.ts", + "/node_modules/@apollo/client/link/http/rewriteURIForGET.d.ts", + "/node_modules/@apollo/client/link/http/index.d.ts", + "/node_modules/@apollo/client/core/networkStatus.d.ts", + "/node_modules/@apollo/client/errors/index.d.ts", + "/node_modules/@apollo/client/core/QueryInfo.d.ts", + "/node_modules/@apollo/client/core/LocalState.d.ts", + "/node_modules/@apollo/client/core/types.d.ts", + "/node_modules/@apollo/client/core/watchQueryOptions.d.ts", + "/node_modules/@apollo/client/core/QueryManager.d.ts", + "/node_modules/@apollo/client/core/ObservableQuery.d.ts", + "/node_modules/@apollo/client/core/ApolloClient.d.ts", + "/node_modules/@apollo/client/core/index.d.ts", + "/node_modules/@apollo/client/cache/inmemory/reactiveVars.d.ts", + "/node_modules/@apollo/client/cache/inmemory/inMemoryCache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/object-canon.d.ts", + "/node_modules/@apollo/client/cache/inmemory/readFromStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/writeToStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/policies.d.ts", + "/node_modules/@apollo/client/cache/core/types/common.d.ts", + "/node_modules/@apollo/client/cache/core/types/DataProxy.d.ts", + "/node_modules/@apollo/client/cache/core/cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/helpers.d.ts", + "/node_modules/@apollo/client/cache/index.d.ts", + "/node_modules/@apollo/client/utilities/policies/pagination.d.ts", + "/node_modules/@apollo/client/utilities/observables/Observable.d.ts", + "/node_modules/@apollo/client/utilities/common/objects.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/cloneDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/maybeDeepFreeze.d.ts", + "/node_modules/@apollo/client/utilities/observables/iteration.d.ts", + "/node_modules/@apollo/client/utilities/observables/asyncMap.d.ts", + "/node_modules/@apollo/client/utilities/observables/Concast.d.ts", + "/node_modules/@apollo/client/utilities/observables/subclassing.d.ts", + "/node_modules/@apollo/client/utilities/common/arrays.d.ts", + "/node_modules/@apollo/client/utilities/common/errorHandling.d.ts", + "/node_modules/@apollo/client/utilities/common/canUse.d.ts", + "/node_modules/@apollo/client/utilities/common/compact.d.ts", + "/node_modules/@apollo/client/utilities/common/makeUniqueId.d.ts", + "/node_modules/@apollo/client/utilities/common/stringifyForDisplay.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeOptions.d.ts", + "/node_modules/@apollo/client/utilities/types/IsStrictlyAny.d.ts", + "/node_modules/@apollo/client/utilities/index.d.ts", + "/node_modules/@apollo/client/link/utils/fromError.d.ts", + "/node_modules/@apollo/client/link/utils/toPromise.d.ts", + "/node_modules/@apollo/client/link/utils/fromPromise.d.ts", + "/node_modules/@apollo/client/link/utils/throwServerError.d.ts", + "/node_modules/@apollo/client/link/utils/validateOperation.d.ts", + "/node_modules/@apollo/client/link/utils/createOperation.d.ts", + "/node_modules/@apollo/client/link/utils/transformOperation.d.ts", + "/node_modules/@apollo/client/link/utils/index.d.ts" + ] + }, + "node16-cjs": { + "name": "./link/utils", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/@apollo/client/link/utils/index.d.ts", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/@apollo/client/link/utils/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/link/utils' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/utils' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/@apollo/client/link/utils/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/utils.ts' does not exist.", + "File '/node_modules/@apollo/client/link/utils.tsx' does not exist.", + "File '/node_modules/@apollo/client/link/utils.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/link/utils/index.d.ts'.", + "File '/node_modules/@apollo/client/link/utils/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/link/utils' was successfully resolved to '/node_modules/@apollo/client/link/utils/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/link/utils/utils.cjs", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "extension", + "reasonFileName": "/node_modules/@apollo/client/link/utils/utils.cjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/link/utils' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/utils' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/link/utils/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/utils.ts' does not exist.", + "File '/node_modules/@apollo/client/link/utils.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'utils.cjs' that references '/node_modules/@apollo/client/link/utils/utils.cjs'.", + "File '/node_modules/@apollo/client/link/utils/utils.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/link/utils/utils.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/utils/utils.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/link/utils/utils.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/link/utils/utils.cts' does not exist.", + "File '/node_modules/@apollo/client/link/utils/utils.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/link/utils/utils.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/link/utils/utils.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/link/utils/index.ts' does not exist.", + "File '/node_modules/@apollo/client/link/utils/index.tsx' does not exist.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/link/utils/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/utils.js' does not exist.", + "File '/node_modules/@apollo/client/link/utils.jsx' does not exist.", + "'package.json' has 'main' field 'utils.cjs' that references '/node_modules/@apollo/client/link/utils/utils.cjs'.", + "File '/node_modules/@apollo/client/link/utils/utils.cjs' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/link/utils' was successfully resolved to '/node_modules/@apollo/client/link/utils/utils.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/link/utils/index.d.ts" + ] + }, + "node16-esm": { + "name": "./link/utils", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/@apollo/client/link/utils/index.d.ts", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/@apollo/client/link/utils/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/link/utils' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/utils' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/@apollo/client/link/utils/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/link/utils/index.d.ts'.", + "File '/node_modules/@apollo/client/link/utils/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/link/utils' was successfully resolved to '/node_modules/@apollo/client/link/utils/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/link/utils/utils.cjs", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "extension", + "reasonFileName": "/node_modules/@apollo/client/link/utils/utils.cjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/link/utils' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/utils' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/link/utils/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'utils.cjs' that references '/node_modules/@apollo/client/link/utils/utils.cjs'.", + "File '/node_modules/@apollo/client/link/utils/utils.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/link/utils/utils.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/utils/utils.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/link/utils/utils.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/link/utils/utils.cts' does not exist.", + "Directory '/node_modules/@apollo/client/link/utils/utils.cjs' does not exist, skipping all lookups in it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/link/utils/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'utils.cjs' that references '/node_modules/@apollo/client/link/utils/utils.cjs'.", + "File '/node_modules/@apollo/client/link/utils/utils.cjs' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/utils' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/link/utils/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'utils.cjs' that references '/node_modules/@apollo/client/link/utils/utils.cjs'.", + "File '/node_modules/@apollo/client/link/utils/utils.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/link/utils/utils.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/utils/utils.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/link/utils/utils.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/link/utils/utils.cts' does not exist.", + "Directory '/node_modules/@apollo/client/link/utils/utils.cjs' does not exist, skipping all lookups in it.", + "======== Module name '@apollo/client/link/utils' was successfully resolved to '/node_modules/@apollo/client/link/utils/utils.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/link/utils/index.d.ts" + ] + }, + "bundler": { + "name": "./link/utils", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/@apollo/client/link/utils/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/link/utils' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/utils' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/@apollo/client/link/utils/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/utils.ts' does not exist.", + "File '/node_modules/@apollo/client/link/utils.tsx' does not exist.", + "File '/node_modules/@apollo/client/link/utils.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/link/utils/index.d.ts'.", + "File '/node_modules/@apollo/client/link/utils/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/link/utils' was successfully resolved to '/node_modules/@apollo/client/link/utils/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/link/utils/utils.cjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/link/utils' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/utils' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/link/utils/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/utils.ts' does not exist.", + "File '/node_modules/@apollo/client/link/utils.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'utils.cjs' that references '/node_modules/@apollo/client/link/utils/utils.cjs'.", + "File '/node_modules/@apollo/client/link/utils/utils.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/link/utils/utils.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/utils/utils.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/link/utils/utils.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/link/utils/utils.cts' does not exist.", + "File '/node_modules/@apollo/client/link/utils/utils.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/link/utils/utils.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/link/utils/utils.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/link/utils/index.ts' does not exist.", + "File '/node_modules/@apollo/client/link/utils/index.tsx' does not exist.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/link/utils/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/utils.js' does not exist.", + "File '/node_modules/@apollo/client/link/utils.jsx' does not exist.", + "'package.json' has 'main' field 'utils.cjs' that references '/node_modules/@apollo/client/link/utils/utils.cjs'.", + "File '/node_modules/@apollo/client/link/utils/utils.cjs' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/utils' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/link/utils/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/utils.ts' does not exist.", + "File '/node_modules/@apollo/client/link/utils.tsx' does not exist.", + "'package.json' has 'main' field 'utils.cjs' that references '/node_modules/@apollo/client/link/utils/utils.cjs'.", + "File '/node_modules/@apollo/client/link/utils/utils.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/link/utils/utils.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/utils/utils.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/link/utils/utils.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/link/utils/utils.cts' does not exist.", + "File '/node_modules/@apollo/client/link/utils/utils.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/link/utils/utils.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/link/utils/utils.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/link/utils/index.ts' does not exist.", + "File '/node_modules/@apollo/client/link/utils/index.tsx' does not exist.", + "======== Module name '@apollo/client/link/utils' was successfully resolved to '/node_modules/@apollo/client/link/utils/utils.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/utilities/globals/DEV.d.ts", + "/node_modules/@apollo/client/utilities/globals/maybe.d.ts", + "/node_modules/@apollo/client/utilities/globals/global.d.ts", + "/node_modules/@apollo/client/utilities/globals/index.d.ts", + "/node_modules/@apollo/client/utilities/graphql/directives.d.ts", + "/node_modules/@apollo/client/utilities/graphql/fragments.d.ts", + "/node_modules/@apollo/client/utilities/graphql/getFromAST.d.ts", + "/node_modules/@apollo/client/utilities/graphql/storeUtils.d.ts", + "/node_modules/@apollo/client/utilities/graphql/transform.d.ts", + "/node_modules/@apollo/client/cache/core/types/Cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/entityStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fragmentRegistry.d.ts", + "/node_modules/@apollo/client/cache/inmemory/types.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fixPolyfills.d.ts", + "/node_modules/@apollo/client/link/core/types.d.ts", + "/node_modules/@apollo/client/link/core/ApolloLink.d.ts", + "/node_modules/@apollo/client/link/core/empty.d.ts", + "/node_modules/@apollo/client/link/core/from.d.ts", + "/node_modules/@apollo/client/link/core/split.d.ts", + "/node_modules/@apollo/client/link/core/concat.d.ts", + "/node_modules/@apollo/client/link/core/execute.d.ts", + "/node_modules/@apollo/client/link/core/index.d.ts", + "/node_modules/@apollo/client/link/http/parseAndCheckHttpResponse.d.ts", + "/node_modules/@apollo/client/link/http/serializeFetchParameter.d.ts", + "/node_modules/@apollo/client/link/http/selectHttpOptionsAndBody.d.ts", + "/node_modules/@apollo/client/link/http/checkFetcher.d.ts", + "/node_modules/@apollo/client/link/http/createSignalIfSupported.d.ts", + "/node_modules/@apollo/client/link/http/selectURI.d.ts", + "/node_modules/@apollo/client/link/http/createHttpLink.d.ts", + "/node_modules/@apollo/client/link/http/HttpLink.d.ts", + "/node_modules/@apollo/client/link/http/rewriteURIForGET.d.ts", + "/node_modules/@apollo/client/link/http/index.d.ts", + "/node_modules/@apollo/client/core/networkStatus.d.ts", + "/node_modules/@apollo/client/errors/index.d.ts", + "/node_modules/@apollo/client/core/QueryInfo.d.ts", + "/node_modules/@apollo/client/core/LocalState.d.ts", + "/node_modules/@apollo/client/core/types.d.ts", + "/node_modules/@apollo/client/core/watchQueryOptions.d.ts", + "/node_modules/@apollo/client/core/QueryManager.d.ts", + "/node_modules/@apollo/client/core/ObservableQuery.d.ts", + "/node_modules/@apollo/client/core/ApolloClient.d.ts", + "/node_modules/@apollo/client/core/index.d.ts", + "/node_modules/@apollo/client/cache/inmemory/reactiveVars.d.ts", + "/node_modules/@apollo/client/cache/inmemory/inMemoryCache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/object-canon.d.ts", + "/node_modules/@apollo/client/cache/inmemory/readFromStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/writeToStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/policies.d.ts", + "/node_modules/@apollo/client/cache/core/types/common.d.ts", + "/node_modules/@apollo/client/cache/core/types/DataProxy.d.ts", + "/node_modules/@apollo/client/cache/core/cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/helpers.d.ts", + "/node_modules/@apollo/client/cache/index.d.ts", + "/node_modules/@apollo/client/utilities/policies/pagination.d.ts", + "/node_modules/@apollo/client/utilities/observables/Observable.d.ts", + "/node_modules/@apollo/client/utilities/common/objects.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/cloneDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/maybeDeepFreeze.d.ts", + "/node_modules/@apollo/client/utilities/observables/iteration.d.ts", + "/node_modules/@apollo/client/utilities/observables/asyncMap.d.ts", + "/node_modules/@apollo/client/utilities/observables/Concast.d.ts", + "/node_modules/@apollo/client/utilities/observables/subclassing.d.ts", + "/node_modules/@apollo/client/utilities/common/arrays.d.ts", + "/node_modules/@apollo/client/utilities/common/errorHandling.d.ts", + "/node_modules/@apollo/client/utilities/common/canUse.d.ts", + "/node_modules/@apollo/client/utilities/common/compact.d.ts", + "/node_modules/@apollo/client/utilities/common/makeUniqueId.d.ts", + "/node_modules/@apollo/client/utilities/common/stringifyForDisplay.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeOptions.d.ts", + "/node_modules/@apollo/client/utilities/types/IsStrictlyAny.d.ts", + "/node_modules/@apollo/client/utilities/index.d.ts", + "/node_modules/@apollo/client/link/utils/fromError.d.ts", + "/node_modules/@apollo/client/link/utils/toPromise.d.ts", + "/node_modules/@apollo/client/link/utils/fromPromise.d.ts", + "/node_modules/@apollo/client/link/utils/throwServerError.d.ts", + "/node_modules/@apollo/client/link/utils/validateOperation.d.ts", + "/node_modules/@apollo/client/link/utils/createOperation.d.ts", + "/node_modules/@apollo/client/link/utils/transformOperation.d.ts", + "/node_modules/@apollo/client/link/utils/index.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + }, + "./link/ws": { + "subpath": "./link/ws", + "resolutions": { + "node10": { + "name": "./link/ws", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/@apollo/client/link/ws/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/link/ws' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module '@apollo/client/link/ws' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/@apollo/client/link/ws/package.json'.", + "File '/node_modules/@apollo/client/link/ws.ts' does not exist.", + "File '/node_modules/@apollo/client/link/ws.tsx' does not exist.", + "File '/node_modules/@apollo/client/link/ws.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/link/ws/index.d.ts'.", + "File '/node_modules/@apollo/client/link/ws/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/link/ws' was successfully resolved to '/node_modules/@apollo/client/link/ws/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/link/ws/ws.cjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/link/ws' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module '@apollo/client/link/ws' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/link/ws/package.json'.", + "File '/node_modules/@apollo/client/link/ws.ts' does not exist.", + "File '/node_modules/@apollo/client/link/ws.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'ws.cjs' that references '/node_modules/@apollo/client/link/ws/ws.cjs'.", + "File '/node_modules/@apollo/client/link/ws/ws.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/link/ws/ws.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/ws/ws.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/link/ws/ws.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/link/ws/ws.cts' does not exist.", + "File '/node_modules/@apollo/client/link/ws/ws.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/link/ws/ws.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/link/ws/ws.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/link/ws/index.ts' does not exist.", + "File '/node_modules/@apollo/client/link/ws/index.tsx' does not exist.", + "Loading module '@apollo/client/link/ws' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/link/ws/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/ws.js' does not exist.", + "File '/node_modules/@apollo/client/link/ws.jsx' does not exist.", + "'package.json' has 'main' field 'ws.cjs' that references '/node_modules/@apollo/client/link/ws/ws.cjs'.", + "File '/node_modules/@apollo/client/link/ws/ws.cjs' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/link/ws' was successfully resolved to '/node_modules/@apollo/client/link/ws/ws.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/utilities/globals/DEV.d.ts", + "/node_modules/@apollo/client/utilities/globals/maybe.d.ts", + "/node_modules/@apollo/client/utilities/globals/global.d.ts", + "/node_modules/@apollo/client/utilities/globals/index.d.ts", + "/node_modules/@apollo/client/utilities/graphql/directives.d.ts", + "/node_modules/@apollo/client/utilities/graphql/fragments.d.ts", + "/node_modules/@apollo/client/utilities/graphql/getFromAST.d.ts", + "/node_modules/@apollo/client/utilities/graphql/storeUtils.d.ts", + "/node_modules/@apollo/client/utilities/graphql/transform.d.ts", + "/node_modules/@apollo/client/cache/core/types/Cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/entityStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fragmentRegistry.d.ts", + "/node_modules/@apollo/client/cache/inmemory/types.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fixPolyfills.d.ts", + "/node_modules/@apollo/client/link/http/parseAndCheckHttpResponse.d.ts", + "/node_modules/@apollo/client/link/http/serializeFetchParameter.d.ts", + "/node_modules/@apollo/client/link/http/selectHttpOptionsAndBody.d.ts", + "/node_modules/@apollo/client/link/http/checkFetcher.d.ts", + "/node_modules/@apollo/client/link/http/createSignalIfSupported.d.ts", + "/node_modules/@apollo/client/link/http/selectURI.d.ts", + "/node_modules/@apollo/client/link/http/createHttpLink.d.ts", + "/node_modules/@apollo/client/link/http/HttpLink.d.ts", + "/node_modules/@apollo/client/link/http/rewriteURIForGET.d.ts", + "/node_modules/@apollo/client/link/http/index.d.ts", + "/node_modules/@apollo/client/core/networkStatus.d.ts", + "/node_modules/@apollo/client/link/utils/fromError.d.ts", + "/node_modules/@apollo/client/link/utils/toPromise.d.ts", + "/node_modules/@apollo/client/link/utils/fromPromise.d.ts", + "/node_modules/@apollo/client/link/utils/throwServerError.d.ts", + "/node_modules/@apollo/client/link/utils/validateOperation.d.ts", + "/node_modules/@apollo/client/link/utils/createOperation.d.ts", + "/node_modules/@apollo/client/link/utils/transformOperation.d.ts", + "/node_modules/@apollo/client/link/utils/index.d.ts", + "/node_modules/@apollo/client/errors/index.d.ts", + "/node_modules/@apollo/client/core/QueryInfo.d.ts", + "/node_modules/@apollo/client/core/LocalState.d.ts", + "/node_modules/@apollo/client/core/types.d.ts", + "/node_modules/@apollo/client/core/watchQueryOptions.d.ts", + "/node_modules/@apollo/client/core/QueryManager.d.ts", + "/node_modules/@apollo/client/core/ObservableQuery.d.ts", + "/node_modules/@apollo/client/core/ApolloClient.d.ts", + "/node_modules/@apollo/client/core/index.d.ts", + "/node_modules/@apollo/client/cache/inmemory/reactiveVars.d.ts", + "/node_modules/@apollo/client/cache/inmemory/inMemoryCache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/object-canon.d.ts", + "/node_modules/@apollo/client/cache/inmemory/readFromStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/writeToStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/policies.d.ts", + "/node_modules/@apollo/client/cache/core/types/common.d.ts", + "/node_modules/@apollo/client/cache/core/types/DataProxy.d.ts", + "/node_modules/@apollo/client/cache/core/cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/helpers.d.ts", + "/node_modules/@apollo/client/cache/index.d.ts", + "/node_modules/@apollo/client/utilities/policies/pagination.d.ts", + "/node_modules/@apollo/client/utilities/observables/Observable.d.ts", + "/node_modules/@apollo/client/utilities/common/objects.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/cloneDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/maybeDeepFreeze.d.ts", + "/node_modules/@apollo/client/utilities/observables/iteration.d.ts", + "/node_modules/@apollo/client/utilities/observables/asyncMap.d.ts", + "/node_modules/@apollo/client/utilities/observables/Concast.d.ts", + "/node_modules/@apollo/client/utilities/observables/subclassing.d.ts", + "/node_modules/@apollo/client/utilities/common/arrays.d.ts", + "/node_modules/@apollo/client/utilities/common/errorHandling.d.ts", + "/node_modules/@apollo/client/utilities/common/canUse.d.ts", + "/node_modules/@apollo/client/utilities/common/compact.d.ts", + "/node_modules/@apollo/client/utilities/common/makeUniqueId.d.ts", + "/node_modules/@apollo/client/utilities/common/stringifyForDisplay.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeOptions.d.ts", + "/node_modules/@apollo/client/utilities/types/IsStrictlyAny.d.ts", + "/node_modules/@apollo/client/utilities/index.d.ts", + "/node_modules/@apollo/client/link/core/types.d.ts", + "/node_modules/@apollo/client/link/core/ApolloLink.d.ts", + "/node_modules/@apollo/client/link/core/empty.d.ts", + "/node_modules/@apollo/client/link/core/from.d.ts", + "/node_modules/@apollo/client/link/core/split.d.ts", + "/node_modules/@apollo/client/link/core/concat.d.ts", + "/node_modules/@apollo/client/link/core/execute.d.ts", + "/node_modules/@apollo/client/link/core/index.d.ts", + "/node_modules/@apollo/client/link/ws/index.d.ts" + ] + }, + "node16-cjs": { + "name": "./link/ws", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/@apollo/client/link/ws/index.d.ts", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/@apollo/client/link/ws/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/link/ws' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/ws' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/@apollo/client/link/ws/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/ws.ts' does not exist.", + "File '/node_modules/@apollo/client/link/ws.tsx' does not exist.", + "File '/node_modules/@apollo/client/link/ws.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/link/ws/index.d.ts'.", + "File '/node_modules/@apollo/client/link/ws/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/link/ws' was successfully resolved to '/node_modules/@apollo/client/link/ws/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/link/ws/ws.cjs", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "extension", + "reasonFileName": "/node_modules/@apollo/client/link/ws/ws.cjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/link/ws' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/ws' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/link/ws/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/ws.ts' does not exist.", + "File '/node_modules/@apollo/client/link/ws.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'ws.cjs' that references '/node_modules/@apollo/client/link/ws/ws.cjs'.", + "File '/node_modules/@apollo/client/link/ws/ws.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/link/ws/ws.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/ws/ws.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/link/ws/ws.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/link/ws/ws.cts' does not exist.", + "File '/node_modules/@apollo/client/link/ws/ws.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/link/ws/ws.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/link/ws/ws.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/link/ws/index.ts' does not exist.", + "File '/node_modules/@apollo/client/link/ws/index.tsx' does not exist.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/link/ws/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/ws.js' does not exist.", + "File '/node_modules/@apollo/client/link/ws.jsx' does not exist.", + "'package.json' has 'main' field 'ws.cjs' that references '/node_modules/@apollo/client/link/ws/ws.cjs'.", + "File '/node_modules/@apollo/client/link/ws/ws.cjs' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/link/ws' was successfully resolved to '/node_modules/@apollo/client/link/ws/ws.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/link/ws/index.d.ts" + ] + }, + "node16-esm": { + "name": "./link/ws", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/@apollo/client/link/ws/index.d.ts", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/@apollo/client/link/ws/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/link/ws' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/ws' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/@apollo/client/link/ws/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/link/ws/index.d.ts'.", + "File '/node_modules/@apollo/client/link/ws/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/link/ws' was successfully resolved to '/node_modules/@apollo/client/link/ws/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/link/ws/ws.cjs", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "extension", + "reasonFileName": "/node_modules/@apollo/client/link/ws/ws.cjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/link/ws' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/ws' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/link/ws/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'ws.cjs' that references '/node_modules/@apollo/client/link/ws/ws.cjs'.", + "File '/node_modules/@apollo/client/link/ws/ws.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/link/ws/ws.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/ws/ws.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/link/ws/ws.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/link/ws/ws.cts' does not exist.", + "Directory '/node_modules/@apollo/client/link/ws/ws.cjs' does not exist, skipping all lookups in it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/link/ws/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'ws.cjs' that references '/node_modules/@apollo/client/link/ws/ws.cjs'.", + "File '/node_modules/@apollo/client/link/ws/ws.cjs' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/ws' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/link/ws/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'ws.cjs' that references '/node_modules/@apollo/client/link/ws/ws.cjs'.", + "File '/node_modules/@apollo/client/link/ws/ws.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/link/ws/ws.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/ws/ws.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/link/ws/ws.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/link/ws/ws.cts' does not exist.", + "Directory '/node_modules/@apollo/client/link/ws/ws.cjs' does not exist, skipping all lookups in it.", + "======== Module name '@apollo/client/link/ws' was successfully resolved to '/node_modules/@apollo/client/link/ws/ws.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/link/ws/index.d.ts" + ] + }, + "bundler": { + "name": "./link/ws", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/@apollo/client/link/ws/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/link/ws' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/ws' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/@apollo/client/link/ws/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/ws.ts' does not exist.", + "File '/node_modules/@apollo/client/link/ws.tsx' does not exist.", + "File '/node_modules/@apollo/client/link/ws.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/link/ws/index.d.ts'.", + "File '/node_modules/@apollo/client/link/ws/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/link/ws' was successfully resolved to '/node_modules/@apollo/client/link/ws/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/link/ws/ws.cjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/link/ws' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/ws' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/link/ws/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/ws.ts' does not exist.", + "File '/node_modules/@apollo/client/link/ws.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'ws.cjs' that references '/node_modules/@apollo/client/link/ws/ws.cjs'.", + "File '/node_modules/@apollo/client/link/ws/ws.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/link/ws/ws.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/ws/ws.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/link/ws/ws.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/link/ws/ws.cts' does not exist.", + "File '/node_modules/@apollo/client/link/ws/ws.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/link/ws/ws.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/link/ws/ws.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/link/ws/index.ts' does not exist.", + "File '/node_modules/@apollo/client/link/ws/index.tsx' does not exist.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/link/ws/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/ws.js' does not exist.", + "File '/node_modules/@apollo/client/link/ws.jsx' does not exist.", + "'package.json' has 'main' field 'ws.cjs' that references '/node_modules/@apollo/client/link/ws/ws.cjs'.", + "File '/node_modules/@apollo/client/link/ws/ws.cjs' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/link/ws' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/link/ws/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/link/ws.ts' does not exist.", + "File '/node_modules/@apollo/client/link/ws.tsx' does not exist.", + "'package.json' has 'main' field 'ws.cjs' that references '/node_modules/@apollo/client/link/ws/ws.cjs'.", + "File '/node_modules/@apollo/client/link/ws/ws.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/link/ws/ws.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/ws/ws.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/link/ws/ws.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/link/ws/ws.cts' does not exist.", + "File '/node_modules/@apollo/client/link/ws/ws.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/link/ws/ws.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/link/ws/ws.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/link/ws/index.ts' does not exist.", + "File '/node_modules/@apollo/client/link/ws/index.tsx' does not exist.", + "======== Module name '@apollo/client/link/ws' was successfully resolved to '/node_modules/@apollo/client/link/ws/ws.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/utilities/globals/DEV.d.ts", + "/node_modules/@apollo/client/utilities/globals/maybe.d.ts", + "/node_modules/@apollo/client/utilities/globals/global.d.ts", + "/node_modules/@apollo/client/utilities/globals/index.d.ts", + "/node_modules/@apollo/client/utilities/graphql/directives.d.ts", + "/node_modules/@apollo/client/utilities/graphql/fragments.d.ts", + "/node_modules/@apollo/client/utilities/graphql/getFromAST.d.ts", + "/node_modules/@apollo/client/utilities/graphql/storeUtils.d.ts", + "/node_modules/@apollo/client/utilities/graphql/transform.d.ts", + "/node_modules/@apollo/client/cache/core/types/Cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/entityStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fragmentRegistry.d.ts", + "/node_modules/@apollo/client/cache/inmemory/types.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fixPolyfills.d.ts", + "/node_modules/@apollo/client/link/http/parseAndCheckHttpResponse.d.ts", + "/node_modules/@apollo/client/link/http/serializeFetchParameter.d.ts", + "/node_modules/@apollo/client/link/http/selectHttpOptionsAndBody.d.ts", + "/node_modules/@apollo/client/link/http/checkFetcher.d.ts", + "/node_modules/@apollo/client/link/http/createSignalIfSupported.d.ts", + "/node_modules/@apollo/client/link/http/selectURI.d.ts", + "/node_modules/@apollo/client/link/http/createHttpLink.d.ts", + "/node_modules/@apollo/client/link/http/HttpLink.d.ts", + "/node_modules/@apollo/client/link/http/rewriteURIForGET.d.ts", + "/node_modules/@apollo/client/link/http/index.d.ts", + "/node_modules/@apollo/client/core/networkStatus.d.ts", + "/node_modules/@apollo/client/link/utils/fromError.d.ts", + "/node_modules/@apollo/client/link/utils/toPromise.d.ts", + "/node_modules/@apollo/client/link/utils/fromPromise.d.ts", + "/node_modules/@apollo/client/link/utils/throwServerError.d.ts", + "/node_modules/@apollo/client/link/utils/validateOperation.d.ts", + "/node_modules/@apollo/client/link/utils/createOperation.d.ts", + "/node_modules/@apollo/client/link/utils/transformOperation.d.ts", + "/node_modules/@apollo/client/link/utils/index.d.ts", + "/node_modules/@apollo/client/errors/index.d.ts", + "/node_modules/@apollo/client/core/QueryInfo.d.ts", + "/node_modules/@apollo/client/core/LocalState.d.ts", + "/node_modules/@apollo/client/core/types.d.ts", + "/node_modules/@apollo/client/core/watchQueryOptions.d.ts", + "/node_modules/@apollo/client/core/QueryManager.d.ts", + "/node_modules/@apollo/client/core/ObservableQuery.d.ts", + "/node_modules/@apollo/client/core/ApolloClient.d.ts", + "/node_modules/@apollo/client/core/index.d.ts", + "/node_modules/@apollo/client/cache/inmemory/reactiveVars.d.ts", + "/node_modules/@apollo/client/cache/inmemory/inMemoryCache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/object-canon.d.ts", + "/node_modules/@apollo/client/cache/inmemory/readFromStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/writeToStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/policies.d.ts", + "/node_modules/@apollo/client/cache/core/types/common.d.ts", + "/node_modules/@apollo/client/cache/core/types/DataProxy.d.ts", + "/node_modules/@apollo/client/cache/core/cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/helpers.d.ts", + "/node_modules/@apollo/client/cache/index.d.ts", + "/node_modules/@apollo/client/utilities/policies/pagination.d.ts", + "/node_modules/@apollo/client/utilities/observables/Observable.d.ts", + "/node_modules/@apollo/client/utilities/common/objects.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/cloneDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/maybeDeepFreeze.d.ts", + "/node_modules/@apollo/client/utilities/observables/iteration.d.ts", + "/node_modules/@apollo/client/utilities/observables/asyncMap.d.ts", + "/node_modules/@apollo/client/utilities/observables/Concast.d.ts", + "/node_modules/@apollo/client/utilities/observables/subclassing.d.ts", + "/node_modules/@apollo/client/utilities/common/arrays.d.ts", + "/node_modules/@apollo/client/utilities/common/errorHandling.d.ts", + "/node_modules/@apollo/client/utilities/common/canUse.d.ts", + "/node_modules/@apollo/client/utilities/common/compact.d.ts", + "/node_modules/@apollo/client/utilities/common/makeUniqueId.d.ts", + "/node_modules/@apollo/client/utilities/common/stringifyForDisplay.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeOptions.d.ts", + "/node_modules/@apollo/client/utilities/types/IsStrictlyAny.d.ts", + "/node_modules/@apollo/client/utilities/index.d.ts", + "/node_modules/@apollo/client/link/core/types.d.ts", + "/node_modules/@apollo/client/link/core/ApolloLink.d.ts", + "/node_modules/@apollo/client/link/core/empty.d.ts", + "/node_modules/@apollo/client/link/core/from.d.ts", + "/node_modules/@apollo/client/link/core/split.d.ts", + "/node_modules/@apollo/client/link/core/concat.d.ts", + "/node_modules/@apollo/client/link/core/execute.d.ts", + "/node_modules/@apollo/client/link/core/index.d.ts", + "/node_modules/@apollo/client/link/ws/index.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + }, + "./react": { + "subpath": "./react", + "resolutions": { + "node10": { + "name": "./react", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/@apollo/client/react/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/react' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module '@apollo/client/react' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/@apollo/client/react/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/react.ts' does not exist.", + "File '/node_modules/@apollo/client/react.tsx' does not exist.", + "File '/node_modules/@apollo/client/react.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/react/index.d.ts'.", + "File '/node_modules/@apollo/client/react/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/react' was successfully resolved to '/node_modules/@apollo/client/react/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/react/react.cjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/react' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module '@apollo/client/react' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/react/package.json'.", + "File '/node_modules/@apollo/client/react.ts' does not exist.", + "File '/node_modules/@apollo/client/react.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'react.cjs' that references '/node_modules/@apollo/client/react/react.cjs'.", + "File '/node_modules/@apollo/client/react/react.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/react/react.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/react.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/react/react.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/react/react.cts' does not exist.", + "File '/node_modules/@apollo/client/react/react.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/react/react.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/react/react.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/react/index.ts' does not exist.", + "File '/node_modules/@apollo/client/react/index.tsx' does not exist.", + "Loading module '@apollo/client/react' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/react/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/react.js' does not exist.", + "File '/node_modules/@apollo/client/react.jsx' does not exist.", + "'package.json' has 'main' field 'react.cjs' that references '/node_modules/@apollo/client/react/react.cjs'.", + "File '/node_modules/@apollo/client/react/react.cjs' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/react' was successfully resolved to '/node_modules/@apollo/client/react/react.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/utilities/globals/DEV.d.ts", + "/node_modules/@apollo/client/utilities/globals/maybe.d.ts", + "/node_modules/@apollo/client/utilities/globals/global.d.ts", + "/node_modules/@apollo/client/utilities/globals/index.d.ts", + "/node_modules/@apollo/client/utilities/graphql/directives.d.ts", + "/node_modules/@apollo/client/utilities/graphql/fragments.d.ts", + "/node_modules/@apollo/client/utilities/graphql/getFromAST.d.ts", + "/node_modules/@apollo/client/utilities/graphql/storeUtils.d.ts", + "/node_modules/@apollo/client/utilities/graphql/transform.d.ts", + "/node_modules/@apollo/client/cache/core/types/Cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/entityStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fragmentRegistry.d.ts", + "/node_modules/@apollo/client/cache/inmemory/types.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fixPolyfills.d.ts", + "/node_modules/@apollo/client/cache/inmemory/reactiveVars.d.ts", + "/node_modules/@apollo/client/cache/inmemory/inMemoryCache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/object-canon.d.ts", + "/node_modules/@apollo/client/cache/inmemory/readFromStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/writeToStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/policies.d.ts", + "/node_modules/@apollo/client/cache/core/types/common.d.ts", + "/node_modules/@apollo/client/cache/core/types/DataProxy.d.ts", + "/node_modules/@apollo/client/cache/core/cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/helpers.d.ts", + "/node_modules/@apollo/client/cache/index.d.ts", + "/node_modules/@apollo/client/utilities/policies/pagination.d.ts", + "/node_modules/@apollo/client/utilities/observables/Observable.d.ts", + "/node_modules/@apollo/client/utilities/common/objects.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/cloneDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/maybeDeepFreeze.d.ts", + "/node_modules/@apollo/client/utilities/observables/iteration.d.ts", + "/node_modules/@apollo/client/utilities/observables/asyncMap.d.ts", + "/node_modules/@apollo/client/utilities/observables/Concast.d.ts", + "/node_modules/@apollo/client/utilities/observables/subclassing.d.ts", + "/node_modules/@apollo/client/utilities/common/arrays.d.ts", + "/node_modules/@apollo/client/utilities/common/errorHandling.d.ts", + "/node_modules/@apollo/client/utilities/common/canUse.d.ts", + "/node_modules/@apollo/client/utilities/common/compact.d.ts", + "/node_modules/@apollo/client/utilities/common/makeUniqueId.d.ts", + "/node_modules/@apollo/client/utilities/common/stringifyForDisplay.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeOptions.d.ts", + "/node_modules/@apollo/client/utilities/types/IsStrictlyAny.d.ts", + "/node_modules/@apollo/client/utilities/index.d.ts", + "/node_modules/@apollo/client/link/core/types.d.ts", + "/node_modules/@apollo/client/link/core/ApolloLink.d.ts", + "/node_modules/@apollo/client/link/core/empty.d.ts", + "/node_modules/@apollo/client/link/core/from.d.ts", + "/node_modules/@apollo/client/link/core/split.d.ts", + "/node_modules/@apollo/client/link/core/concat.d.ts", + "/node_modules/@apollo/client/link/core/execute.d.ts", + "/node_modules/@apollo/client/link/core/index.d.ts", + "/node_modules/@apollo/client/link/http/parseAndCheckHttpResponse.d.ts", + "/node_modules/@apollo/client/link/http/serializeFetchParameter.d.ts", + "/node_modules/@apollo/client/link/http/selectHttpOptionsAndBody.d.ts", + "/node_modules/@apollo/client/link/http/checkFetcher.d.ts", + "/node_modules/@apollo/client/link/http/createSignalIfSupported.d.ts", + "/node_modules/@apollo/client/link/http/selectURI.d.ts", + "/node_modules/@apollo/client/link/http/createHttpLink.d.ts", + "/node_modules/@apollo/client/link/http/HttpLink.d.ts", + "/node_modules/@apollo/client/link/http/rewriteURIForGET.d.ts", + "/node_modules/@apollo/client/link/http/index.d.ts", + "/node_modules/@apollo/client/core/networkStatus.d.ts", + "/node_modules/@apollo/client/link/utils/fromError.d.ts", + "/node_modules/@apollo/client/link/utils/toPromise.d.ts", + "/node_modules/@apollo/client/link/utils/fromPromise.d.ts", + "/node_modules/@apollo/client/link/utils/throwServerError.d.ts", + "/node_modules/@apollo/client/link/utils/validateOperation.d.ts", + "/node_modules/@apollo/client/link/utils/createOperation.d.ts", + "/node_modules/@apollo/client/link/utils/transformOperation.d.ts", + "/node_modules/@apollo/client/link/utils/index.d.ts", + "/node_modules/@apollo/client/errors/index.d.ts", + "/node_modules/@apollo/client/core/QueryInfo.d.ts", + "/node_modules/@apollo/client/core/LocalState.d.ts", + "/node_modules/@apollo/client/core/types.d.ts", + "/node_modules/@apollo/client/core/watchQueryOptions.d.ts", + "/node_modules/@apollo/client/core/QueryManager.d.ts", + "/node_modules/@apollo/client/core/ObservableQuery.d.ts", + "/node_modules/@apollo/client/core/ApolloClient.d.ts", + "/node_modules/@apollo/client/core/index.d.ts", + "/node_modules/@apollo/client/react/context/ApolloConsumer.d.ts", + "/node_modules/@apollo/client/react/ssr/getDataFromTree.d.ts", + "/node_modules/@apollo/client/react/ssr/renderToStringWithData.d.ts", + "/node_modules/@apollo/client/react/types/types.d.ts", + "/node_modules/@apollo/client/react/ssr/RenderPromises.d.ts", + "/node_modules/@apollo/client/react/ssr/index.d.ts", + "/node_modules/@apollo/client/react/context/ApolloContext.d.ts", + "/node_modules/@apollo/client/react/context/ApolloProvider.d.ts", + "/node_modules/@apollo/client/react/context/index.d.ts", + "/node_modules/@apollo/client/react/hooks/useApolloClient.d.ts", + "/node_modules/@apollo/client/react/hooks/useLazyQuery.d.ts", + "/node_modules/@apollo/client/react/hooks/useMutation.d.ts", + "/node_modules/@apollo/client/react/hooks/useQuery.d.ts", + "/node_modules/@apollo/client/react/hooks/useSubscription.d.ts", + "/node_modules/@apollo/client/react/hooks/useReactiveVar.d.ts", + "/node_modules/@apollo/client/react/hooks/useFragment.d.ts", + "/node_modules/@apollo/client/react/hooks/index.d.ts", + "/node_modules/@apollo/client/react/parser/index.d.ts", + "/node_modules/@apollo/client/react/index.d.ts" + ] + }, + "node16-cjs": { + "name": "./react", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/@apollo/client/react/index.d.ts", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/@apollo/client/react/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/react' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/react' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/@apollo/client/react/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/react.ts' does not exist.", + "File '/node_modules/@apollo/client/react.tsx' does not exist.", + "File '/node_modules/@apollo/client/react.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/react/index.d.ts'.", + "File '/node_modules/@apollo/client/react/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/react' was successfully resolved to '/node_modules/@apollo/client/react/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/react/react.cjs", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "extension", + "reasonFileName": "/node_modules/@apollo/client/react/react.cjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/react' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/react' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/react/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/react.ts' does not exist.", + "File '/node_modules/@apollo/client/react.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'react.cjs' that references '/node_modules/@apollo/client/react/react.cjs'.", + "File '/node_modules/@apollo/client/react/react.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/react/react.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/react.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/react/react.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/react/react.cts' does not exist.", + "File '/node_modules/@apollo/client/react/react.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/react/react.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/react/react.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/react/index.ts' does not exist.", + "File '/node_modules/@apollo/client/react/index.tsx' does not exist.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/react/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/react.js' does not exist.", + "File '/node_modules/@apollo/client/react.jsx' does not exist.", + "'package.json' has 'main' field 'react.cjs' that references '/node_modules/@apollo/client/react/react.cjs'.", + "File '/node_modules/@apollo/client/react/react.cjs' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/react' was successfully resolved to '/node_modules/@apollo/client/react/react.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/react/index.d.ts" + ] + }, + "node16-esm": { + "name": "./react", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/@apollo/client/react/index.d.ts", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/@apollo/client/react/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/react' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/react' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/@apollo/client/react/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/react/index.d.ts'.", + "File '/node_modules/@apollo/client/react/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/react' was successfully resolved to '/node_modules/@apollo/client/react/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/react/react.cjs", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "extension", + "reasonFileName": "/node_modules/@apollo/client/react/react.cjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/react' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/react' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/react/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'react.cjs' that references '/node_modules/@apollo/client/react/react.cjs'.", + "File '/node_modules/@apollo/client/react/react.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/react/react.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/react.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/react/react.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/react/react.cts' does not exist.", + "Directory '/node_modules/@apollo/client/react/react.cjs' does not exist, skipping all lookups in it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/react/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'react.cjs' that references '/node_modules/@apollo/client/react/react.cjs'.", + "File '/node_modules/@apollo/client/react/react.cjs' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/react' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/react/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'react.cjs' that references '/node_modules/@apollo/client/react/react.cjs'.", + "File '/node_modules/@apollo/client/react/react.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/react/react.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/react.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/react/react.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/react/react.cts' does not exist.", + "Directory '/node_modules/@apollo/client/react/react.cjs' does not exist, skipping all lookups in it.", + "======== Module name '@apollo/client/react' was successfully resolved to '/node_modules/@apollo/client/react/react.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/react/index.d.ts" + ] + }, + "bundler": { + "name": "./react", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/@apollo/client/react/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/react' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/react' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/@apollo/client/react/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/react.ts' does not exist.", + "File '/node_modules/@apollo/client/react.tsx' does not exist.", + "File '/node_modules/@apollo/client/react.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/react/index.d.ts'.", + "File '/node_modules/@apollo/client/react/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/react' was successfully resolved to '/node_modules/@apollo/client/react/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/react/react.cjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/react' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/react' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/react/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/react.ts' does not exist.", + "File '/node_modules/@apollo/client/react.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'react.cjs' that references '/node_modules/@apollo/client/react/react.cjs'.", + "File '/node_modules/@apollo/client/react/react.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/react/react.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/react.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/react/react.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/react/react.cts' does not exist.", + "File '/node_modules/@apollo/client/react/react.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/react/react.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/react/react.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/react/index.ts' does not exist.", + "File '/node_modules/@apollo/client/react/index.tsx' does not exist.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/react/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/react.js' does not exist.", + "File '/node_modules/@apollo/client/react.jsx' does not exist.", + "'package.json' has 'main' field 'react.cjs' that references '/node_modules/@apollo/client/react/react.cjs'.", + "File '/node_modules/@apollo/client/react/react.cjs' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/react' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/react/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/react.ts' does not exist.", + "File '/node_modules/@apollo/client/react.tsx' does not exist.", + "'package.json' has 'main' field 'react.cjs' that references '/node_modules/@apollo/client/react/react.cjs'.", + "File '/node_modules/@apollo/client/react/react.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/react/react.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/react.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/react/react.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/react/react.cts' does not exist.", + "File '/node_modules/@apollo/client/react/react.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/react/react.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/react/react.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/react/index.ts' does not exist.", + "File '/node_modules/@apollo/client/react/index.tsx' does not exist.", + "======== Module name '@apollo/client/react' was successfully resolved to '/node_modules/@apollo/client/react/react.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/utilities/globals/DEV.d.ts", + "/node_modules/@apollo/client/utilities/globals/maybe.d.ts", + "/node_modules/@apollo/client/utilities/globals/global.d.ts", + "/node_modules/@apollo/client/utilities/globals/index.d.ts", + "/node_modules/@apollo/client/utilities/graphql/directives.d.ts", + "/node_modules/@apollo/client/utilities/graphql/fragments.d.ts", + "/node_modules/@apollo/client/utilities/graphql/getFromAST.d.ts", + "/node_modules/@apollo/client/utilities/graphql/storeUtils.d.ts", + "/node_modules/@apollo/client/utilities/graphql/transform.d.ts", + "/node_modules/@apollo/client/cache/core/types/Cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/entityStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fragmentRegistry.d.ts", + "/node_modules/@apollo/client/cache/inmemory/types.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fixPolyfills.d.ts", + "/node_modules/@apollo/client/cache/inmemory/reactiveVars.d.ts", + "/node_modules/@apollo/client/cache/inmemory/inMemoryCache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/object-canon.d.ts", + "/node_modules/@apollo/client/cache/inmemory/readFromStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/writeToStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/policies.d.ts", + "/node_modules/@apollo/client/cache/core/types/common.d.ts", + "/node_modules/@apollo/client/cache/core/types/DataProxy.d.ts", + "/node_modules/@apollo/client/cache/core/cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/helpers.d.ts", + "/node_modules/@apollo/client/cache/index.d.ts", + "/node_modules/@apollo/client/utilities/policies/pagination.d.ts", + "/node_modules/@apollo/client/utilities/observables/Observable.d.ts", + "/node_modules/@apollo/client/utilities/common/objects.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/cloneDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/maybeDeepFreeze.d.ts", + "/node_modules/@apollo/client/utilities/observables/iteration.d.ts", + "/node_modules/@apollo/client/utilities/observables/asyncMap.d.ts", + "/node_modules/@apollo/client/utilities/observables/Concast.d.ts", + "/node_modules/@apollo/client/utilities/observables/subclassing.d.ts", + "/node_modules/@apollo/client/utilities/common/arrays.d.ts", + "/node_modules/@apollo/client/utilities/common/errorHandling.d.ts", + "/node_modules/@apollo/client/utilities/common/canUse.d.ts", + "/node_modules/@apollo/client/utilities/common/compact.d.ts", + "/node_modules/@apollo/client/utilities/common/makeUniqueId.d.ts", + "/node_modules/@apollo/client/utilities/common/stringifyForDisplay.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeOptions.d.ts", + "/node_modules/@apollo/client/utilities/types/IsStrictlyAny.d.ts", + "/node_modules/@apollo/client/utilities/index.d.ts", + "/node_modules/@apollo/client/link/core/types.d.ts", + "/node_modules/@apollo/client/link/core/ApolloLink.d.ts", + "/node_modules/@apollo/client/link/core/empty.d.ts", + "/node_modules/@apollo/client/link/core/from.d.ts", + "/node_modules/@apollo/client/link/core/split.d.ts", + "/node_modules/@apollo/client/link/core/concat.d.ts", + "/node_modules/@apollo/client/link/core/execute.d.ts", + "/node_modules/@apollo/client/link/core/index.d.ts", + "/node_modules/@apollo/client/link/http/parseAndCheckHttpResponse.d.ts", + "/node_modules/@apollo/client/link/http/serializeFetchParameter.d.ts", + "/node_modules/@apollo/client/link/http/selectHttpOptionsAndBody.d.ts", + "/node_modules/@apollo/client/link/http/checkFetcher.d.ts", + "/node_modules/@apollo/client/link/http/createSignalIfSupported.d.ts", + "/node_modules/@apollo/client/link/http/selectURI.d.ts", + "/node_modules/@apollo/client/link/http/createHttpLink.d.ts", + "/node_modules/@apollo/client/link/http/HttpLink.d.ts", + "/node_modules/@apollo/client/link/http/rewriteURIForGET.d.ts", + "/node_modules/@apollo/client/link/http/index.d.ts", + "/node_modules/@apollo/client/core/networkStatus.d.ts", + "/node_modules/@apollo/client/link/utils/fromError.d.ts", + "/node_modules/@apollo/client/link/utils/toPromise.d.ts", + "/node_modules/@apollo/client/link/utils/fromPromise.d.ts", + "/node_modules/@apollo/client/link/utils/throwServerError.d.ts", + "/node_modules/@apollo/client/link/utils/validateOperation.d.ts", + "/node_modules/@apollo/client/link/utils/createOperation.d.ts", + "/node_modules/@apollo/client/link/utils/transformOperation.d.ts", + "/node_modules/@apollo/client/link/utils/index.d.ts", + "/node_modules/@apollo/client/errors/index.d.ts", + "/node_modules/@apollo/client/core/QueryInfo.d.ts", + "/node_modules/@apollo/client/core/LocalState.d.ts", + "/node_modules/@apollo/client/core/types.d.ts", + "/node_modules/@apollo/client/core/watchQueryOptions.d.ts", + "/node_modules/@apollo/client/core/QueryManager.d.ts", + "/node_modules/@apollo/client/core/ObservableQuery.d.ts", + "/node_modules/@apollo/client/core/ApolloClient.d.ts", + "/node_modules/@apollo/client/core/index.d.ts", + "/node_modules/@apollo/client/react/context/ApolloConsumer.d.ts", + "/node_modules/@apollo/client/react/ssr/getDataFromTree.d.ts", + "/node_modules/@apollo/client/react/ssr/renderToStringWithData.d.ts", + "/node_modules/@apollo/client/react/types/types.d.ts", + "/node_modules/@apollo/client/react/ssr/RenderPromises.d.ts", + "/node_modules/@apollo/client/react/ssr/index.d.ts", + "/node_modules/@apollo/client/react/context/ApolloContext.d.ts", + "/node_modules/@apollo/client/react/context/ApolloProvider.d.ts", + "/node_modules/@apollo/client/react/context/index.d.ts", + "/node_modules/@apollo/client/react/hooks/useApolloClient.d.ts", + "/node_modules/@apollo/client/react/hooks/useLazyQuery.d.ts", + "/node_modules/@apollo/client/react/hooks/useMutation.d.ts", + "/node_modules/@apollo/client/react/hooks/useQuery.d.ts", + "/node_modules/@apollo/client/react/hooks/useSubscription.d.ts", + "/node_modules/@apollo/client/react/hooks/useReactiveVar.d.ts", + "/node_modules/@apollo/client/react/hooks/useFragment.d.ts", + "/node_modules/@apollo/client/react/hooks/index.d.ts", + "/node_modules/@apollo/client/react/parser/index.d.ts", + "/node_modules/@apollo/client/react/index.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + }, + "./react/components": { + "subpath": "./react/components", + "resolutions": { + "node10": { + "name": "./react/components", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/@apollo/client/react/components/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/react/components' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module '@apollo/client/react/components' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/@apollo/client/react/components/package.json'.", + "File '/node_modules/@apollo/client/react/components.ts' does not exist.", + "File '/node_modules/@apollo/client/react/components.tsx' does not exist.", + "File '/node_modules/@apollo/client/react/components.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/react/components/index.d.ts'.", + "File '/node_modules/@apollo/client/react/components/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/react/components' was successfully resolved to '/node_modules/@apollo/client/react/components/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/react/components/components.cjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/react/components' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module '@apollo/client/react/components' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/react/components/package.json'.", + "File '/node_modules/@apollo/client/react/components.ts' does not exist.", + "File '/node_modules/@apollo/client/react/components.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'components.cjs' that references '/node_modules/@apollo/client/react/components/components.cjs'.", + "File '/node_modules/@apollo/client/react/components/components.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/react/components/components.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/components/components.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/react/components/components.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/react/components/components.cts' does not exist.", + "File '/node_modules/@apollo/client/react/components/components.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/react/components/components.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/react/components/components.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/react/components/index.ts' does not exist.", + "File '/node_modules/@apollo/client/react/components/index.tsx' does not exist.", + "Loading module '@apollo/client/react/components' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/react/components/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/react/components.js' does not exist.", + "File '/node_modules/@apollo/client/react/components.jsx' does not exist.", + "'package.json' has 'main' field 'components.cjs' that references '/node_modules/@apollo/client/react/components/components.cjs'.", + "File '/node_modules/@apollo/client/react/components/components.cjs' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/react/components' was successfully resolved to '/node_modules/@apollo/client/react/components/components.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/utilities/globals/DEV.d.ts", + "/node_modules/@apollo/client/utilities/globals/maybe.d.ts", + "/node_modules/@apollo/client/utilities/globals/global.d.ts", + "/node_modules/@apollo/client/utilities/globals/index.d.ts", + "/node_modules/@apollo/client/utilities/graphql/directives.d.ts", + "/node_modules/@apollo/client/utilities/graphql/fragments.d.ts", + "/node_modules/@apollo/client/utilities/graphql/getFromAST.d.ts", + "/node_modules/@apollo/client/utilities/graphql/storeUtils.d.ts", + "/node_modules/@apollo/client/utilities/graphql/transform.d.ts", + "/node_modules/@apollo/client/cache/core/types/Cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/entityStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fragmentRegistry.d.ts", + "/node_modules/@apollo/client/cache/inmemory/types.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fixPolyfills.d.ts", + "/node_modules/@apollo/client/cache/inmemory/reactiveVars.d.ts", + "/node_modules/@apollo/client/cache/inmemory/inMemoryCache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/object-canon.d.ts", + "/node_modules/@apollo/client/cache/inmemory/readFromStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/writeToStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/policies.d.ts", + "/node_modules/@apollo/client/cache/core/types/common.d.ts", + "/node_modules/@apollo/client/cache/core/types/DataProxy.d.ts", + "/node_modules/@apollo/client/cache/core/cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/helpers.d.ts", + "/node_modules/@apollo/client/cache/index.d.ts", + "/node_modules/@apollo/client/utilities/policies/pagination.d.ts", + "/node_modules/@apollo/client/utilities/observables/Observable.d.ts", + "/node_modules/@apollo/client/utilities/common/objects.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/cloneDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/maybeDeepFreeze.d.ts", + "/node_modules/@apollo/client/utilities/observables/iteration.d.ts", + "/node_modules/@apollo/client/utilities/observables/asyncMap.d.ts", + "/node_modules/@apollo/client/utilities/observables/Concast.d.ts", + "/node_modules/@apollo/client/utilities/observables/subclassing.d.ts", + "/node_modules/@apollo/client/utilities/common/arrays.d.ts", + "/node_modules/@apollo/client/utilities/common/errorHandling.d.ts", + "/node_modules/@apollo/client/utilities/common/canUse.d.ts", + "/node_modules/@apollo/client/utilities/common/compact.d.ts", + "/node_modules/@apollo/client/utilities/common/makeUniqueId.d.ts", + "/node_modules/@apollo/client/utilities/common/stringifyForDisplay.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeOptions.d.ts", + "/node_modules/@apollo/client/utilities/types/IsStrictlyAny.d.ts", + "/node_modules/@apollo/client/utilities/index.d.ts", + "/node_modules/@apollo/client/link/core/types.d.ts", + "/node_modules/@apollo/client/link/core/ApolloLink.d.ts", + "/node_modules/@apollo/client/link/core/empty.d.ts", + "/node_modules/@apollo/client/link/core/from.d.ts", + "/node_modules/@apollo/client/link/core/split.d.ts", + "/node_modules/@apollo/client/link/core/concat.d.ts", + "/node_modules/@apollo/client/link/core/execute.d.ts", + "/node_modules/@apollo/client/link/core/index.d.ts", + "/node_modules/@apollo/client/link/http/parseAndCheckHttpResponse.d.ts", + "/node_modules/@apollo/client/link/http/serializeFetchParameter.d.ts", + "/node_modules/@apollo/client/link/http/selectHttpOptionsAndBody.d.ts", + "/node_modules/@apollo/client/link/http/checkFetcher.d.ts", + "/node_modules/@apollo/client/link/http/createSignalIfSupported.d.ts", + "/node_modules/@apollo/client/link/http/selectURI.d.ts", + "/node_modules/@apollo/client/link/http/createHttpLink.d.ts", + "/node_modules/@apollo/client/link/http/HttpLink.d.ts", + "/node_modules/@apollo/client/link/http/rewriteURIForGET.d.ts", + "/node_modules/@apollo/client/link/http/index.d.ts", + "/node_modules/@apollo/client/core/networkStatus.d.ts", + "/node_modules/@apollo/client/link/utils/fromError.d.ts", + "/node_modules/@apollo/client/link/utils/toPromise.d.ts", + "/node_modules/@apollo/client/link/utils/fromPromise.d.ts", + "/node_modules/@apollo/client/link/utils/throwServerError.d.ts", + "/node_modules/@apollo/client/link/utils/validateOperation.d.ts", + "/node_modules/@apollo/client/link/utils/createOperation.d.ts", + "/node_modules/@apollo/client/link/utils/transformOperation.d.ts", + "/node_modules/@apollo/client/link/utils/index.d.ts", + "/node_modules/@apollo/client/errors/index.d.ts", + "/node_modules/@apollo/client/core/QueryInfo.d.ts", + "/node_modules/@apollo/client/core/LocalState.d.ts", + "/node_modules/@apollo/client/core/types.d.ts", + "/node_modules/@apollo/client/core/watchQueryOptions.d.ts", + "/node_modules/@apollo/client/core/QueryManager.d.ts", + "/node_modules/@apollo/client/core/ObservableQuery.d.ts", + "/node_modules/@apollo/client/core/ApolloClient.d.ts", + "/node_modules/@apollo/client/core/index.d.ts", + "/node_modules/@apollo/client/react/types/types.d.ts", + "/node_modules/@apollo/client/react/components/types.d.ts", + "/node_modules/@apollo/client/react/components/Query.d.ts", + "/node_modules/@apollo/client/react/components/Mutation.d.ts", + "/node_modules/@apollo/client/react/components/Subscription.d.ts", + "/node_modules/@apollo/client/react/components/index.d.ts" + ] + }, + "node16-cjs": { + "name": "./react/components", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/@apollo/client/react/components/index.d.ts", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/@apollo/client/react/components/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/react/components' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/react/components' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/@apollo/client/react/components/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/react/components.ts' does not exist.", + "File '/node_modules/@apollo/client/react/components.tsx' does not exist.", + "File '/node_modules/@apollo/client/react/components.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/react/components/index.d.ts'.", + "File '/node_modules/@apollo/client/react/components/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/react/components' was successfully resolved to '/node_modules/@apollo/client/react/components/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/react/components/components.cjs", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "extension", + "reasonFileName": "/node_modules/@apollo/client/react/components/components.cjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/react/components' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/react/components' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/react/components/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/react/components.ts' does not exist.", + "File '/node_modules/@apollo/client/react/components.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'components.cjs' that references '/node_modules/@apollo/client/react/components/components.cjs'.", + "File '/node_modules/@apollo/client/react/components/components.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/react/components/components.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/components/components.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/react/components/components.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/react/components/components.cts' does not exist.", + "File '/node_modules/@apollo/client/react/components/components.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/react/components/components.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/react/components/components.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/react/components/index.ts' does not exist.", + "File '/node_modules/@apollo/client/react/components/index.tsx' does not exist.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/react/components/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/react/components.js' does not exist.", + "File '/node_modules/@apollo/client/react/components.jsx' does not exist.", + "'package.json' has 'main' field 'components.cjs' that references '/node_modules/@apollo/client/react/components/components.cjs'.", + "File '/node_modules/@apollo/client/react/components/components.cjs' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/react/components' was successfully resolved to '/node_modules/@apollo/client/react/components/components.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/react/components/index.d.ts" + ] + }, + "node16-esm": { + "name": "./react/components", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/@apollo/client/react/components/index.d.ts", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/@apollo/client/react/components/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/react/components' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/react/components' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/@apollo/client/react/components/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/react/components/index.d.ts'.", + "File '/node_modules/@apollo/client/react/components/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/react/components' was successfully resolved to '/node_modules/@apollo/client/react/components/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/react/components/components.cjs", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "extension", + "reasonFileName": "/node_modules/@apollo/client/react/components/components.cjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/react/components' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/react/components' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/react/components/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'components.cjs' that references '/node_modules/@apollo/client/react/components/components.cjs'.", + "File '/node_modules/@apollo/client/react/components/components.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/react/components/components.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/components/components.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/react/components/components.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/react/components/components.cts' does not exist.", + "Directory '/node_modules/@apollo/client/react/components/components.cjs' does not exist, skipping all lookups in it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/react/components/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'components.cjs' that references '/node_modules/@apollo/client/react/components/components.cjs'.", + "File '/node_modules/@apollo/client/react/components/components.cjs' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/react/components' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/react/components/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'components.cjs' that references '/node_modules/@apollo/client/react/components/components.cjs'.", + "File '/node_modules/@apollo/client/react/components/components.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/react/components/components.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/components/components.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/react/components/components.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/react/components/components.cts' does not exist.", + "Directory '/node_modules/@apollo/client/react/components/components.cjs' does not exist, skipping all lookups in it.", + "======== Module name '@apollo/client/react/components' was successfully resolved to '/node_modules/@apollo/client/react/components/components.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/react/components/index.d.ts" + ] + }, + "bundler": { + "name": "./react/components", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/@apollo/client/react/components/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/react/components' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/react/components' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/@apollo/client/react/components/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/react/components.ts' does not exist.", + "File '/node_modules/@apollo/client/react/components.tsx' does not exist.", + "File '/node_modules/@apollo/client/react/components.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/react/components/index.d.ts'.", + "File '/node_modules/@apollo/client/react/components/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/react/components' was successfully resolved to '/node_modules/@apollo/client/react/components/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/react/components/components.cjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/react/components' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/react/components' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/react/components/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/react/components.ts' does not exist.", + "File '/node_modules/@apollo/client/react/components.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'components.cjs' that references '/node_modules/@apollo/client/react/components/components.cjs'.", + "File '/node_modules/@apollo/client/react/components/components.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/react/components/components.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/components/components.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/react/components/components.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/react/components/components.cts' does not exist.", + "File '/node_modules/@apollo/client/react/components/components.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/react/components/components.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/react/components/components.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/react/components/index.ts' does not exist.", + "File '/node_modules/@apollo/client/react/components/index.tsx' does not exist.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/react/components/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/react/components.js' does not exist.", + "File '/node_modules/@apollo/client/react/components.jsx' does not exist.", + "'package.json' has 'main' field 'components.cjs' that references '/node_modules/@apollo/client/react/components/components.cjs'.", + "File '/node_modules/@apollo/client/react/components/components.cjs' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/react/components' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/react/components/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/react/components.ts' does not exist.", + "File '/node_modules/@apollo/client/react/components.tsx' does not exist.", + "'package.json' has 'main' field 'components.cjs' that references '/node_modules/@apollo/client/react/components/components.cjs'.", + "File '/node_modules/@apollo/client/react/components/components.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/react/components/components.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/components/components.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/react/components/components.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/react/components/components.cts' does not exist.", + "File '/node_modules/@apollo/client/react/components/components.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/react/components/components.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/react/components/components.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/react/components/index.ts' does not exist.", + "File '/node_modules/@apollo/client/react/components/index.tsx' does not exist.", + "======== Module name '@apollo/client/react/components' was successfully resolved to '/node_modules/@apollo/client/react/components/components.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/utilities/globals/DEV.d.ts", + "/node_modules/@apollo/client/utilities/globals/maybe.d.ts", + "/node_modules/@apollo/client/utilities/globals/global.d.ts", + "/node_modules/@apollo/client/utilities/globals/index.d.ts", + "/node_modules/@apollo/client/utilities/graphql/directives.d.ts", + "/node_modules/@apollo/client/utilities/graphql/fragments.d.ts", + "/node_modules/@apollo/client/utilities/graphql/getFromAST.d.ts", + "/node_modules/@apollo/client/utilities/graphql/storeUtils.d.ts", + "/node_modules/@apollo/client/utilities/graphql/transform.d.ts", + "/node_modules/@apollo/client/cache/core/types/Cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/entityStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fragmentRegistry.d.ts", + "/node_modules/@apollo/client/cache/inmemory/types.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fixPolyfills.d.ts", + "/node_modules/@apollo/client/cache/inmemory/reactiveVars.d.ts", + "/node_modules/@apollo/client/cache/inmemory/inMemoryCache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/object-canon.d.ts", + "/node_modules/@apollo/client/cache/inmemory/readFromStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/writeToStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/policies.d.ts", + "/node_modules/@apollo/client/cache/core/types/common.d.ts", + "/node_modules/@apollo/client/cache/core/types/DataProxy.d.ts", + "/node_modules/@apollo/client/cache/core/cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/helpers.d.ts", + "/node_modules/@apollo/client/cache/index.d.ts", + "/node_modules/@apollo/client/utilities/policies/pagination.d.ts", + "/node_modules/@apollo/client/utilities/observables/Observable.d.ts", + "/node_modules/@apollo/client/utilities/common/objects.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/cloneDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/maybeDeepFreeze.d.ts", + "/node_modules/@apollo/client/utilities/observables/iteration.d.ts", + "/node_modules/@apollo/client/utilities/observables/asyncMap.d.ts", + "/node_modules/@apollo/client/utilities/observables/Concast.d.ts", + "/node_modules/@apollo/client/utilities/observables/subclassing.d.ts", + "/node_modules/@apollo/client/utilities/common/arrays.d.ts", + "/node_modules/@apollo/client/utilities/common/errorHandling.d.ts", + "/node_modules/@apollo/client/utilities/common/canUse.d.ts", + "/node_modules/@apollo/client/utilities/common/compact.d.ts", + "/node_modules/@apollo/client/utilities/common/makeUniqueId.d.ts", + "/node_modules/@apollo/client/utilities/common/stringifyForDisplay.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeOptions.d.ts", + "/node_modules/@apollo/client/utilities/types/IsStrictlyAny.d.ts", + "/node_modules/@apollo/client/utilities/index.d.ts", + "/node_modules/@apollo/client/link/core/types.d.ts", + "/node_modules/@apollo/client/link/core/ApolloLink.d.ts", + "/node_modules/@apollo/client/link/core/empty.d.ts", + "/node_modules/@apollo/client/link/core/from.d.ts", + "/node_modules/@apollo/client/link/core/split.d.ts", + "/node_modules/@apollo/client/link/core/concat.d.ts", + "/node_modules/@apollo/client/link/core/execute.d.ts", + "/node_modules/@apollo/client/link/core/index.d.ts", + "/node_modules/@apollo/client/link/http/parseAndCheckHttpResponse.d.ts", + "/node_modules/@apollo/client/link/http/serializeFetchParameter.d.ts", + "/node_modules/@apollo/client/link/http/selectHttpOptionsAndBody.d.ts", + "/node_modules/@apollo/client/link/http/checkFetcher.d.ts", + "/node_modules/@apollo/client/link/http/createSignalIfSupported.d.ts", + "/node_modules/@apollo/client/link/http/selectURI.d.ts", + "/node_modules/@apollo/client/link/http/createHttpLink.d.ts", + "/node_modules/@apollo/client/link/http/HttpLink.d.ts", + "/node_modules/@apollo/client/link/http/rewriteURIForGET.d.ts", + "/node_modules/@apollo/client/link/http/index.d.ts", + "/node_modules/@apollo/client/core/networkStatus.d.ts", + "/node_modules/@apollo/client/link/utils/fromError.d.ts", + "/node_modules/@apollo/client/link/utils/toPromise.d.ts", + "/node_modules/@apollo/client/link/utils/fromPromise.d.ts", + "/node_modules/@apollo/client/link/utils/throwServerError.d.ts", + "/node_modules/@apollo/client/link/utils/validateOperation.d.ts", + "/node_modules/@apollo/client/link/utils/createOperation.d.ts", + "/node_modules/@apollo/client/link/utils/transformOperation.d.ts", + "/node_modules/@apollo/client/link/utils/index.d.ts", + "/node_modules/@apollo/client/errors/index.d.ts", + "/node_modules/@apollo/client/core/QueryInfo.d.ts", + "/node_modules/@apollo/client/core/LocalState.d.ts", + "/node_modules/@apollo/client/core/types.d.ts", + "/node_modules/@apollo/client/core/watchQueryOptions.d.ts", + "/node_modules/@apollo/client/core/QueryManager.d.ts", + "/node_modules/@apollo/client/core/ObservableQuery.d.ts", + "/node_modules/@apollo/client/core/ApolloClient.d.ts", + "/node_modules/@apollo/client/core/index.d.ts", + "/node_modules/@apollo/client/react/types/types.d.ts", + "/node_modules/@apollo/client/react/components/types.d.ts", + "/node_modules/@apollo/client/react/components/Query.d.ts", + "/node_modules/@apollo/client/react/components/Mutation.d.ts", + "/node_modules/@apollo/client/react/components/Subscription.d.ts", + "/node_modules/@apollo/client/react/components/index.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + }, + "./react/context": { + "subpath": "./react/context", + "resolutions": { + "node10": { + "name": "./react/context", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/@apollo/client/react/context/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/react/context' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module '@apollo/client/react/context' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/@apollo/client/react/context/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/react/context.ts' does not exist.", + "File '/node_modules/@apollo/client/react/context.tsx' does not exist.", + "File '/node_modules/@apollo/client/react/context.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/react/context/index.d.ts'.", + "File '/node_modules/@apollo/client/react/context/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/react/context' was successfully resolved to '/node_modules/@apollo/client/react/context/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/react/context/context.cjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/react/context' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module '@apollo/client/react/context' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/react/context/package.json'.", + "File '/node_modules/@apollo/client/react/context.ts' does not exist.", + "File '/node_modules/@apollo/client/react/context.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'context.cjs' that references '/node_modules/@apollo/client/react/context/context.cjs'.", + "File '/node_modules/@apollo/client/react/context/context.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/react/context/context.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/context/context.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/react/context/context.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/react/context/context.cts' does not exist.", + "File '/node_modules/@apollo/client/react/context/context.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/react/context/context.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/react/context/context.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/react/context/index.ts' does not exist.", + "File '/node_modules/@apollo/client/react/context/index.tsx' does not exist.", + "Loading module '@apollo/client/react/context' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/react/context/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/react/context.js' does not exist.", + "File '/node_modules/@apollo/client/react/context.jsx' does not exist.", + "'package.json' has 'main' field 'context.cjs' that references '/node_modules/@apollo/client/react/context/context.cjs'.", + "File '/node_modules/@apollo/client/react/context/context.cjs' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/react/context' was successfully resolved to '/node_modules/@apollo/client/react/context/context.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/utilities/globals/DEV.d.ts", + "/node_modules/@apollo/client/utilities/globals/maybe.d.ts", + "/node_modules/@apollo/client/utilities/globals/global.d.ts", + "/node_modules/@apollo/client/utilities/globals/index.d.ts", + "/node_modules/@apollo/client/utilities/graphql/directives.d.ts", + "/node_modules/@apollo/client/utilities/graphql/fragments.d.ts", + "/node_modules/@apollo/client/utilities/graphql/getFromAST.d.ts", + "/node_modules/@apollo/client/utilities/graphql/storeUtils.d.ts", + "/node_modules/@apollo/client/utilities/graphql/transform.d.ts", + "/node_modules/@apollo/client/cache/core/types/Cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/entityStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fragmentRegistry.d.ts", + "/node_modules/@apollo/client/cache/inmemory/types.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fixPolyfills.d.ts", + "/node_modules/@apollo/client/cache/inmemory/reactiveVars.d.ts", + "/node_modules/@apollo/client/cache/inmemory/inMemoryCache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/object-canon.d.ts", + "/node_modules/@apollo/client/cache/inmemory/readFromStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/writeToStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/policies.d.ts", + "/node_modules/@apollo/client/cache/core/types/common.d.ts", + "/node_modules/@apollo/client/cache/core/types/DataProxy.d.ts", + "/node_modules/@apollo/client/cache/core/cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/helpers.d.ts", + "/node_modules/@apollo/client/cache/index.d.ts", + "/node_modules/@apollo/client/utilities/policies/pagination.d.ts", + "/node_modules/@apollo/client/utilities/observables/Observable.d.ts", + "/node_modules/@apollo/client/utilities/common/objects.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/cloneDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/maybeDeepFreeze.d.ts", + "/node_modules/@apollo/client/utilities/observables/iteration.d.ts", + "/node_modules/@apollo/client/utilities/observables/asyncMap.d.ts", + "/node_modules/@apollo/client/utilities/observables/Concast.d.ts", + "/node_modules/@apollo/client/utilities/observables/subclassing.d.ts", + "/node_modules/@apollo/client/utilities/common/arrays.d.ts", + "/node_modules/@apollo/client/utilities/common/errorHandling.d.ts", + "/node_modules/@apollo/client/utilities/common/canUse.d.ts", + "/node_modules/@apollo/client/utilities/common/compact.d.ts", + "/node_modules/@apollo/client/utilities/common/makeUniqueId.d.ts", + "/node_modules/@apollo/client/utilities/common/stringifyForDisplay.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeOptions.d.ts", + "/node_modules/@apollo/client/utilities/types/IsStrictlyAny.d.ts", + "/node_modules/@apollo/client/utilities/index.d.ts", + "/node_modules/@apollo/client/link/core/types.d.ts", + "/node_modules/@apollo/client/link/core/ApolloLink.d.ts", + "/node_modules/@apollo/client/link/core/empty.d.ts", + "/node_modules/@apollo/client/link/core/from.d.ts", + "/node_modules/@apollo/client/link/core/split.d.ts", + "/node_modules/@apollo/client/link/core/concat.d.ts", + "/node_modules/@apollo/client/link/core/execute.d.ts", + "/node_modules/@apollo/client/link/core/index.d.ts", + "/node_modules/@apollo/client/link/http/parseAndCheckHttpResponse.d.ts", + "/node_modules/@apollo/client/link/http/serializeFetchParameter.d.ts", + "/node_modules/@apollo/client/link/http/selectHttpOptionsAndBody.d.ts", + "/node_modules/@apollo/client/link/http/checkFetcher.d.ts", + "/node_modules/@apollo/client/link/http/createSignalIfSupported.d.ts", + "/node_modules/@apollo/client/link/http/selectURI.d.ts", + "/node_modules/@apollo/client/link/http/createHttpLink.d.ts", + "/node_modules/@apollo/client/link/http/HttpLink.d.ts", + "/node_modules/@apollo/client/link/http/rewriteURIForGET.d.ts", + "/node_modules/@apollo/client/link/http/index.d.ts", + "/node_modules/@apollo/client/core/networkStatus.d.ts", + "/node_modules/@apollo/client/link/utils/fromError.d.ts", + "/node_modules/@apollo/client/link/utils/toPromise.d.ts", + "/node_modules/@apollo/client/link/utils/fromPromise.d.ts", + "/node_modules/@apollo/client/link/utils/throwServerError.d.ts", + "/node_modules/@apollo/client/link/utils/validateOperation.d.ts", + "/node_modules/@apollo/client/link/utils/createOperation.d.ts", + "/node_modules/@apollo/client/link/utils/transformOperation.d.ts", + "/node_modules/@apollo/client/link/utils/index.d.ts", + "/node_modules/@apollo/client/errors/index.d.ts", + "/node_modules/@apollo/client/core/QueryInfo.d.ts", + "/node_modules/@apollo/client/core/LocalState.d.ts", + "/node_modules/@apollo/client/core/types.d.ts", + "/node_modules/@apollo/client/core/watchQueryOptions.d.ts", + "/node_modules/@apollo/client/core/QueryManager.d.ts", + "/node_modules/@apollo/client/core/ObservableQuery.d.ts", + "/node_modules/@apollo/client/core/ApolloClient.d.ts", + "/node_modules/@apollo/client/core/index.d.ts", + "/node_modules/@apollo/client/react/context/ApolloConsumer.d.ts", + "/node_modules/@apollo/client/react/ssr/getDataFromTree.d.ts", + "/node_modules/@apollo/client/react/ssr/renderToStringWithData.d.ts", + "/node_modules/@apollo/client/react/types/types.d.ts", + "/node_modules/@apollo/client/react/ssr/RenderPromises.d.ts", + "/node_modules/@apollo/client/react/ssr/index.d.ts", + "/node_modules/@apollo/client/react/context/ApolloContext.d.ts", + "/node_modules/@apollo/client/react/context/ApolloProvider.d.ts", + "/node_modules/@apollo/client/react/context/index.d.ts" + ] + }, + "node16-cjs": { + "name": "./react/context", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/@apollo/client/react/context/index.d.ts", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/@apollo/client/react/context/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/react/context' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/react/context' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/@apollo/client/react/context/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/react/context.ts' does not exist.", + "File '/node_modules/@apollo/client/react/context.tsx' does not exist.", + "File '/node_modules/@apollo/client/react/context.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/react/context/index.d.ts'.", + "File '/node_modules/@apollo/client/react/context/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/react/context' was successfully resolved to '/node_modules/@apollo/client/react/context/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/react/context/context.cjs", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "extension", + "reasonFileName": "/node_modules/@apollo/client/react/context/context.cjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/react/context' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/react/context' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/react/context/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/react/context.ts' does not exist.", + "File '/node_modules/@apollo/client/react/context.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'context.cjs' that references '/node_modules/@apollo/client/react/context/context.cjs'.", + "File '/node_modules/@apollo/client/react/context/context.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/react/context/context.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/context/context.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/react/context/context.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/react/context/context.cts' does not exist.", + "File '/node_modules/@apollo/client/react/context/context.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/react/context/context.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/react/context/context.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/react/context/index.ts' does not exist.", + "File '/node_modules/@apollo/client/react/context/index.tsx' does not exist.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/react/context/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/react/context.js' does not exist.", + "File '/node_modules/@apollo/client/react/context.jsx' does not exist.", + "'package.json' has 'main' field 'context.cjs' that references '/node_modules/@apollo/client/react/context/context.cjs'.", + "File '/node_modules/@apollo/client/react/context/context.cjs' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/react/context' was successfully resolved to '/node_modules/@apollo/client/react/context/context.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/react/context/index.d.ts" + ] + }, + "node16-esm": { + "name": "./react/context", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/@apollo/client/react/context/index.d.ts", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/@apollo/client/react/context/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/react/context' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/react/context' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/@apollo/client/react/context/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/react/context/index.d.ts'.", + "File '/node_modules/@apollo/client/react/context/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/react/context' was successfully resolved to '/node_modules/@apollo/client/react/context/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/react/context/context.cjs", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "extension", + "reasonFileName": "/node_modules/@apollo/client/react/context/context.cjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/react/context' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/react/context' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/react/context/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'context.cjs' that references '/node_modules/@apollo/client/react/context/context.cjs'.", + "File '/node_modules/@apollo/client/react/context/context.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/react/context/context.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/context/context.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/react/context/context.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/react/context/context.cts' does not exist.", + "Directory '/node_modules/@apollo/client/react/context/context.cjs' does not exist, skipping all lookups in it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/react/context/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'context.cjs' that references '/node_modules/@apollo/client/react/context/context.cjs'.", + "File '/node_modules/@apollo/client/react/context/context.cjs' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/react/context' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/react/context/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'context.cjs' that references '/node_modules/@apollo/client/react/context/context.cjs'.", + "File '/node_modules/@apollo/client/react/context/context.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/react/context/context.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/context/context.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/react/context/context.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/react/context/context.cts' does not exist.", + "Directory '/node_modules/@apollo/client/react/context/context.cjs' does not exist, skipping all lookups in it.", + "======== Module name '@apollo/client/react/context' was successfully resolved to '/node_modules/@apollo/client/react/context/context.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/react/context/index.d.ts" + ] + }, + "bundler": { + "name": "./react/context", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/@apollo/client/react/context/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/react/context' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/react/context' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/@apollo/client/react/context/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/react/context.ts' does not exist.", + "File '/node_modules/@apollo/client/react/context.tsx' does not exist.", + "File '/node_modules/@apollo/client/react/context.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/react/context/index.d.ts'.", + "File '/node_modules/@apollo/client/react/context/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/react/context' was successfully resolved to '/node_modules/@apollo/client/react/context/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/react/context/context.cjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/react/context' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/react/context' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/react/context/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/react/context.ts' does not exist.", + "File '/node_modules/@apollo/client/react/context.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'context.cjs' that references '/node_modules/@apollo/client/react/context/context.cjs'.", + "File '/node_modules/@apollo/client/react/context/context.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/react/context/context.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/context/context.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/react/context/context.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/react/context/context.cts' does not exist.", + "File '/node_modules/@apollo/client/react/context/context.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/react/context/context.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/react/context/context.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/react/context/index.ts' does not exist.", + "File '/node_modules/@apollo/client/react/context/index.tsx' does not exist.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/react/context/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/react/context.js' does not exist.", + "File '/node_modules/@apollo/client/react/context.jsx' does not exist.", + "'package.json' has 'main' field 'context.cjs' that references '/node_modules/@apollo/client/react/context/context.cjs'.", + "File '/node_modules/@apollo/client/react/context/context.cjs' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/react/context' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/react/context/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/react/context.ts' does not exist.", + "File '/node_modules/@apollo/client/react/context.tsx' does not exist.", + "'package.json' has 'main' field 'context.cjs' that references '/node_modules/@apollo/client/react/context/context.cjs'.", + "File '/node_modules/@apollo/client/react/context/context.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/react/context/context.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/context/context.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/react/context/context.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/react/context/context.cts' does not exist.", + "File '/node_modules/@apollo/client/react/context/context.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/react/context/context.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/react/context/context.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/react/context/index.ts' does not exist.", + "File '/node_modules/@apollo/client/react/context/index.tsx' does not exist.", + "======== Module name '@apollo/client/react/context' was successfully resolved to '/node_modules/@apollo/client/react/context/context.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/utilities/globals/DEV.d.ts", + "/node_modules/@apollo/client/utilities/globals/maybe.d.ts", + "/node_modules/@apollo/client/utilities/globals/global.d.ts", + "/node_modules/@apollo/client/utilities/globals/index.d.ts", + "/node_modules/@apollo/client/utilities/graphql/directives.d.ts", + "/node_modules/@apollo/client/utilities/graphql/fragments.d.ts", + "/node_modules/@apollo/client/utilities/graphql/getFromAST.d.ts", + "/node_modules/@apollo/client/utilities/graphql/storeUtils.d.ts", + "/node_modules/@apollo/client/utilities/graphql/transform.d.ts", + "/node_modules/@apollo/client/cache/core/types/Cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/entityStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fragmentRegistry.d.ts", + "/node_modules/@apollo/client/cache/inmemory/types.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fixPolyfills.d.ts", + "/node_modules/@apollo/client/cache/inmemory/reactiveVars.d.ts", + "/node_modules/@apollo/client/cache/inmemory/inMemoryCache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/object-canon.d.ts", + "/node_modules/@apollo/client/cache/inmemory/readFromStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/writeToStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/policies.d.ts", + "/node_modules/@apollo/client/cache/core/types/common.d.ts", + "/node_modules/@apollo/client/cache/core/types/DataProxy.d.ts", + "/node_modules/@apollo/client/cache/core/cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/helpers.d.ts", + "/node_modules/@apollo/client/cache/index.d.ts", + "/node_modules/@apollo/client/utilities/policies/pagination.d.ts", + "/node_modules/@apollo/client/utilities/observables/Observable.d.ts", + "/node_modules/@apollo/client/utilities/common/objects.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/cloneDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/maybeDeepFreeze.d.ts", + "/node_modules/@apollo/client/utilities/observables/iteration.d.ts", + "/node_modules/@apollo/client/utilities/observables/asyncMap.d.ts", + "/node_modules/@apollo/client/utilities/observables/Concast.d.ts", + "/node_modules/@apollo/client/utilities/observables/subclassing.d.ts", + "/node_modules/@apollo/client/utilities/common/arrays.d.ts", + "/node_modules/@apollo/client/utilities/common/errorHandling.d.ts", + "/node_modules/@apollo/client/utilities/common/canUse.d.ts", + "/node_modules/@apollo/client/utilities/common/compact.d.ts", + "/node_modules/@apollo/client/utilities/common/makeUniqueId.d.ts", + "/node_modules/@apollo/client/utilities/common/stringifyForDisplay.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeOptions.d.ts", + "/node_modules/@apollo/client/utilities/types/IsStrictlyAny.d.ts", + "/node_modules/@apollo/client/utilities/index.d.ts", + "/node_modules/@apollo/client/link/core/types.d.ts", + "/node_modules/@apollo/client/link/core/ApolloLink.d.ts", + "/node_modules/@apollo/client/link/core/empty.d.ts", + "/node_modules/@apollo/client/link/core/from.d.ts", + "/node_modules/@apollo/client/link/core/split.d.ts", + "/node_modules/@apollo/client/link/core/concat.d.ts", + "/node_modules/@apollo/client/link/core/execute.d.ts", + "/node_modules/@apollo/client/link/core/index.d.ts", + "/node_modules/@apollo/client/link/http/parseAndCheckHttpResponse.d.ts", + "/node_modules/@apollo/client/link/http/serializeFetchParameter.d.ts", + "/node_modules/@apollo/client/link/http/selectHttpOptionsAndBody.d.ts", + "/node_modules/@apollo/client/link/http/checkFetcher.d.ts", + "/node_modules/@apollo/client/link/http/createSignalIfSupported.d.ts", + "/node_modules/@apollo/client/link/http/selectURI.d.ts", + "/node_modules/@apollo/client/link/http/createHttpLink.d.ts", + "/node_modules/@apollo/client/link/http/HttpLink.d.ts", + "/node_modules/@apollo/client/link/http/rewriteURIForGET.d.ts", + "/node_modules/@apollo/client/link/http/index.d.ts", + "/node_modules/@apollo/client/core/networkStatus.d.ts", + "/node_modules/@apollo/client/link/utils/fromError.d.ts", + "/node_modules/@apollo/client/link/utils/toPromise.d.ts", + "/node_modules/@apollo/client/link/utils/fromPromise.d.ts", + "/node_modules/@apollo/client/link/utils/throwServerError.d.ts", + "/node_modules/@apollo/client/link/utils/validateOperation.d.ts", + "/node_modules/@apollo/client/link/utils/createOperation.d.ts", + "/node_modules/@apollo/client/link/utils/transformOperation.d.ts", + "/node_modules/@apollo/client/link/utils/index.d.ts", + "/node_modules/@apollo/client/errors/index.d.ts", + "/node_modules/@apollo/client/core/QueryInfo.d.ts", + "/node_modules/@apollo/client/core/LocalState.d.ts", + "/node_modules/@apollo/client/core/types.d.ts", + "/node_modules/@apollo/client/core/watchQueryOptions.d.ts", + "/node_modules/@apollo/client/core/QueryManager.d.ts", + "/node_modules/@apollo/client/core/ObservableQuery.d.ts", + "/node_modules/@apollo/client/core/ApolloClient.d.ts", + "/node_modules/@apollo/client/core/index.d.ts", + "/node_modules/@apollo/client/react/context/ApolloConsumer.d.ts", + "/node_modules/@apollo/client/react/ssr/getDataFromTree.d.ts", + "/node_modules/@apollo/client/react/ssr/renderToStringWithData.d.ts", + "/node_modules/@apollo/client/react/types/types.d.ts", + "/node_modules/@apollo/client/react/ssr/RenderPromises.d.ts", + "/node_modules/@apollo/client/react/ssr/index.d.ts", + "/node_modules/@apollo/client/react/context/ApolloContext.d.ts", + "/node_modules/@apollo/client/react/context/ApolloProvider.d.ts", + "/node_modules/@apollo/client/react/context/index.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + }, + "./react/hoc": { + "subpath": "./react/hoc", + "resolutions": { + "node10": { + "name": "./react/hoc", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/@apollo/client/react/hoc/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/react/hoc' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module '@apollo/client/react/hoc' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/@apollo/client/react/hoc/package.json'.", + "File '/node_modules/@apollo/client/react/hoc.ts' does not exist.", + "File '/node_modules/@apollo/client/react/hoc.tsx' does not exist.", + "File '/node_modules/@apollo/client/react/hoc.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/react/hoc/index.d.ts'.", + "File '/node_modules/@apollo/client/react/hoc/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/react/hoc' was successfully resolved to '/node_modules/@apollo/client/react/hoc/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/react/hoc/hoc.cjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/react/hoc' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module '@apollo/client/react/hoc' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/react/hoc/package.json'.", + "File '/node_modules/@apollo/client/react/hoc.ts' does not exist.", + "File '/node_modules/@apollo/client/react/hoc.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'hoc.cjs' that references '/node_modules/@apollo/client/react/hoc/hoc.cjs'.", + "File '/node_modules/@apollo/client/react/hoc/hoc.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/react/hoc/hoc.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/hoc/hoc.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/react/hoc/hoc.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/react/hoc/hoc.cts' does not exist.", + "File '/node_modules/@apollo/client/react/hoc/hoc.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/react/hoc/hoc.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/react/hoc/hoc.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/react/hoc/index.ts' does not exist.", + "File '/node_modules/@apollo/client/react/hoc/index.tsx' does not exist.", + "Loading module '@apollo/client/react/hoc' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/react/hoc/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/react/hoc.js' does not exist.", + "File '/node_modules/@apollo/client/react/hoc.jsx' does not exist.", + "'package.json' has 'main' field 'hoc.cjs' that references '/node_modules/@apollo/client/react/hoc/hoc.cjs'.", + "File '/node_modules/@apollo/client/react/hoc/hoc.cjs' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/react/hoc' was successfully resolved to '/node_modules/@apollo/client/react/hoc/hoc.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/utilities/globals/DEV.d.ts", + "/node_modules/@apollo/client/utilities/globals/maybe.d.ts", + "/node_modules/@apollo/client/utilities/globals/global.d.ts", + "/node_modules/@apollo/client/utilities/globals/index.d.ts", + "/node_modules/@apollo/client/utilities/graphql/directives.d.ts", + "/node_modules/@apollo/client/utilities/graphql/fragments.d.ts", + "/node_modules/@apollo/client/utilities/graphql/getFromAST.d.ts", + "/node_modules/@apollo/client/utilities/graphql/storeUtils.d.ts", + "/node_modules/@apollo/client/utilities/graphql/transform.d.ts", + "/node_modules/@apollo/client/cache/core/types/Cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/entityStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fragmentRegistry.d.ts", + "/node_modules/@apollo/client/cache/inmemory/types.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fixPolyfills.d.ts", + "/node_modules/@apollo/client/cache/inmemory/reactiveVars.d.ts", + "/node_modules/@apollo/client/cache/inmemory/inMemoryCache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/object-canon.d.ts", + "/node_modules/@apollo/client/cache/inmemory/readFromStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/writeToStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/policies.d.ts", + "/node_modules/@apollo/client/cache/core/types/common.d.ts", + "/node_modules/@apollo/client/cache/core/types/DataProxy.d.ts", + "/node_modules/@apollo/client/cache/core/cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/helpers.d.ts", + "/node_modules/@apollo/client/cache/index.d.ts", + "/node_modules/@apollo/client/utilities/policies/pagination.d.ts", + "/node_modules/@apollo/client/utilities/observables/Observable.d.ts", + "/node_modules/@apollo/client/utilities/common/objects.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/cloneDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/maybeDeepFreeze.d.ts", + "/node_modules/@apollo/client/utilities/observables/iteration.d.ts", + "/node_modules/@apollo/client/utilities/observables/asyncMap.d.ts", + "/node_modules/@apollo/client/utilities/observables/Concast.d.ts", + "/node_modules/@apollo/client/utilities/observables/subclassing.d.ts", + "/node_modules/@apollo/client/utilities/common/arrays.d.ts", + "/node_modules/@apollo/client/utilities/common/errorHandling.d.ts", + "/node_modules/@apollo/client/utilities/common/canUse.d.ts", + "/node_modules/@apollo/client/utilities/common/compact.d.ts", + "/node_modules/@apollo/client/utilities/common/makeUniqueId.d.ts", + "/node_modules/@apollo/client/utilities/common/stringifyForDisplay.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeOptions.d.ts", + "/node_modules/@apollo/client/utilities/types/IsStrictlyAny.d.ts", + "/node_modules/@apollo/client/utilities/index.d.ts", + "/node_modules/@apollo/client/link/core/types.d.ts", + "/node_modules/@apollo/client/link/core/ApolloLink.d.ts", + "/node_modules/@apollo/client/link/core/empty.d.ts", + "/node_modules/@apollo/client/link/core/from.d.ts", + "/node_modules/@apollo/client/link/core/split.d.ts", + "/node_modules/@apollo/client/link/core/concat.d.ts", + "/node_modules/@apollo/client/link/core/execute.d.ts", + "/node_modules/@apollo/client/link/core/index.d.ts", + "/node_modules/@apollo/client/link/http/parseAndCheckHttpResponse.d.ts", + "/node_modules/@apollo/client/link/http/serializeFetchParameter.d.ts", + "/node_modules/@apollo/client/link/http/selectHttpOptionsAndBody.d.ts", + "/node_modules/@apollo/client/link/http/checkFetcher.d.ts", + "/node_modules/@apollo/client/link/http/createSignalIfSupported.d.ts", + "/node_modules/@apollo/client/link/http/selectURI.d.ts", + "/node_modules/@apollo/client/link/http/createHttpLink.d.ts", + "/node_modules/@apollo/client/link/http/HttpLink.d.ts", + "/node_modules/@apollo/client/link/http/rewriteURIForGET.d.ts", + "/node_modules/@apollo/client/link/http/index.d.ts", + "/node_modules/@apollo/client/core/networkStatus.d.ts", + "/node_modules/@apollo/client/link/utils/fromError.d.ts", + "/node_modules/@apollo/client/link/utils/toPromise.d.ts", + "/node_modules/@apollo/client/link/utils/fromPromise.d.ts", + "/node_modules/@apollo/client/link/utils/throwServerError.d.ts", + "/node_modules/@apollo/client/link/utils/validateOperation.d.ts", + "/node_modules/@apollo/client/link/utils/createOperation.d.ts", + "/node_modules/@apollo/client/link/utils/transformOperation.d.ts", + "/node_modules/@apollo/client/link/utils/index.d.ts", + "/node_modules/@apollo/client/errors/index.d.ts", + "/node_modules/@apollo/client/core/QueryInfo.d.ts", + "/node_modules/@apollo/client/core/LocalState.d.ts", + "/node_modules/@apollo/client/core/types.d.ts", + "/node_modules/@apollo/client/core/watchQueryOptions.d.ts", + "/node_modules/@apollo/client/core/QueryManager.d.ts", + "/node_modules/@apollo/client/core/ObservableQuery.d.ts", + "/node_modules/@apollo/client/core/ApolloClient.d.ts", + "/node_modules/@apollo/client/core/index.d.ts", + "/node_modules/@apollo/client/react/types/types.d.ts", + "/node_modules/@apollo/client/react/hoc/types.d.ts", + "/node_modules/@apollo/client/react/hoc/graphql.d.ts", + "/node_modules/@apollo/client/react/hoc/query-hoc.d.ts", + "/node_modules/@apollo/client/react/hoc/mutation-hoc.d.ts", + "/node_modules/@apollo/client/react/hoc/subscription-hoc.d.ts", + "/node_modules/@apollo/client/react/hoc/withApollo.d.ts", + "/node_modules/@apollo/client/react/hoc/index.d.ts" + ] + }, + "node16-cjs": { + "name": "./react/hoc", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/@apollo/client/react/hoc/index.d.ts", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/@apollo/client/react/hoc/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/react/hoc' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/react/hoc' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/@apollo/client/react/hoc/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/react/hoc.ts' does not exist.", + "File '/node_modules/@apollo/client/react/hoc.tsx' does not exist.", + "File '/node_modules/@apollo/client/react/hoc.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/react/hoc/index.d.ts'.", + "File '/node_modules/@apollo/client/react/hoc/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/react/hoc' was successfully resolved to '/node_modules/@apollo/client/react/hoc/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/react/hoc/hoc.cjs", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "extension", + "reasonFileName": "/node_modules/@apollo/client/react/hoc/hoc.cjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/react/hoc' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/react/hoc' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/react/hoc/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/react/hoc.ts' does not exist.", + "File '/node_modules/@apollo/client/react/hoc.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'hoc.cjs' that references '/node_modules/@apollo/client/react/hoc/hoc.cjs'.", + "File '/node_modules/@apollo/client/react/hoc/hoc.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/react/hoc/hoc.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/hoc/hoc.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/react/hoc/hoc.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/react/hoc/hoc.cts' does not exist.", + "File '/node_modules/@apollo/client/react/hoc/hoc.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/react/hoc/hoc.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/react/hoc/hoc.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/react/hoc/index.ts' does not exist.", + "File '/node_modules/@apollo/client/react/hoc/index.tsx' does not exist.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/react/hoc/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/react/hoc.js' does not exist.", + "File '/node_modules/@apollo/client/react/hoc.jsx' does not exist.", + "'package.json' has 'main' field 'hoc.cjs' that references '/node_modules/@apollo/client/react/hoc/hoc.cjs'.", + "File '/node_modules/@apollo/client/react/hoc/hoc.cjs' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/react/hoc' was successfully resolved to '/node_modules/@apollo/client/react/hoc/hoc.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/react/hoc/index.d.ts" + ] + }, + "node16-esm": { + "name": "./react/hoc", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/@apollo/client/react/hoc/index.d.ts", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/@apollo/client/react/hoc/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/react/hoc' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/react/hoc' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/@apollo/client/react/hoc/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/react/hoc/index.d.ts'.", + "File '/node_modules/@apollo/client/react/hoc/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/react/hoc' was successfully resolved to '/node_modules/@apollo/client/react/hoc/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/react/hoc/hoc.cjs", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "extension", + "reasonFileName": "/node_modules/@apollo/client/react/hoc/hoc.cjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/react/hoc' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/react/hoc' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/react/hoc/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'hoc.cjs' that references '/node_modules/@apollo/client/react/hoc/hoc.cjs'.", + "File '/node_modules/@apollo/client/react/hoc/hoc.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/react/hoc/hoc.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/hoc/hoc.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/react/hoc/hoc.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/react/hoc/hoc.cts' does not exist.", + "Directory '/node_modules/@apollo/client/react/hoc/hoc.cjs' does not exist, skipping all lookups in it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/react/hoc/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'hoc.cjs' that references '/node_modules/@apollo/client/react/hoc/hoc.cjs'.", + "File '/node_modules/@apollo/client/react/hoc/hoc.cjs' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/react/hoc' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/react/hoc/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'hoc.cjs' that references '/node_modules/@apollo/client/react/hoc/hoc.cjs'.", + "File '/node_modules/@apollo/client/react/hoc/hoc.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/react/hoc/hoc.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/hoc/hoc.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/react/hoc/hoc.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/react/hoc/hoc.cts' does not exist.", + "Directory '/node_modules/@apollo/client/react/hoc/hoc.cjs' does not exist, skipping all lookups in it.", + "======== Module name '@apollo/client/react/hoc' was successfully resolved to '/node_modules/@apollo/client/react/hoc/hoc.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/react/hoc/index.d.ts" + ] + }, + "bundler": { + "name": "./react/hoc", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/@apollo/client/react/hoc/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/react/hoc' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/react/hoc' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/@apollo/client/react/hoc/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/react/hoc.ts' does not exist.", + "File '/node_modules/@apollo/client/react/hoc.tsx' does not exist.", + "File '/node_modules/@apollo/client/react/hoc.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/react/hoc/index.d.ts'.", + "File '/node_modules/@apollo/client/react/hoc/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/react/hoc' was successfully resolved to '/node_modules/@apollo/client/react/hoc/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/react/hoc/hoc.cjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/react/hoc' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/react/hoc' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/react/hoc/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/react/hoc.ts' does not exist.", + "File '/node_modules/@apollo/client/react/hoc.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'hoc.cjs' that references '/node_modules/@apollo/client/react/hoc/hoc.cjs'.", + "File '/node_modules/@apollo/client/react/hoc/hoc.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/react/hoc/hoc.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/hoc/hoc.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/react/hoc/hoc.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/react/hoc/hoc.cts' does not exist.", + "File '/node_modules/@apollo/client/react/hoc/hoc.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/react/hoc/hoc.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/react/hoc/hoc.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/react/hoc/index.ts' does not exist.", + "File '/node_modules/@apollo/client/react/hoc/index.tsx' does not exist.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/react/hoc/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/react/hoc.js' does not exist.", + "File '/node_modules/@apollo/client/react/hoc.jsx' does not exist.", + "'package.json' has 'main' field 'hoc.cjs' that references '/node_modules/@apollo/client/react/hoc/hoc.cjs'.", + "File '/node_modules/@apollo/client/react/hoc/hoc.cjs' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/react/hoc' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/react/hoc/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/react/hoc.ts' does not exist.", + "File '/node_modules/@apollo/client/react/hoc.tsx' does not exist.", + "'package.json' has 'main' field 'hoc.cjs' that references '/node_modules/@apollo/client/react/hoc/hoc.cjs'.", + "File '/node_modules/@apollo/client/react/hoc/hoc.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/react/hoc/hoc.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/hoc/hoc.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/react/hoc/hoc.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/react/hoc/hoc.cts' does not exist.", + "File '/node_modules/@apollo/client/react/hoc/hoc.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/react/hoc/hoc.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/react/hoc/hoc.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/react/hoc/index.ts' does not exist.", + "File '/node_modules/@apollo/client/react/hoc/index.tsx' does not exist.", + "======== Module name '@apollo/client/react/hoc' was successfully resolved to '/node_modules/@apollo/client/react/hoc/hoc.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/utilities/globals/DEV.d.ts", + "/node_modules/@apollo/client/utilities/globals/maybe.d.ts", + "/node_modules/@apollo/client/utilities/globals/global.d.ts", + "/node_modules/@apollo/client/utilities/globals/index.d.ts", + "/node_modules/@apollo/client/utilities/graphql/directives.d.ts", + "/node_modules/@apollo/client/utilities/graphql/fragments.d.ts", + "/node_modules/@apollo/client/utilities/graphql/getFromAST.d.ts", + "/node_modules/@apollo/client/utilities/graphql/storeUtils.d.ts", + "/node_modules/@apollo/client/utilities/graphql/transform.d.ts", + "/node_modules/@apollo/client/cache/core/types/Cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/entityStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fragmentRegistry.d.ts", + "/node_modules/@apollo/client/cache/inmemory/types.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fixPolyfills.d.ts", + "/node_modules/@apollo/client/cache/inmemory/reactiveVars.d.ts", + "/node_modules/@apollo/client/cache/inmemory/inMemoryCache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/object-canon.d.ts", + "/node_modules/@apollo/client/cache/inmemory/readFromStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/writeToStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/policies.d.ts", + "/node_modules/@apollo/client/cache/core/types/common.d.ts", + "/node_modules/@apollo/client/cache/core/types/DataProxy.d.ts", + "/node_modules/@apollo/client/cache/core/cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/helpers.d.ts", + "/node_modules/@apollo/client/cache/index.d.ts", + "/node_modules/@apollo/client/utilities/policies/pagination.d.ts", + "/node_modules/@apollo/client/utilities/observables/Observable.d.ts", + "/node_modules/@apollo/client/utilities/common/objects.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/cloneDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/maybeDeepFreeze.d.ts", + "/node_modules/@apollo/client/utilities/observables/iteration.d.ts", + "/node_modules/@apollo/client/utilities/observables/asyncMap.d.ts", + "/node_modules/@apollo/client/utilities/observables/Concast.d.ts", + "/node_modules/@apollo/client/utilities/observables/subclassing.d.ts", + "/node_modules/@apollo/client/utilities/common/arrays.d.ts", + "/node_modules/@apollo/client/utilities/common/errorHandling.d.ts", + "/node_modules/@apollo/client/utilities/common/canUse.d.ts", + "/node_modules/@apollo/client/utilities/common/compact.d.ts", + "/node_modules/@apollo/client/utilities/common/makeUniqueId.d.ts", + "/node_modules/@apollo/client/utilities/common/stringifyForDisplay.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeOptions.d.ts", + "/node_modules/@apollo/client/utilities/types/IsStrictlyAny.d.ts", + "/node_modules/@apollo/client/utilities/index.d.ts", + "/node_modules/@apollo/client/link/core/types.d.ts", + "/node_modules/@apollo/client/link/core/ApolloLink.d.ts", + "/node_modules/@apollo/client/link/core/empty.d.ts", + "/node_modules/@apollo/client/link/core/from.d.ts", + "/node_modules/@apollo/client/link/core/split.d.ts", + "/node_modules/@apollo/client/link/core/concat.d.ts", + "/node_modules/@apollo/client/link/core/execute.d.ts", + "/node_modules/@apollo/client/link/core/index.d.ts", + "/node_modules/@apollo/client/link/http/parseAndCheckHttpResponse.d.ts", + "/node_modules/@apollo/client/link/http/serializeFetchParameter.d.ts", + "/node_modules/@apollo/client/link/http/selectHttpOptionsAndBody.d.ts", + "/node_modules/@apollo/client/link/http/checkFetcher.d.ts", + "/node_modules/@apollo/client/link/http/createSignalIfSupported.d.ts", + "/node_modules/@apollo/client/link/http/selectURI.d.ts", + "/node_modules/@apollo/client/link/http/createHttpLink.d.ts", + "/node_modules/@apollo/client/link/http/HttpLink.d.ts", + "/node_modules/@apollo/client/link/http/rewriteURIForGET.d.ts", + "/node_modules/@apollo/client/link/http/index.d.ts", + "/node_modules/@apollo/client/core/networkStatus.d.ts", + "/node_modules/@apollo/client/link/utils/fromError.d.ts", + "/node_modules/@apollo/client/link/utils/toPromise.d.ts", + "/node_modules/@apollo/client/link/utils/fromPromise.d.ts", + "/node_modules/@apollo/client/link/utils/throwServerError.d.ts", + "/node_modules/@apollo/client/link/utils/validateOperation.d.ts", + "/node_modules/@apollo/client/link/utils/createOperation.d.ts", + "/node_modules/@apollo/client/link/utils/transformOperation.d.ts", + "/node_modules/@apollo/client/link/utils/index.d.ts", + "/node_modules/@apollo/client/errors/index.d.ts", + "/node_modules/@apollo/client/core/QueryInfo.d.ts", + "/node_modules/@apollo/client/core/LocalState.d.ts", + "/node_modules/@apollo/client/core/types.d.ts", + "/node_modules/@apollo/client/core/watchQueryOptions.d.ts", + "/node_modules/@apollo/client/core/QueryManager.d.ts", + "/node_modules/@apollo/client/core/ObservableQuery.d.ts", + "/node_modules/@apollo/client/core/ApolloClient.d.ts", + "/node_modules/@apollo/client/core/index.d.ts", + "/node_modules/@apollo/client/react/types/types.d.ts", + "/node_modules/@apollo/client/react/hoc/types.d.ts", + "/node_modules/@apollo/client/react/hoc/graphql.d.ts", + "/node_modules/@apollo/client/react/hoc/query-hoc.d.ts", + "/node_modules/@apollo/client/react/hoc/mutation-hoc.d.ts", + "/node_modules/@apollo/client/react/hoc/subscription-hoc.d.ts", + "/node_modules/@apollo/client/react/hoc/withApollo.d.ts", + "/node_modules/@apollo/client/react/hoc/index.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + }, + "./react/hooks": { + "subpath": "./react/hooks", + "resolutions": { + "node10": { + "name": "./react/hooks", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/@apollo/client/react/hooks/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/react/hooks' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module '@apollo/client/react/hooks' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/@apollo/client/react/hooks/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/react/hooks.ts' does not exist.", + "File '/node_modules/@apollo/client/react/hooks.tsx' does not exist.", + "File '/node_modules/@apollo/client/react/hooks.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/react/hooks/index.d.ts'.", + "File '/node_modules/@apollo/client/react/hooks/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/react/hooks' was successfully resolved to '/node_modules/@apollo/client/react/hooks/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/react/hooks/hooks.cjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/react/hooks' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module '@apollo/client/react/hooks' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/react/hooks/package.json'.", + "File '/node_modules/@apollo/client/react/hooks.ts' does not exist.", + "File '/node_modules/@apollo/client/react/hooks.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'hooks.cjs' that references '/node_modules/@apollo/client/react/hooks/hooks.cjs'.", + "File '/node_modules/@apollo/client/react/hooks/hooks.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/react/hooks/hooks.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/hooks/hooks.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/react/hooks/hooks.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/react/hooks/hooks.cts' does not exist.", + "File '/node_modules/@apollo/client/react/hooks/hooks.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/react/hooks/hooks.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/react/hooks/hooks.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/react/hooks/index.ts' does not exist.", + "File '/node_modules/@apollo/client/react/hooks/index.tsx' does not exist.", + "Loading module '@apollo/client/react/hooks' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/react/hooks/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/react/hooks.js' does not exist.", + "File '/node_modules/@apollo/client/react/hooks.jsx' does not exist.", + "'package.json' has 'main' field 'hooks.cjs' that references '/node_modules/@apollo/client/react/hooks/hooks.cjs'.", + "File '/node_modules/@apollo/client/react/hooks/hooks.cjs' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/react/hooks' was successfully resolved to '/node_modules/@apollo/client/react/hooks/hooks.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/utilities/globals/DEV.d.ts", + "/node_modules/@apollo/client/utilities/globals/maybe.d.ts", + "/node_modules/@apollo/client/utilities/globals/global.d.ts", + "/node_modules/@apollo/client/utilities/globals/index.d.ts", + "/node_modules/@apollo/client/utilities/graphql/directives.d.ts", + "/node_modules/@apollo/client/utilities/graphql/fragments.d.ts", + "/node_modules/@apollo/client/utilities/graphql/getFromAST.d.ts", + "/node_modules/@apollo/client/utilities/graphql/storeUtils.d.ts", + "/node_modules/@apollo/client/utilities/graphql/transform.d.ts", + "/node_modules/@apollo/client/cache/core/types/Cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/entityStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fragmentRegistry.d.ts", + "/node_modules/@apollo/client/cache/inmemory/types.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fixPolyfills.d.ts", + "/node_modules/@apollo/client/cache/inmemory/reactiveVars.d.ts", + "/node_modules/@apollo/client/cache/inmemory/inMemoryCache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/object-canon.d.ts", + "/node_modules/@apollo/client/cache/inmemory/readFromStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/writeToStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/policies.d.ts", + "/node_modules/@apollo/client/cache/core/types/common.d.ts", + "/node_modules/@apollo/client/cache/core/types/DataProxy.d.ts", + "/node_modules/@apollo/client/cache/core/cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/helpers.d.ts", + "/node_modules/@apollo/client/cache/index.d.ts", + "/node_modules/@apollo/client/utilities/policies/pagination.d.ts", + "/node_modules/@apollo/client/utilities/observables/Observable.d.ts", + "/node_modules/@apollo/client/utilities/common/objects.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/cloneDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/maybeDeepFreeze.d.ts", + "/node_modules/@apollo/client/utilities/observables/iteration.d.ts", + "/node_modules/@apollo/client/utilities/observables/asyncMap.d.ts", + "/node_modules/@apollo/client/utilities/observables/Concast.d.ts", + "/node_modules/@apollo/client/utilities/observables/subclassing.d.ts", + "/node_modules/@apollo/client/utilities/common/arrays.d.ts", + "/node_modules/@apollo/client/utilities/common/errorHandling.d.ts", + "/node_modules/@apollo/client/utilities/common/canUse.d.ts", + "/node_modules/@apollo/client/utilities/common/compact.d.ts", + "/node_modules/@apollo/client/utilities/common/makeUniqueId.d.ts", + "/node_modules/@apollo/client/utilities/common/stringifyForDisplay.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeOptions.d.ts", + "/node_modules/@apollo/client/utilities/types/IsStrictlyAny.d.ts", + "/node_modules/@apollo/client/utilities/index.d.ts", + "/node_modules/@apollo/client/link/core/types.d.ts", + "/node_modules/@apollo/client/link/core/ApolloLink.d.ts", + "/node_modules/@apollo/client/link/core/empty.d.ts", + "/node_modules/@apollo/client/link/core/from.d.ts", + "/node_modules/@apollo/client/link/core/split.d.ts", + "/node_modules/@apollo/client/link/core/concat.d.ts", + "/node_modules/@apollo/client/link/core/execute.d.ts", + "/node_modules/@apollo/client/link/core/index.d.ts", + "/node_modules/@apollo/client/link/http/parseAndCheckHttpResponse.d.ts", + "/node_modules/@apollo/client/link/http/serializeFetchParameter.d.ts", + "/node_modules/@apollo/client/link/http/selectHttpOptionsAndBody.d.ts", + "/node_modules/@apollo/client/link/http/checkFetcher.d.ts", + "/node_modules/@apollo/client/link/http/createSignalIfSupported.d.ts", + "/node_modules/@apollo/client/link/http/selectURI.d.ts", + "/node_modules/@apollo/client/link/http/createHttpLink.d.ts", + "/node_modules/@apollo/client/link/http/HttpLink.d.ts", + "/node_modules/@apollo/client/link/http/rewriteURIForGET.d.ts", + "/node_modules/@apollo/client/link/http/index.d.ts", + "/node_modules/@apollo/client/core/networkStatus.d.ts", + "/node_modules/@apollo/client/link/utils/fromError.d.ts", + "/node_modules/@apollo/client/link/utils/toPromise.d.ts", + "/node_modules/@apollo/client/link/utils/fromPromise.d.ts", + "/node_modules/@apollo/client/link/utils/throwServerError.d.ts", + "/node_modules/@apollo/client/link/utils/validateOperation.d.ts", + "/node_modules/@apollo/client/link/utils/createOperation.d.ts", + "/node_modules/@apollo/client/link/utils/transformOperation.d.ts", + "/node_modules/@apollo/client/link/utils/index.d.ts", + "/node_modules/@apollo/client/errors/index.d.ts", + "/node_modules/@apollo/client/core/QueryInfo.d.ts", + "/node_modules/@apollo/client/core/LocalState.d.ts", + "/node_modules/@apollo/client/core/types.d.ts", + "/node_modules/@apollo/client/core/watchQueryOptions.d.ts", + "/node_modules/@apollo/client/core/QueryManager.d.ts", + "/node_modules/@apollo/client/core/ObservableQuery.d.ts", + "/node_modules/@apollo/client/core/ApolloClient.d.ts", + "/node_modules/@apollo/client/core/index.d.ts", + "/node_modules/@apollo/client/react/hooks/useApolloClient.d.ts", + "/node_modules/@apollo/client/react/types/types.d.ts", + "/node_modules/@apollo/client/react/hooks/useLazyQuery.d.ts", + "/node_modules/@apollo/client/react/hooks/useMutation.d.ts", + "/node_modules/@apollo/client/react/hooks/useQuery.d.ts", + "/node_modules/@apollo/client/react/hooks/useSubscription.d.ts", + "/node_modules/@apollo/client/react/hooks/useReactiveVar.d.ts", + "/node_modules/@apollo/client/react/hooks/useFragment.d.ts", + "/node_modules/@apollo/client/react/hooks/index.d.ts" + ] + }, + "node16-cjs": { + "name": "./react/hooks", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/@apollo/client/react/hooks/index.d.ts", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/@apollo/client/react/hooks/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/react/hooks' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/react/hooks' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/@apollo/client/react/hooks/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/react/hooks.ts' does not exist.", + "File '/node_modules/@apollo/client/react/hooks.tsx' does not exist.", + "File '/node_modules/@apollo/client/react/hooks.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/react/hooks/index.d.ts'.", + "File '/node_modules/@apollo/client/react/hooks/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/react/hooks' was successfully resolved to '/node_modules/@apollo/client/react/hooks/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/react/hooks/hooks.cjs", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "extension", + "reasonFileName": "/node_modules/@apollo/client/react/hooks/hooks.cjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/react/hooks' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/react/hooks' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/react/hooks/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/react/hooks.ts' does not exist.", + "File '/node_modules/@apollo/client/react/hooks.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'hooks.cjs' that references '/node_modules/@apollo/client/react/hooks/hooks.cjs'.", + "File '/node_modules/@apollo/client/react/hooks/hooks.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/react/hooks/hooks.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/hooks/hooks.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/react/hooks/hooks.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/react/hooks/hooks.cts' does not exist.", + "File '/node_modules/@apollo/client/react/hooks/hooks.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/react/hooks/hooks.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/react/hooks/hooks.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/react/hooks/index.ts' does not exist.", + "File '/node_modules/@apollo/client/react/hooks/index.tsx' does not exist.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/react/hooks/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/react/hooks.js' does not exist.", + "File '/node_modules/@apollo/client/react/hooks.jsx' does not exist.", + "'package.json' has 'main' field 'hooks.cjs' that references '/node_modules/@apollo/client/react/hooks/hooks.cjs'.", + "File '/node_modules/@apollo/client/react/hooks/hooks.cjs' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/react/hooks' was successfully resolved to '/node_modules/@apollo/client/react/hooks/hooks.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/react/hooks/index.d.ts" + ] + }, + "node16-esm": { + "name": "./react/hooks", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/@apollo/client/react/hooks/index.d.ts", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/@apollo/client/react/hooks/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/react/hooks' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/react/hooks' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/@apollo/client/react/hooks/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/react/hooks/index.d.ts'.", + "File '/node_modules/@apollo/client/react/hooks/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/react/hooks' was successfully resolved to '/node_modules/@apollo/client/react/hooks/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/react/hooks/hooks.cjs", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "extension", + "reasonFileName": "/node_modules/@apollo/client/react/hooks/hooks.cjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/react/hooks' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/react/hooks' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/react/hooks/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'hooks.cjs' that references '/node_modules/@apollo/client/react/hooks/hooks.cjs'.", + "File '/node_modules/@apollo/client/react/hooks/hooks.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/react/hooks/hooks.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/hooks/hooks.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/react/hooks/hooks.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/react/hooks/hooks.cts' does not exist.", + "Directory '/node_modules/@apollo/client/react/hooks/hooks.cjs' does not exist, skipping all lookups in it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/react/hooks/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'hooks.cjs' that references '/node_modules/@apollo/client/react/hooks/hooks.cjs'.", + "File '/node_modules/@apollo/client/react/hooks/hooks.cjs' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/react/hooks' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/react/hooks/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'hooks.cjs' that references '/node_modules/@apollo/client/react/hooks/hooks.cjs'.", + "File '/node_modules/@apollo/client/react/hooks/hooks.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/react/hooks/hooks.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/hooks/hooks.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/react/hooks/hooks.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/react/hooks/hooks.cts' does not exist.", + "Directory '/node_modules/@apollo/client/react/hooks/hooks.cjs' does not exist, skipping all lookups in it.", + "======== Module name '@apollo/client/react/hooks' was successfully resolved to '/node_modules/@apollo/client/react/hooks/hooks.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/react/hooks/index.d.ts" + ] + }, + "bundler": { + "name": "./react/hooks", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/@apollo/client/react/hooks/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/react/hooks' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/react/hooks' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/@apollo/client/react/hooks/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/react/hooks.ts' does not exist.", + "File '/node_modules/@apollo/client/react/hooks.tsx' does not exist.", + "File '/node_modules/@apollo/client/react/hooks.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/react/hooks/index.d.ts'.", + "File '/node_modules/@apollo/client/react/hooks/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/react/hooks' was successfully resolved to '/node_modules/@apollo/client/react/hooks/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/react/hooks/hooks.cjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/react/hooks' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/react/hooks' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/react/hooks/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/react/hooks.ts' does not exist.", + "File '/node_modules/@apollo/client/react/hooks.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'hooks.cjs' that references '/node_modules/@apollo/client/react/hooks/hooks.cjs'.", + "File '/node_modules/@apollo/client/react/hooks/hooks.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/react/hooks/hooks.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/hooks/hooks.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/react/hooks/hooks.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/react/hooks/hooks.cts' does not exist.", + "File '/node_modules/@apollo/client/react/hooks/hooks.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/react/hooks/hooks.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/react/hooks/hooks.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/react/hooks/index.ts' does not exist.", + "File '/node_modules/@apollo/client/react/hooks/index.tsx' does not exist.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/react/hooks/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/react/hooks.js' does not exist.", + "File '/node_modules/@apollo/client/react/hooks.jsx' does not exist.", + "'package.json' has 'main' field 'hooks.cjs' that references '/node_modules/@apollo/client/react/hooks/hooks.cjs'.", + "File '/node_modules/@apollo/client/react/hooks/hooks.cjs' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/react/hooks' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/react/hooks/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/react/hooks.ts' does not exist.", + "File '/node_modules/@apollo/client/react/hooks.tsx' does not exist.", + "'package.json' has 'main' field 'hooks.cjs' that references '/node_modules/@apollo/client/react/hooks/hooks.cjs'.", + "File '/node_modules/@apollo/client/react/hooks/hooks.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/react/hooks/hooks.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/hooks/hooks.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/react/hooks/hooks.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/react/hooks/hooks.cts' does not exist.", + "File '/node_modules/@apollo/client/react/hooks/hooks.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/react/hooks/hooks.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/react/hooks/hooks.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/react/hooks/index.ts' does not exist.", + "File '/node_modules/@apollo/client/react/hooks/index.tsx' does not exist.", + "======== Module name '@apollo/client/react/hooks' was successfully resolved to '/node_modules/@apollo/client/react/hooks/hooks.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/utilities/globals/DEV.d.ts", + "/node_modules/@apollo/client/utilities/globals/maybe.d.ts", + "/node_modules/@apollo/client/utilities/globals/global.d.ts", + "/node_modules/@apollo/client/utilities/globals/index.d.ts", + "/node_modules/@apollo/client/utilities/graphql/directives.d.ts", + "/node_modules/@apollo/client/utilities/graphql/fragments.d.ts", + "/node_modules/@apollo/client/utilities/graphql/getFromAST.d.ts", + "/node_modules/@apollo/client/utilities/graphql/storeUtils.d.ts", + "/node_modules/@apollo/client/utilities/graphql/transform.d.ts", + "/node_modules/@apollo/client/cache/core/types/Cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/entityStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fragmentRegistry.d.ts", + "/node_modules/@apollo/client/cache/inmemory/types.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fixPolyfills.d.ts", + "/node_modules/@apollo/client/cache/inmemory/reactiveVars.d.ts", + "/node_modules/@apollo/client/cache/inmemory/inMemoryCache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/object-canon.d.ts", + "/node_modules/@apollo/client/cache/inmemory/readFromStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/writeToStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/policies.d.ts", + "/node_modules/@apollo/client/cache/core/types/common.d.ts", + "/node_modules/@apollo/client/cache/core/types/DataProxy.d.ts", + "/node_modules/@apollo/client/cache/core/cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/helpers.d.ts", + "/node_modules/@apollo/client/cache/index.d.ts", + "/node_modules/@apollo/client/utilities/policies/pagination.d.ts", + "/node_modules/@apollo/client/utilities/observables/Observable.d.ts", + "/node_modules/@apollo/client/utilities/common/objects.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/cloneDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/maybeDeepFreeze.d.ts", + "/node_modules/@apollo/client/utilities/observables/iteration.d.ts", + "/node_modules/@apollo/client/utilities/observables/asyncMap.d.ts", + "/node_modules/@apollo/client/utilities/observables/Concast.d.ts", + "/node_modules/@apollo/client/utilities/observables/subclassing.d.ts", + "/node_modules/@apollo/client/utilities/common/arrays.d.ts", + "/node_modules/@apollo/client/utilities/common/errorHandling.d.ts", + "/node_modules/@apollo/client/utilities/common/canUse.d.ts", + "/node_modules/@apollo/client/utilities/common/compact.d.ts", + "/node_modules/@apollo/client/utilities/common/makeUniqueId.d.ts", + "/node_modules/@apollo/client/utilities/common/stringifyForDisplay.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeOptions.d.ts", + "/node_modules/@apollo/client/utilities/types/IsStrictlyAny.d.ts", + "/node_modules/@apollo/client/utilities/index.d.ts", + "/node_modules/@apollo/client/link/core/types.d.ts", + "/node_modules/@apollo/client/link/core/ApolloLink.d.ts", + "/node_modules/@apollo/client/link/core/empty.d.ts", + "/node_modules/@apollo/client/link/core/from.d.ts", + "/node_modules/@apollo/client/link/core/split.d.ts", + "/node_modules/@apollo/client/link/core/concat.d.ts", + "/node_modules/@apollo/client/link/core/execute.d.ts", + "/node_modules/@apollo/client/link/core/index.d.ts", + "/node_modules/@apollo/client/link/http/parseAndCheckHttpResponse.d.ts", + "/node_modules/@apollo/client/link/http/serializeFetchParameter.d.ts", + "/node_modules/@apollo/client/link/http/selectHttpOptionsAndBody.d.ts", + "/node_modules/@apollo/client/link/http/checkFetcher.d.ts", + "/node_modules/@apollo/client/link/http/createSignalIfSupported.d.ts", + "/node_modules/@apollo/client/link/http/selectURI.d.ts", + "/node_modules/@apollo/client/link/http/createHttpLink.d.ts", + "/node_modules/@apollo/client/link/http/HttpLink.d.ts", + "/node_modules/@apollo/client/link/http/rewriteURIForGET.d.ts", + "/node_modules/@apollo/client/link/http/index.d.ts", + "/node_modules/@apollo/client/core/networkStatus.d.ts", + "/node_modules/@apollo/client/link/utils/fromError.d.ts", + "/node_modules/@apollo/client/link/utils/toPromise.d.ts", + "/node_modules/@apollo/client/link/utils/fromPromise.d.ts", + "/node_modules/@apollo/client/link/utils/throwServerError.d.ts", + "/node_modules/@apollo/client/link/utils/validateOperation.d.ts", + "/node_modules/@apollo/client/link/utils/createOperation.d.ts", + "/node_modules/@apollo/client/link/utils/transformOperation.d.ts", + "/node_modules/@apollo/client/link/utils/index.d.ts", + "/node_modules/@apollo/client/errors/index.d.ts", + "/node_modules/@apollo/client/core/QueryInfo.d.ts", + "/node_modules/@apollo/client/core/LocalState.d.ts", + "/node_modules/@apollo/client/core/types.d.ts", + "/node_modules/@apollo/client/core/watchQueryOptions.d.ts", + "/node_modules/@apollo/client/core/QueryManager.d.ts", + "/node_modules/@apollo/client/core/ObservableQuery.d.ts", + "/node_modules/@apollo/client/core/ApolloClient.d.ts", + "/node_modules/@apollo/client/core/index.d.ts", + "/node_modules/@apollo/client/react/hooks/useApolloClient.d.ts", + "/node_modules/@apollo/client/react/types/types.d.ts", + "/node_modules/@apollo/client/react/hooks/useLazyQuery.d.ts", + "/node_modules/@apollo/client/react/hooks/useMutation.d.ts", + "/node_modules/@apollo/client/react/hooks/useQuery.d.ts", + "/node_modules/@apollo/client/react/hooks/useSubscription.d.ts", + "/node_modules/@apollo/client/react/hooks/useReactiveVar.d.ts", + "/node_modules/@apollo/client/react/hooks/useFragment.d.ts", + "/node_modules/@apollo/client/react/hooks/index.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + }, + "./react/parser": { + "subpath": "./react/parser", + "resolutions": { + "node10": { + "name": "./react/parser", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/@apollo/client/react/parser/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/react/parser' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module '@apollo/client/react/parser' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/@apollo/client/react/parser/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/react/parser.ts' does not exist.", + "File '/node_modules/@apollo/client/react/parser.tsx' does not exist.", + "File '/node_modules/@apollo/client/react/parser.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/react/parser/index.d.ts'.", + "File '/node_modules/@apollo/client/react/parser/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/react/parser' was successfully resolved to '/node_modules/@apollo/client/react/parser/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/react/parser/parser.cjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/react/parser' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module '@apollo/client/react/parser' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/react/parser/package.json'.", + "File '/node_modules/@apollo/client/react/parser.ts' does not exist.", + "File '/node_modules/@apollo/client/react/parser.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'parser.cjs' that references '/node_modules/@apollo/client/react/parser/parser.cjs'.", + "File '/node_modules/@apollo/client/react/parser/parser.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/react/parser/parser.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/parser/parser.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/react/parser/parser.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/react/parser/parser.cts' does not exist.", + "File '/node_modules/@apollo/client/react/parser/parser.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/react/parser/parser.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/react/parser/parser.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/react/parser/index.ts' does not exist.", + "File '/node_modules/@apollo/client/react/parser/index.tsx' does not exist.", + "Loading module '@apollo/client/react/parser' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/react/parser/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/react/parser.js' does not exist.", + "File '/node_modules/@apollo/client/react/parser.jsx' does not exist.", + "'package.json' has 'main' field 'parser.cjs' that references '/node_modules/@apollo/client/react/parser/parser.cjs'.", + "File '/node_modules/@apollo/client/react/parser/parser.cjs' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/react/parser' was successfully resolved to '/node_modules/@apollo/client/react/parser/parser.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/react/parser/index.d.ts" + ] + }, + "node16-cjs": { + "name": "./react/parser", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/@apollo/client/react/parser/index.d.ts", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/@apollo/client/react/parser/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/react/parser' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/react/parser' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/@apollo/client/react/parser/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/react/parser.ts' does not exist.", + "File '/node_modules/@apollo/client/react/parser.tsx' does not exist.", + "File '/node_modules/@apollo/client/react/parser.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/react/parser/index.d.ts'.", + "File '/node_modules/@apollo/client/react/parser/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/react/parser' was successfully resolved to '/node_modules/@apollo/client/react/parser/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/react/parser/parser.cjs", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "extension", + "reasonFileName": "/node_modules/@apollo/client/react/parser/parser.cjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/react/parser' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/react/parser' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/react/parser/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/react/parser.ts' does not exist.", + "File '/node_modules/@apollo/client/react/parser.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'parser.cjs' that references '/node_modules/@apollo/client/react/parser/parser.cjs'.", + "File '/node_modules/@apollo/client/react/parser/parser.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/react/parser/parser.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/parser/parser.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/react/parser/parser.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/react/parser/parser.cts' does not exist.", + "File '/node_modules/@apollo/client/react/parser/parser.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/react/parser/parser.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/react/parser/parser.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/react/parser/index.ts' does not exist.", + "File '/node_modules/@apollo/client/react/parser/index.tsx' does not exist.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/react/parser/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/react/parser.js' does not exist.", + "File '/node_modules/@apollo/client/react/parser.jsx' does not exist.", + "'package.json' has 'main' field 'parser.cjs' that references '/node_modules/@apollo/client/react/parser/parser.cjs'.", + "File '/node_modules/@apollo/client/react/parser/parser.cjs' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/react/parser' was successfully resolved to '/node_modules/@apollo/client/react/parser/parser.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/react/parser/index.d.ts" + ] + }, + "node16-esm": { + "name": "./react/parser", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/@apollo/client/react/parser/index.d.ts", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/@apollo/client/react/parser/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/react/parser' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/react/parser' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/@apollo/client/react/parser/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/react/parser/index.d.ts'.", + "File '/node_modules/@apollo/client/react/parser/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/react/parser' was successfully resolved to '/node_modules/@apollo/client/react/parser/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/react/parser/parser.cjs", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "extension", + "reasonFileName": "/node_modules/@apollo/client/react/parser/parser.cjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/react/parser' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/react/parser' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/react/parser/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'parser.cjs' that references '/node_modules/@apollo/client/react/parser/parser.cjs'.", + "File '/node_modules/@apollo/client/react/parser/parser.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/react/parser/parser.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/parser/parser.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/react/parser/parser.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/react/parser/parser.cts' does not exist.", + "Directory '/node_modules/@apollo/client/react/parser/parser.cjs' does not exist, skipping all lookups in it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/react/parser/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'parser.cjs' that references '/node_modules/@apollo/client/react/parser/parser.cjs'.", + "File '/node_modules/@apollo/client/react/parser/parser.cjs' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/react/parser' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/react/parser/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'parser.cjs' that references '/node_modules/@apollo/client/react/parser/parser.cjs'.", + "File '/node_modules/@apollo/client/react/parser/parser.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/react/parser/parser.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/parser/parser.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/react/parser/parser.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/react/parser/parser.cts' does not exist.", + "Directory '/node_modules/@apollo/client/react/parser/parser.cjs' does not exist, skipping all lookups in it.", + "======== Module name '@apollo/client/react/parser' was successfully resolved to '/node_modules/@apollo/client/react/parser/parser.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/react/parser/index.d.ts" + ] + }, + "bundler": { + "name": "./react/parser", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/@apollo/client/react/parser/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/react/parser' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/react/parser' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/@apollo/client/react/parser/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/react/parser.ts' does not exist.", + "File '/node_modules/@apollo/client/react/parser.tsx' does not exist.", + "File '/node_modules/@apollo/client/react/parser.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/react/parser/index.d.ts'.", + "File '/node_modules/@apollo/client/react/parser/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/react/parser' was successfully resolved to '/node_modules/@apollo/client/react/parser/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/react/parser/parser.cjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/react/parser' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/react/parser' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/react/parser/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/react/parser.ts' does not exist.", + "File '/node_modules/@apollo/client/react/parser.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'parser.cjs' that references '/node_modules/@apollo/client/react/parser/parser.cjs'.", + "File '/node_modules/@apollo/client/react/parser/parser.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/react/parser/parser.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/parser/parser.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/react/parser/parser.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/react/parser/parser.cts' does not exist.", + "File '/node_modules/@apollo/client/react/parser/parser.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/react/parser/parser.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/react/parser/parser.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/react/parser/index.ts' does not exist.", + "File '/node_modules/@apollo/client/react/parser/index.tsx' does not exist.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/react/parser/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/react/parser.js' does not exist.", + "File '/node_modules/@apollo/client/react/parser.jsx' does not exist.", + "'package.json' has 'main' field 'parser.cjs' that references '/node_modules/@apollo/client/react/parser/parser.cjs'.", + "File '/node_modules/@apollo/client/react/parser/parser.cjs' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/react/parser' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/react/parser/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/react/parser.ts' does not exist.", + "File '/node_modules/@apollo/client/react/parser.tsx' does not exist.", + "'package.json' has 'main' field 'parser.cjs' that references '/node_modules/@apollo/client/react/parser/parser.cjs'.", + "File '/node_modules/@apollo/client/react/parser/parser.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/react/parser/parser.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/parser/parser.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/react/parser/parser.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/react/parser/parser.cts' does not exist.", + "File '/node_modules/@apollo/client/react/parser/parser.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/react/parser/parser.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/react/parser/parser.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/react/parser/index.ts' does not exist.", + "File '/node_modules/@apollo/client/react/parser/index.tsx' does not exist.", + "======== Module name '@apollo/client/react/parser' was successfully resolved to '/node_modules/@apollo/client/react/parser/parser.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/react/parser/index.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + }, + "./react/ssr": { + "subpath": "./react/ssr", + "resolutions": { + "node10": { + "name": "./react/ssr", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/@apollo/client/react/ssr/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/react/ssr' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module '@apollo/client/react/ssr' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/@apollo/client/react/ssr/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/react/ssr.ts' does not exist.", + "File '/node_modules/@apollo/client/react/ssr.tsx' does not exist.", + "File '/node_modules/@apollo/client/react/ssr.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/react/ssr/index.d.ts'.", + "File '/node_modules/@apollo/client/react/ssr/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/react/ssr' was successfully resolved to '/node_modules/@apollo/client/react/ssr/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/react/ssr/ssr.cjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/react/ssr' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module '@apollo/client/react/ssr' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/react/ssr/package.json'.", + "File '/node_modules/@apollo/client/react/ssr.ts' does not exist.", + "File '/node_modules/@apollo/client/react/ssr.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'ssr.cjs' that references '/node_modules/@apollo/client/react/ssr/ssr.cjs'.", + "File '/node_modules/@apollo/client/react/ssr/ssr.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/react/ssr/ssr.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/ssr/ssr.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/react/ssr/ssr.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/react/ssr/ssr.cts' does not exist.", + "File '/node_modules/@apollo/client/react/ssr/ssr.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/react/ssr/ssr.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/react/ssr/ssr.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/react/ssr/index.ts' does not exist.", + "File '/node_modules/@apollo/client/react/ssr/index.tsx' does not exist.", + "Loading module '@apollo/client/react/ssr' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/react/ssr/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/react/ssr.js' does not exist.", + "File '/node_modules/@apollo/client/react/ssr.jsx' does not exist.", + "'package.json' has 'main' field 'ssr.cjs' that references '/node_modules/@apollo/client/react/ssr/ssr.cjs'.", + "File '/node_modules/@apollo/client/react/ssr/ssr.cjs' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/react/ssr' was successfully resolved to '/node_modules/@apollo/client/react/ssr/ssr.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/react/ssr/getDataFromTree.d.ts", + "/node_modules/@apollo/client/react/ssr/renderToStringWithData.d.ts", + "/node_modules/@apollo/client/utilities/globals/DEV.d.ts", + "/node_modules/@apollo/client/utilities/globals/maybe.d.ts", + "/node_modules/@apollo/client/utilities/globals/global.d.ts", + "/node_modules/@apollo/client/utilities/globals/index.d.ts", + "/node_modules/@apollo/client/utilities/graphql/directives.d.ts", + "/node_modules/@apollo/client/utilities/graphql/fragments.d.ts", + "/node_modules/@apollo/client/utilities/graphql/getFromAST.d.ts", + "/node_modules/@apollo/client/utilities/graphql/storeUtils.d.ts", + "/node_modules/@apollo/client/utilities/graphql/transform.d.ts", + "/node_modules/@apollo/client/cache/core/types/Cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/entityStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fragmentRegistry.d.ts", + "/node_modules/@apollo/client/cache/inmemory/types.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fixPolyfills.d.ts", + "/node_modules/@apollo/client/cache/inmemory/reactiveVars.d.ts", + "/node_modules/@apollo/client/cache/inmemory/inMemoryCache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/object-canon.d.ts", + "/node_modules/@apollo/client/cache/inmemory/readFromStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/writeToStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/policies.d.ts", + "/node_modules/@apollo/client/cache/core/types/common.d.ts", + "/node_modules/@apollo/client/cache/core/types/DataProxy.d.ts", + "/node_modules/@apollo/client/cache/core/cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/helpers.d.ts", + "/node_modules/@apollo/client/cache/index.d.ts", + "/node_modules/@apollo/client/utilities/policies/pagination.d.ts", + "/node_modules/@apollo/client/utilities/observables/Observable.d.ts", + "/node_modules/@apollo/client/utilities/common/objects.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/cloneDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/maybeDeepFreeze.d.ts", + "/node_modules/@apollo/client/utilities/observables/iteration.d.ts", + "/node_modules/@apollo/client/utilities/observables/asyncMap.d.ts", + "/node_modules/@apollo/client/utilities/observables/Concast.d.ts", + "/node_modules/@apollo/client/utilities/observables/subclassing.d.ts", + "/node_modules/@apollo/client/utilities/common/arrays.d.ts", + "/node_modules/@apollo/client/utilities/common/errorHandling.d.ts", + "/node_modules/@apollo/client/utilities/common/canUse.d.ts", + "/node_modules/@apollo/client/utilities/common/compact.d.ts", + "/node_modules/@apollo/client/utilities/common/makeUniqueId.d.ts", + "/node_modules/@apollo/client/utilities/common/stringifyForDisplay.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeOptions.d.ts", + "/node_modules/@apollo/client/utilities/types/IsStrictlyAny.d.ts", + "/node_modules/@apollo/client/utilities/index.d.ts", + "/node_modules/@apollo/client/link/core/types.d.ts", + "/node_modules/@apollo/client/link/core/ApolloLink.d.ts", + "/node_modules/@apollo/client/link/core/empty.d.ts", + "/node_modules/@apollo/client/link/core/from.d.ts", + "/node_modules/@apollo/client/link/core/split.d.ts", + "/node_modules/@apollo/client/link/core/concat.d.ts", + "/node_modules/@apollo/client/link/core/execute.d.ts", + "/node_modules/@apollo/client/link/core/index.d.ts", + "/node_modules/@apollo/client/link/http/parseAndCheckHttpResponse.d.ts", + "/node_modules/@apollo/client/link/http/serializeFetchParameter.d.ts", + "/node_modules/@apollo/client/link/http/selectHttpOptionsAndBody.d.ts", + "/node_modules/@apollo/client/link/http/checkFetcher.d.ts", + "/node_modules/@apollo/client/link/http/createSignalIfSupported.d.ts", + "/node_modules/@apollo/client/link/http/selectURI.d.ts", + "/node_modules/@apollo/client/link/http/createHttpLink.d.ts", + "/node_modules/@apollo/client/link/http/HttpLink.d.ts", + "/node_modules/@apollo/client/link/http/rewriteURIForGET.d.ts", + "/node_modules/@apollo/client/link/http/index.d.ts", + "/node_modules/@apollo/client/core/networkStatus.d.ts", + "/node_modules/@apollo/client/link/utils/fromError.d.ts", + "/node_modules/@apollo/client/link/utils/toPromise.d.ts", + "/node_modules/@apollo/client/link/utils/fromPromise.d.ts", + "/node_modules/@apollo/client/link/utils/throwServerError.d.ts", + "/node_modules/@apollo/client/link/utils/validateOperation.d.ts", + "/node_modules/@apollo/client/link/utils/createOperation.d.ts", + "/node_modules/@apollo/client/link/utils/transformOperation.d.ts", + "/node_modules/@apollo/client/link/utils/index.d.ts", + "/node_modules/@apollo/client/errors/index.d.ts", + "/node_modules/@apollo/client/core/QueryInfo.d.ts", + "/node_modules/@apollo/client/core/LocalState.d.ts", + "/node_modules/@apollo/client/core/types.d.ts", + "/node_modules/@apollo/client/core/watchQueryOptions.d.ts", + "/node_modules/@apollo/client/core/QueryManager.d.ts", + "/node_modules/@apollo/client/core/ObservableQuery.d.ts", + "/node_modules/@apollo/client/core/ApolloClient.d.ts", + "/node_modules/@apollo/client/core/index.d.ts", + "/node_modules/@apollo/client/react/types/types.d.ts", + "/node_modules/@apollo/client/react/ssr/RenderPromises.d.ts", + "/node_modules/@apollo/client/react/ssr/index.d.ts" + ] + }, + "node16-cjs": { + "name": "./react/ssr", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/@apollo/client/react/ssr/index.d.ts", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/@apollo/client/react/ssr/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/react/ssr' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/react/ssr' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/@apollo/client/react/ssr/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/react/ssr.ts' does not exist.", + "File '/node_modules/@apollo/client/react/ssr.tsx' does not exist.", + "File '/node_modules/@apollo/client/react/ssr.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/react/ssr/index.d.ts'.", + "File '/node_modules/@apollo/client/react/ssr/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/react/ssr' was successfully resolved to '/node_modules/@apollo/client/react/ssr/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/react/ssr/ssr.cjs", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "extension", + "reasonFileName": "/node_modules/@apollo/client/react/ssr/ssr.cjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/react/ssr' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/react/ssr' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/react/ssr/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/react/ssr.ts' does not exist.", + "File '/node_modules/@apollo/client/react/ssr.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'ssr.cjs' that references '/node_modules/@apollo/client/react/ssr/ssr.cjs'.", + "File '/node_modules/@apollo/client/react/ssr/ssr.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/react/ssr/ssr.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/ssr/ssr.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/react/ssr/ssr.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/react/ssr/ssr.cts' does not exist.", + "File '/node_modules/@apollo/client/react/ssr/ssr.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/react/ssr/ssr.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/react/ssr/ssr.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/react/ssr/index.ts' does not exist.", + "File '/node_modules/@apollo/client/react/ssr/index.tsx' does not exist.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/react/ssr/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/react/ssr.js' does not exist.", + "File '/node_modules/@apollo/client/react/ssr.jsx' does not exist.", + "'package.json' has 'main' field 'ssr.cjs' that references '/node_modules/@apollo/client/react/ssr/ssr.cjs'.", + "File '/node_modules/@apollo/client/react/ssr/ssr.cjs' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/react/ssr' was successfully resolved to '/node_modules/@apollo/client/react/ssr/ssr.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/react/ssr/index.d.ts" + ] + }, + "node16-esm": { + "name": "./react/ssr", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/@apollo/client/react/ssr/index.d.ts", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/@apollo/client/react/ssr/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/react/ssr' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/react/ssr' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/@apollo/client/react/ssr/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/react/ssr/index.d.ts'.", + "File '/node_modules/@apollo/client/react/ssr/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/react/ssr' was successfully resolved to '/node_modules/@apollo/client/react/ssr/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/react/ssr/ssr.cjs", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "extension", + "reasonFileName": "/node_modules/@apollo/client/react/ssr/ssr.cjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/react/ssr' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/react/ssr' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/react/ssr/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'ssr.cjs' that references '/node_modules/@apollo/client/react/ssr/ssr.cjs'.", + "File '/node_modules/@apollo/client/react/ssr/ssr.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/react/ssr/ssr.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/ssr/ssr.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/react/ssr/ssr.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/react/ssr/ssr.cts' does not exist.", + "Directory '/node_modules/@apollo/client/react/ssr/ssr.cjs' does not exist, skipping all lookups in it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/react/ssr/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'ssr.cjs' that references '/node_modules/@apollo/client/react/ssr/ssr.cjs'.", + "File '/node_modules/@apollo/client/react/ssr/ssr.cjs' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/react/ssr' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/react/ssr/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'ssr.cjs' that references '/node_modules/@apollo/client/react/ssr/ssr.cjs'.", + "File '/node_modules/@apollo/client/react/ssr/ssr.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/react/ssr/ssr.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/ssr/ssr.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/react/ssr/ssr.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/react/ssr/ssr.cts' does not exist.", + "Directory '/node_modules/@apollo/client/react/ssr/ssr.cjs' does not exist, skipping all lookups in it.", + "======== Module name '@apollo/client/react/ssr' was successfully resolved to '/node_modules/@apollo/client/react/ssr/ssr.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/react/ssr/index.d.ts" + ] + }, + "bundler": { + "name": "./react/ssr", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/@apollo/client/react/ssr/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/react/ssr' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/react/ssr' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/@apollo/client/react/ssr/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/react/ssr.ts' does not exist.", + "File '/node_modules/@apollo/client/react/ssr.tsx' does not exist.", + "File '/node_modules/@apollo/client/react/ssr.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/react/ssr/index.d.ts'.", + "File '/node_modules/@apollo/client/react/ssr/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/react/ssr' was successfully resolved to '/node_modules/@apollo/client/react/ssr/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/react/ssr/ssr.cjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/react/ssr' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/react/ssr' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/react/ssr/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/react/ssr.ts' does not exist.", + "File '/node_modules/@apollo/client/react/ssr.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'ssr.cjs' that references '/node_modules/@apollo/client/react/ssr/ssr.cjs'.", + "File '/node_modules/@apollo/client/react/ssr/ssr.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/react/ssr/ssr.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/ssr/ssr.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/react/ssr/ssr.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/react/ssr/ssr.cts' does not exist.", + "File '/node_modules/@apollo/client/react/ssr/ssr.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/react/ssr/ssr.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/react/ssr/ssr.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/react/ssr/index.ts' does not exist.", + "File '/node_modules/@apollo/client/react/ssr/index.tsx' does not exist.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/react/ssr/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/react/ssr.js' does not exist.", + "File '/node_modules/@apollo/client/react/ssr.jsx' does not exist.", + "'package.json' has 'main' field 'ssr.cjs' that references '/node_modules/@apollo/client/react/ssr/ssr.cjs'.", + "File '/node_modules/@apollo/client/react/ssr/ssr.cjs' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/react/ssr' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/react/ssr/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/react/ssr.ts' does not exist.", + "File '/node_modules/@apollo/client/react/ssr.tsx' does not exist.", + "'package.json' has 'main' field 'ssr.cjs' that references '/node_modules/@apollo/client/react/ssr/ssr.cjs'.", + "File '/node_modules/@apollo/client/react/ssr/ssr.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/react/ssr/ssr.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/ssr/ssr.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/react/ssr/ssr.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/react/ssr/ssr.cts' does not exist.", + "File '/node_modules/@apollo/client/react/ssr/ssr.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/react/ssr/ssr.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/react/ssr/ssr.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/react/ssr/index.ts' does not exist.", + "File '/node_modules/@apollo/client/react/ssr/index.tsx' does not exist.", + "======== Module name '@apollo/client/react/ssr' was successfully resolved to '/node_modules/@apollo/client/react/ssr/ssr.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/react/ssr/getDataFromTree.d.ts", + "/node_modules/@apollo/client/react/ssr/renderToStringWithData.d.ts", + "/node_modules/@apollo/client/utilities/globals/DEV.d.ts", + "/node_modules/@apollo/client/utilities/globals/maybe.d.ts", + "/node_modules/@apollo/client/utilities/globals/global.d.ts", + "/node_modules/@apollo/client/utilities/globals/index.d.ts", + "/node_modules/@apollo/client/utilities/graphql/directives.d.ts", + "/node_modules/@apollo/client/utilities/graphql/fragments.d.ts", + "/node_modules/@apollo/client/utilities/graphql/getFromAST.d.ts", + "/node_modules/@apollo/client/utilities/graphql/storeUtils.d.ts", + "/node_modules/@apollo/client/utilities/graphql/transform.d.ts", + "/node_modules/@apollo/client/cache/core/types/Cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/entityStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fragmentRegistry.d.ts", + "/node_modules/@apollo/client/cache/inmemory/types.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fixPolyfills.d.ts", + "/node_modules/@apollo/client/cache/inmemory/reactiveVars.d.ts", + "/node_modules/@apollo/client/cache/inmemory/inMemoryCache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/object-canon.d.ts", + "/node_modules/@apollo/client/cache/inmemory/readFromStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/writeToStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/policies.d.ts", + "/node_modules/@apollo/client/cache/core/types/common.d.ts", + "/node_modules/@apollo/client/cache/core/types/DataProxy.d.ts", + "/node_modules/@apollo/client/cache/core/cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/helpers.d.ts", + "/node_modules/@apollo/client/cache/index.d.ts", + "/node_modules/@apollo/client/utilities/policies/pagination.d.ts", + "/node_modules/@apollo/client/utilities/observables/Observable.d.ts", + "/node_modules/@apollo/client/utilities/common/objects.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/cloneDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/maybeDeepFreeze.d.ts", + "/node_modules/@apollo/client/utilities/observables/iteration.d.ts", + "/node_modules/@apollo/client/utilities/observables/asyncMap.d.ts", + "/node_modules/@apollo/client/utilities/observables/Concast.d.ts", + "/node_modules/@apollo/client/utilities/observables/subclassing.d.ts", + "/node_modules/@apollo/client/utilities/common/arrays.d.ts", + "/node_modules/@apollo/client/utilities/common/errorHandling.d.ts", + "/node_modules/@apollo/client/utilities/common/canUse.d.ts", + "/node_modules/@apollo/client/utilities/common/compact.d.ts", + "/node_modules/@apollo/client/utilities/common/makeUniqueId.d.ts", + "/node_modules/@apollo/client/utilities/common/stringifyForDisplay.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeOptions.d.ts", + "/node_modules/@apollo/client/utilities/types/IsStrictlyAny.d.ts", + "/node_modules/@apollo/client/utilities/index.d.ts", + "/node_modules/@apollo/client/link/core/types.d.ts", + "/node_modules/@apollo/client/link/core/ApolloLink.d.ts", + "/node_modules/@apollo/client/link/core/empty.d.ts", + "/node_modules/@apollo/client/link/core/from.d.ts", + "/node_modules/@apollo/client/link/core/split.d.ts", + "/node_modules/@apollo/client/link/core/concat.d.ts", + "/node_modules/@apollo/client/link/core/execute.d.ts", + "/node_modules/@apollo/client/link/core/index.d.ts", + "/node_modules/@apollo/client/link/http/parseAndCheckHttpResponse.d.ts", + "/node_modules/@apollo/client/link/http/serializeFetchParameter.d.ts", + "/node_modules/@apollo/client/link/http/selectHttpOptionsAndBody.d.ts", + "/node_modules/@apollo/client/link/http/checkFetcher.d.ts", + "/node_modules/@apollo/client/link/http/createSignalIfSupported.d.ts", + "/node_modules/@apollo/client/link/http/selectURI.d.ts", + "/node_modules/@apollo/client/link/http/createHttpLink.d.ts", + "/node_modules/@apollo/client/link/http/HttpLink.d.ts", + "/node_modules/@apollo/client/link/http/rewriteURIForGET.d.ts", + "/node_modules/@apollo/client/link/http/index.d.ts", + "/node_modules/@apollo/client/core/networkStatus.d.ts", + "/node_modules/@apollo/client/link/utils/fromError.d.ts", + "/node_modules/@apollo/client/link/utils/toPromise.d.ts", + "/node_modules/@apollo/client/link/utils/fromPromise.d.ts", + "/node_modules/@apollo/client/link/utils/throwServerError.d.ts", + "/node_modules/@apollo/client/link/utils/validateOperation.d.ts", + "/node_modules/@apollo/client/link/utils/createOperation.d.ts", + "/node_modules/@apollo/client/link/utils/transformOperation.d.ts", + "/node_modules/@apollo/client/link/utils/index.d.ts", + "/node_modules/@apollo/client/errors/index.d.ts", + "/node_modules/@apollo/client/core/QueryInfo.d.ts", + "/node_modules/@apollo/client/core/LocalState.d.ts", + "/node_modules/@apollo/client/core/types.d.ts", + "/node_modules/@apollo/client/core/watchQueryOptions.d.ts", + "/node_modules/@apollo/client/core/QueryManager.d.ts", + "/node_modules/@apollo/client/core/ObservableQuery.d.ts", + "/node_modules/@apollo/client/core/ApolloClient.d.ts", + "/node_modules/@apollo/client/core/index.d.ts", + "/node_modules/@apollo/client/react/types/types.d.ts", + "/node_modules/@apollo/client/react/ssr/RenderPromises.d.ts", + "/node_modules/@apollo/client/react/ssr/index.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + }, + "./testing": { + "subpath": "./testing", + "resolutions": { + "node10": { + "name": "./testing", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/@apollo/client/testing/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/testing' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module '@apollo/client/testing' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/@apollo/client/testing/package.json'.", + "File '/node_modules/@apollo/client/testing.ts' does not exist.", + "File '/node_modules/@apollo/client/testing.tsx' does not exist.", + "File '/node_modules/@apollo/client/testing.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/testing/index.d.ts'.", + "File '/node_modules/@apollo/client/testing/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/testing' was successfully resolved to '/node_modules/@apollo/client/testing/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/testing/testing.cjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/testing' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module '@apollo/client/testing' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/testing/package.json'.", + "File '/node_modules/@apollo/client/testing.ts' does not exist.", + "File '/node_modules/@apollo/client/testing.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'testing.cjs' that references '/node_modules/@apollo/client/testing/testing.cjs'.", + "File '/node_modules/@apollo/client/testing/testing.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/testing/testing.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/testing/testing.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/testing/testing.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/testing/testing.cts' does not exist.", + "File '/node_modules/@apollo/client/testing/testing.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/testing/testing.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/testing/testing.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/testing/index.ts' does not exist.", + "File '/node_modules/@apollo/client/testing/index.tsx' does not exist.", + "Loading module '@apollo/client/testing' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/testing/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/testing.js' does not exist.", + "File '/node_modules/@apollo/client/testing.jsx' does not exist.", + "'package.json' has 'main' field 'testing.cjs' that references '/node_modules/@apollo/client/testing/testing.cjs'.", + "File '/node_modules/@apollo/client/testing/testing.cjs' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/testing' was successfully resolved to '/node_modules/@apollo/client/testing/testing.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/utilities/globals/DEV.d.ts", + "/node_modules/@apollo/client/utilities/globals/maybe.d.ts", + "/node_modules/@apollo/client/utilities/globals/global.d.ts", + "/node_modules/@apollo/client/utilities/globals/index.d.ts", + "/node_modules/@apollo/client/utilities/graphql/directives.d.ts", + "/node_modules/@apollo/client/utilities/graphql/fragments.d.ts", + "/node_modules/@apollo/client/utilities/graphql/getFromAST.d.ts", + "/node_modules/@apollo/client/utilities/graphql/storeUtils.d.ts", + "/node_modules/@apollo/client/utilities/graphql/transform.d.ts", + "/node_modules/@apollo/client/cache/core/types/Cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/entityStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fragmentRegistry.d.ts", + "/node_modules/@apollo/client/cache/inmemory/types.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fixPolyfills.d.ts", + "/node_modules/@apollo/client/cache/inmemory/reactiveVars.d.ts", + "/node_modules/@apollo/client/cache/inmemory/inMemoryCache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/object-canon.d.ts", + "/node_modules/@apollo/client/cache/inmemory/readFromStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/writeToStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/policies.d.ts", + "/node_modules/@apollo/client/cache/core/types/common.d.ts", + "/node_modules/@apollo/client/cache/core/types/DataProxy.d.ts", + "/node_modules/@apollo/client/cache/core/cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/helpers.d.ts", + "/node_modules/@apollo/client/cache/index.d.ts", + "/node_modules/@apollo/client/utilities/policies/pagination.d.ts", + "/node_modules/@apollo/client/utilities/observables/Observable.d.ts", + "/node_modules/@apollo/client/utilities/common/objects.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/cloneDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/maybeDeepFreeze.d.ts", + "/node_modules/@apollo/client/utilities/observables/iteration.d.ts", + "/node_modules/@apollo/client/utilities/observables/asyncMap.d.ts", + "/node_modules/@apollo/client/utilities/observables/Concast.d.ts", + "/node_modules/@apollo/client/utilities/observables/subclassing.d.ts", + "/node_modules/@apollo/client/utilities/common/arrays.d.ts", + "/node_modules/@apollo/client/utilities/common/errorHandling.d.ts", + "/node_modules/@apollo/client/utilities/common/canUse.d.ts", + "/node_modules/@apollo/client/utilities/common/compact.d.ts", + "/node_modules/@apollo/client/utilities/common/makeUniqueId.d.ts", + "/node_modules/@apollo/client/utilities/common/stringifyForDisplay.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeOptions.d.ts", + "/node_modules/@apollo/client/utilities/types/IsStrictlyAny.d.ts", + "/node_modules/@apollo/client/utilities/index.d.ts", + "/node_modules/@apollo/client/link/core/types.d.ts", + "/node_modules/@apollo/client/link/core/ApolloLink.d.ts", + "/node_modules/@apollo/client/link/core/empty.d.ts", + "/node_modules/@apollo/client/link/core/from.d.ts", + "/node_modules/@apollo/client/link/core/split.d.ts", + "/node_modules/@apollo/client/link/core/concat.d.ts", + "/node_modules/@apollo/client/link/core/execute.d.ts", + "/node_modules/@apollo/client/link/core/index.d.ts", + "/node_modules/@apollo/client/link/http/parseAndCheckHttpResponse.d.ts", + "/node_modules/@apollo/client/link/http/serializeFetchParameter.d.ts", + "/node_modules/@apollo/client/link/http/selectHttpOptionsAndBody.d.ts", + "/node_modules/@apollo/client/link/http/checkFetcher.d.ts", + "/node_modules/@apollo/client/link/http/createSignalIfSupported.d.ts", + "/node_modules/@apollo/client/link/http/selectURI.d.ts", + "/node_modules/@apollo/client/link/http/createHttpLink.d.ts", + "/node_modules/@apollo/client/link/http/HttpLink.d.ts", + "/node_modules/@apollo/client/link/http/rewriteURIForGET.d.ts", + "/node_modules/@apollo/client/link/http/index.d.ts", + "/node_modules/@apollo/client/core/networkStatus.d.ts", + "/node_modules/@apollo/client/link/utils/fromError.d.ts", + "/node_modules/@apollo/client/link/utils/toPromise.d.ts", + "/node_modules/@apollo/client/link/utils/fromPromise.d.ts", + "/node_modules/@apollo/client/link/utils/throwServerError.d.ts", + "/node_modules/@apollo/client/link/utils/validateOperation.d.ts", + "/node_modules/@apollo/client/link/utils/createOperation.d.ts", + "/node_modules/@apollo/client/link/utils/transformOperation.d.ts", + "/node_modules/@apollo/client/link/utils/index.d.ts", + "/node_modules/@apollo/client/errors/index.d.ts", + "/node_modules/@apollo/client/core/QueryInfo.d.ts", + "/node_modules/@apollo/client/core/LocalState.d.ts", + "/node_modules/@apollo/client/core/types.d.ts", + "/node_modules/@apollo/client/core/watchQueryOptions.d.ts", + "/node_modules/@apollo/client/core/QueryManager.d.ts", + "/node_modules/@apollo/client/core/ObservableQuery.d.ts", + "/node_modules/@apollo/client/core/ApolloClient.d.ts", + "/node_modules/@apollo/client/core/index.d.ts", + "/node_modules/@apollo/client/testing/core/mocking/mockLink.d.ts", + "/node_modules/@apollo/client/testing/core/mocking/mockSubscriptionLink.d.ts", + "/node_modules/@apollo/client/testing/core/mocking/mockClient.d.ts", + "/node_modules/@apollo/client/testing/core/subscribeAndCount.d.ts", + "/node_modules/@apollo/client/testing/core/itAsync.d.ts", + "/node_modules/@apollo/client/testing/core/wait.d.ts", + "/node_modules/@apollo/client/testing/core/withConsoleSpy.d.ts", + "/node_modules/@apollo/client/testing/core/index.d.ts", + "/node_modules/@apollo/client/testing/react/MockedProvider.d.ts", + "/node_modules/@apollo/client/testing/index.d.ts" + ] + }, + "node16-cjs": { + "name": "./testing", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/@apollo/client/testing/index.d.ts", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/@apollo/client/testing/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/testing' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/testing' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/@apollo/client/testing/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/testing.ts' does not exist.", + "File '/node_modules/@apollo/client/testing.tsx' does not exist.", + "File '/node_modules/@apollo/client/testing.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/testing/index.d.ts'.", + "File '/node_modules/@apollo/client/testing/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/testing' was successfully resolved to '/node_modules/@apollo/client/testing/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/testing/testing.cjs", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "extension", + "reasonFileName": "/node_modules/@apollo/client/testing/testing.cjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/testing' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/testing' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/testing/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/testing.ts' does not exist.", + "File '/node_modules/@apollo/client/testing.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'testing.cjs' that references '/node_modules/@apollo/client/testing/testing.cjs'.", + "File '/node_modules/@apollo/client/testing/testing.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/testing/testing.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/testing/testing.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/testing/testing.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/testing/testing.cts' does not exist.", + "File '/node_modules/@apollo/client/testing/testing.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/testing/testing.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/testing/testing.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/testing/index.ts' does not exist.", + "File '/node_modules/@apollo/client/testing/index.tsx' does not exist.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/testing/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/testing.js' does not exist.", + "File '/node_modules/@apollo/client/testing.jsx' does not exist.", + "'package.json' has 'main' field 'testing.cjs' that references '/node_modules/@apollo/client/testing/testing.cjs'.", + "File '/node_modules/@apollo/client/testing/testing.cjs' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/testing' was successfully resolved to '/node_modules/@apollo/client/testing/testing.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/testing/index.d.ts" + ] + }, + "node16-esm": { + "name": "./testing", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/@apollo/client/testing/index.d.ts", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/@apollo/client/testing/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/testing' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/testing' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/@apollo/client/testing/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/testing/index.d.ts'.", + "File '/node_modules/@apollo/client/testing/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/testing' was successfully resolved to '/node_modules/@apollo/client/testing/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/testing/testing.cjs", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "extension", + "reasonFileName": "/node_modules/@apollo/client/testing/testing.cjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/testing' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/testing' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/testing/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'testing.cjs' that references '/node_modules/@apollo/client/testing/testing.cjs'.", + "File '/node_modules/@apollo/client/testing/testing.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/testing/testing.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/testing/testing.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/testing/testing.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/testing/testing.cts' does not exist.", + "Directory '/node_modules/@apollo/client/testing/testing.cjs' does not exist, skipping all lookups in it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/testing/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'testing.cjs' that references '/node_modules/@apollo/client/testing/testing.cjs'.", + "File '/node_modules/@apollo/client/testing/testing.cjs' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/testing' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/testing/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'testing.cjs' that references '/node_modules/@apollo/client/testing/testing.cjs'.", + "File '/node_modules/@apollo/client/testing/testing.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/testing/testing.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/testing/testing.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/testing/testing.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/testing/testing.cts' does not exist.", + "Directory '/node_modules/@apollo/client/testing/testing.cjs' does not exist, skipping all lookups in it.", + "======== Module name '@apollo/client/testing' was successfully resolved to '/node_modules/@apollo/client/testing/testing.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/testing/index.d.ts" + ] + }, + "bundler": { + "name": "./testing", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/@apollo/client/testing/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/testing' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/testing' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/@apollo/client/testing/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/testing.ts' does not exist.", + "File '/node_modules/@apollo/client/testing.tsx' does not exist.", + "File '/node_modules/@apollo/client/testing.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/testing/index.d.ts'.", + "File '/node_modules/@apollo/client/testing/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/testing' was successfully resolved to '/node_modules/@apollo/client/testing/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/testing/testing.cjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/testing' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/testing' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/testing/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/testing.ts' does not exist.", + "File '/node_modules/@apollo/client/testing.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'testing.cjs' that references '/node_modules/@apollo/client/testing/testing.cjs'.", + "File '/node_modules/@apollo/client/testing/testing.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/testing/testing.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/testing/testing.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/testing/testing.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/testing/testing.cts' does not exist.", + "File '/node_modules/@apollo/client/testing/testing.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/testing/testing.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/testing/testing.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/testing/index.ts' does not exist.", + "File '/node_modules/@apollo/client/testing/index.tsx' does not exist.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/testing/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/testing.js' does not exist.", + "File '/node_modules/@apollo/client/testing.jsx' does not exist.", + "'package.json' has 'main' field 'testing.cjs' that references '/node_modules/@apollo/client/testing/testing.cjs'.", + "File '/node_modules/@apollo/client/testing/testing.cjs' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/testing' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/testing/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/testing.ts' does not exist.", + "File '/node_modules/@apollo/client/testing.tsx' does not exist.", + "'package.json' has 'main' field 'testing.cjs' that references '/node_modules/@apollo/client/testing/testing.cjs'.", + "File '/node_modules/@apollo/client/testing/testing.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/testing/testing.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/testing/testing.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/testing/testing.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/testing/testing.cts' does not exist.", + "File '/node_modules/@apollo/client/testing/testing.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/testing/testing.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/testing/testing.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/testing/index.ts' does not exist.", + "File '/node_modules/@apollo/client/testing/index.tsx' does not exist.", + "======== Module name '@apollo/client/testing' was successfully resolved to '/node_modules/@apollo/client/testing/testing.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/utilities/globals/DEV.d.ts", + "/node_modules/@apollo/client/utilities/globals/maybe.d.ts", + "/node_modules/@apollo/client/utilities/globals/global.d.ts", + "/node_modules/@apollo/client/utilities/globals/index.d.ts", + "/node_modules/@apollo/client/utilities/graphql/directives.d.ts", + "/node_modules/@apollo/client/utilities/graphql/fragments.d.ts", + "/node_modules/@apollo/client/utilities/graphql/getFromAST.d.ts", + "/node_modules/@apollo/client/utilities/graphql/storeUtils.d.ts", + "/node_modules/@apollo/client/utilities/graphql/transform.d.ts", + "/node_modules/@apollo/client/cache/core/types/Cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/entityStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fragmentRegistry.d.ts", + "/node_modules/@apollo/client/cache/inmemory/types.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fixPolyfills.d.ts", + "/node_modules/@apollo/client/cache/inmemory/reactiveVars.d.ts", + "/node_modules/@apollo/client/cache/inmemory/inMemoryCache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/object-canon.d.ts", + "/node_modules/@apollo/client/cache/inmemory/readFromStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/writeToStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/policies.d.ts", + "/node_modules/@apollo/client/cache/core/types/common.d.ts", + "/node_modules/@apollo/client/cache/core/types/DataProxy.d.ts", + "/node_modules/@apollo/client/cache/core/cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/helpers.d.ts", + "/node_modules/@apollo/client/cache/index.d.ts", + "/node_modules/@apollo/client/utilities/policies/pagination.d.ts", + "/node_modules/@apollo/client/utilities/observables/Observable.d.ts", + "/node_modules/@apollo/client/utilities/common/objects.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/cloneDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/maybeDeepFreeze.d.ts", + "/node_modules/@apollo/client/utilities/observables/iteration.d.ts", + "/node_modules/@apollo/client/utilities/observables/asyncMap.d.ts", + "/node_modules/@apollo/client/utilities/observables/Concast.d.ts", + "/node_modules/@apollo/client/utilities/observables/subclassing.d.ts", + "/node_modules/@apollo/client/utilities/common/arrays.d.ts", + "/node_modules/@apollo/client/utilities/common/errorHandling.d.ts", + "/node_modules/@apollo/client/utilities/common/canUse.d.ts", + "/node_modules/@apollo/client/utilities/common/compact.d.ts", + "/node_modules/@apollo/client/utilities/common/makeUniqueId.d.ts", + "/node_modules/@apollo/client/utilities/common/stringifyForDisplay.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeOptions.d.ts", + "/node_modules/@apollo/client/utilities/types/IsStrictlyAny.d.ts", + "/node_modules/@apollo/client/utilities/index.d.ts", + "/node_modules/@apollo/client/link/core/types.d.ts", + "/node_modules/@apollo/client/link/core/ApolloLink.d.ts", + "/node_modules/@apollo/client/link/core/empty.d.ts", + "/node_modules/@apollo/client/link/core/from.d.ts", + "/node_modules/@apollo/client/link/core/split.d.ts", + "/node_modules/@apollo/client/link/core/concat.d.ts", + "/node_modules/@apollo/client/link/core/execute.d.ts", + "/node_modules/@apollo/client/link/core/index.d.ts", + "/node_modules/@apollo/client/link/http/parseAndCheckHttpResponse.d.ts", + "/node_modules/@apollo/client/link/http/serializeFetchParameter.d.ts", + "/node_modules/@apollo/client/link/http/selectHttpOptionsAndBody.d.ts", + "/node_modules/@apollo/client/link/http/checkFetcher.d.ts", + "/node_modules/@apollo/client/link/http/createSignalIfSupported.d.ts", + "/node_modules/@apollo/client/link/http/selectURI.d.ts", + "/node_modules/@apollo/client/link/http/createHttpLink.d.ts", + "/node_modules/@apollo/client/link/http/HttpLink.d.ts", + "/node_modules/@apollo/client/link/http/rewriteURIForGET.d.ts", + "/node_modules/@apollo/client/link/http/index.d.ts", + "/node_modules/@apollo/client/core/networkStatus.d.ts", + "/node_modules/@apollo/client/link/utils/fromError.d.ts", + "/node_modules/@apollo/client/link/utils/toPromise.d.ts", + "/node_modules/@apollo/client/link/utils/fromPromise.d.ts", + "/node_modules/@apollo/client/link/utils/throwServerError.d.ts", + "/node_modules/@apollo/client/link/utils/validateOperation.d.ts", + "/node_modules/@apollo/client/link/utils/createOperation.d.ts", + "/node_modules/@apollo/client/link/utils/transformOperation.d.ts", + "/node_modules/@apollo/client/link/utils/index.d.ts", + "/node_modules/@apollo/client/errors/index.d.ts", + "/node_modules/@apollo/client/core/QueryInfo.d.ts", + "/node_modules/@apollo/client/core/LocalState.d.ts", + "/node_modules/@apollo/client/core/types.d.ts", + "/node_modules/@apollo/client/core/watchQueryOptions.d.ts", + "/node_modules/@apollo/client/core/QueryManager.d.ts", + "/node_modules/@apollo/client/core/ObservableQuery.d.ts", + "/node_modules/@apollo/client/core/ApolloClient.d.ts", + "/node_modules/@apollo/client/core/index.d.ts", + "/node_modules/@apollo/client/testing/core/mocking/mockLink.d.ts", + "/node_modules/@apollo/client/testing/core/mocking/mockSubscriptionLink.d.ts", + "/node_modules/@apollo/client/testing/core/mocking/mockClient.d.ts", + "/node_modules/@apollo/client/testing/core/subscribeAndCount.d.ts", + "/node_modules/@apollo/client/testing/core/itAsync.d.ts", + "/node_modules/@apollo/client/testing/core/wait.d.ts", + "/node_modules/@apollo/client/testing/core/withConsoleSpy.d.ts", + "/node_modules/@apollo/client/testing/core/index.d.ts", + "/node_modules/@apollo/client/testing/react/MockedProvider.d.ts", + "/node_modules/@apollo/client/testing/index.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + }, + "./testing/core": { + "subpath": "./testing/core", + "resolutions": { + "node10": { + "name": "./testing/core", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/@apollo/client/testing/core/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/testing/core' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module '@apollo/client/testing/core' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/@apollo/client/testing/core/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/testing/core.ts' does not exist.", + "File '/node_modules/@apollo/client/testing/core.tsx' does not exist.", + "File '/node_modules/@apollo/client/testing/core.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/testing/core/index.d.ts'.", + "File '/node_modules/@apollo/client/testing/core/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/testing/core' was successfully resolved to '/node_modules/@apollo/client/testing/core/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/testing/core/core.cjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/testing/core' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module '@apollo/client/testing/core' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/testing/core/package.json'.", + "File '/node_modules/@apollo/client/testing/core.ts' does not exist.", + "File '/node_modules/@apollo/client/testing/core.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'core.cjs' that references '/node_modules/@apollo/client/testing/core/core.cjs'.", + "File '/node_modules/@apollo/client/testing/core/core.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/testing/core/core.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/testing/core/core.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/testing/core/core.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/testing/core/core.cts' does not exist.", + "File '/node_modules/@apollo/client/testing/core/core.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/testing/core/core.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/testing/core/core.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/testing/core/index.ts' does not exist.", + "File '/node_modules/@apollo/client/testing/core/index.tsx' does not exist.", + "Loading module '@apollo/client/testing/core' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/testing/core/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/testing/core.js' does not exist.", + "File '/node_modules/@apollo/client/testing/core.jsx' does not exist.", + "'package.json' has 'main' field 'core.cjs' that references '/node_modules/@apollo/client/testing/core/core.cjs'.", + "File '/node_modules/@apollo/client/testing/core/core.cjs' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/testing/core' was successfully resolved to '/node_modules/@apollo/client/testing/core/core.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/utilities/globals/DEV.d.ts", + "/node_modules/@apollo/client/utilities/globals/maybe.d.ts", + "/node_modules/@apollo/client/utilities/globals/global.d.ts", + "/node_modules/@apollo/client/utilities/globals/index.d.ts", + "/node_modules/@apollo/client/utilities/graphql/directives.d.ts", + "/node_modules/@apollo/client/utilities/graphql/fragments.d.ts", + "/node_modules/@apollo/client/utilities/graphql/getFromAST.d.ts", + "/node_modules/@apollo/client/utilities/graphql/storeUtils.d.ts", + "/node_modules/@apollo/client/utilities/graphql/transform.d.ts", + "/node_modules/@apollo/client/cache/core/types/Cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/entityStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fragmentRegistry.d.ts", + "/node_modules/@apollo/client/cache/inmemory/types.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fixPolyfills.d.ts", + "/node_modules/@apollo/client/link/http/parseAndCheckHttpResponse.d.ts", + "/node_modules/@apollo/client/link/http/serializeFetchParameter.d.ts", + "/node_modules/@apollo/client/link/http/selectHttpOptionsAndBody.d.ts", + "/node_modules/@apollo/client/link/http/checkFetcher.d.ts", + "/node_modules/@apollo/client/link/http/createSignalIfSupported.d.ts", + "/node_modules/@apollo/client/link/http/selectURI.d.ts", + "/node_modules/@apollo/client/link/http/createHttpLink.d.ts", + "/node_modules/@apollo/client/link/http/HttpLink.d.ts", + "/node_modules/@apollo/client/link/http/rewriteURIForGET.d.ts", + "/node_modules/@apollo/client/link/http/index.d.ts", + "/node_modules/@apollo/client/core/networkStatus.d.ts", + "/node_modules/@apollo/client/link/utils/fromError.d.ts", + "/node_modules/@apollo/client/link/utils/toPromise.d.ts", + "/node_modules/@apollo/client/link/utils/fromPromise.d.ts", + "/node_modules/@apollo/client/link/utils/throwServerError.d.ts", + "/node_modules/@apollo/client/link/utils/validateOperation.d.ts", + "/node_modules/@apollo/client/link/utils/createOperation.d.ts", + "/node_modules/@apollo/client/link/utils/transformOperation.d.ts", + "/node_modules/@apollo/client/link/utils/index.d.ts", + "/node_modules/@apollo/client/errors/index.d.ts", + "/node_modules/@apollo/client/core/QueryInfo.d.ts", + "/node_modules/@apollo/client/core/LocalState.d.ts", + "/node_modules/@apollo/client/core/types.d.ts", + "/node_modules/@apollo/client/core/watchQueryOptions.d.ts", + "/node_modules/@apollo/client/core/QueryManager.d.ts", + "/node_modules/@apollo/client/core/ObservableQuery.d.ts", + "/node_modules/@apollo/client/core/ApolloClient.d.ts", + "/node_modules/@apollo/client/core/index.d.ts", + "/node_modules/@apollo/client/cache/inmemory/reactiveVars.d.ts", + "/node_modules/@apollo/client/cache/inmemory/inMemoryCache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/object-canon.d.ts", + "/node_modules/@apollo/client/cache/inmemory/readFromStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/writeToStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/policies.d.ts", + "/node_modules/@apollo/client/cache/core/types/common.d.ts", + "/node_modules/@apollo/client/cache/core/types/DataProxy.d.ts", + "/node_modules/@apollo/client/cache/core/cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/helpers.d.ts", + "/node_modules/@apollo/client/cache/index.d.ts", + "/node_modules/@apollo/client/utilities/policies/pagination.d.ts", + "/node_modules/@apollo/client/utilities/observables/Observable.d.ts", + "/node_modules/@apollo/client/utilities/common/objects.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/cloneDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/maybeDeepFreeze.d.ts", + "/node_modules/@apollo/client/utilities/observables/iteration.d.ts", + "/node_modules/@apollo/client/utilities/observables/asyncMap.d.ts", + "/node_modules/@apollo/client/utilities/observables/Concast.d.ts", + "/node_modules/@apollo/client/utilities/observables/subclassing.d.ts", + "/node_modules/@apollo/client/utilities/common/arrays.d.ts", + "/node_modules/@apollo/client/utilities/common/errorHandling.d.ts", + "/node_modules/@apollo/client/utilities/common/canUse.d.ts", + "/node_modules/@apollo/client/utilities/common/compact.d.ts", + "/node_modules/@apollo/client/utilities/common/makeUniqueId.d.ts", + "/node_modules/@apollo/client/utilities/common/stringifyForDisplay.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeOptions.d.ts", + "/node_modules/@apollo/client/utilities/types/IsStrictlyAny.d.ts", + "/node_modules/@apollo/client/utilities/index.d.ts", + "/node_modules/@apollo/client/link/core/types.d.ts", + "/node_modules/@apollo/client/link/core/ApolloLink.d.ts", + "/node_modules/@apollo/client/link/core/empty.d.ts", + "/node_modules/@apollo/client/link/core/from.d.ts", + "/node_modules/@apollo/client/link/core/split.d.ts", + "/node_modules/@apollo/client/link/core/concat.d.ts", + "/node_modules/@apollo/client/link/core/execute.d.ts", + "/node_modules/@apollo/client/link/core/index.d.ts", + "/node_modules/@apollo/client/testing/core/mocking/mockLink.d.ts", + "/node_modules/@apollo/client/testing/core/mocking/mockSubscriptionLink.d.ts", + "/node_modules/@apollo/client/testing/core/mocking/mockClient.d.ts", + "/node_modules/@apollo/client/testing/core/subscribeAndCount.d.ts", + "/node_modules/@apollo/client/testing/core/itAsync.d.ts", + "/node_modules/@apollo/client/testing/core/wait.d.ts", + "/node_modules/@apollo/client/testing/core/withConsoleSpy.d.ts", + "/node_modules/@apollo/client/testing/core/index.d.ts" + ] + }, + "node16-cjs": { + "name": "./testing/core", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/@apollo/client/testing/core/index.d.ts", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/@apollo/client/testing/core/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/testing/core' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/testing/core' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/@apollo/client/testing/core/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/testing/core.ts' does not exist.", + "File '/node_modules/@apollo/client/testing/core.tsx' does not exist.", + "File '/node_modules/@apollo/client/testing/core.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/testing/core/index.d.ts'.", + "File '/node_modules/@apollo/client/testing/core/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/testing/core' was successfully resolved to '/node_modules/@apollo/client/testing/core/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/testing/core/core.cjs", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "extension", + "reasonFileName": "/node_modules/@apollo/client/testing/core/core.cjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/testing/core' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/testing/core' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/testing/core/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/testing/core.ts' does not exist.", + "File '/node_modules/@apollo/client/testing/core.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'core.cjs' that references '/node_modules/@apollo/client/testing/core/core.cjs'.", + "File '/node_modules/@apollo/client/testing/core/core.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/testing/core/core.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/testing/core/core.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/testing/core/core.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/testing/core/core.cts' does not exist.", + "File '/node_modules/@apollo/client/testing/core/core.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/testing/core/core.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/testing/core/core.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/testing/core/index.ts' does not exist.", + "File '/node_modules/@apollo/client/testing/core/index.tsx' does not exist.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/testing/core/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/testing/core.js' does not exist.", + "File '/node_modules/@apollo/client/testing/core.jsx' does not exist.", + "'package.json' has 'main' field 'core.cjs' that references '/node_modules/@apollo/client/testing/core/core.cjs'.", + "File '/node_modules/@apollo/client/testing/core/core.cjs' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/testing/core' was successfully resolved to '/node_modules/@apollo/client/testing/core/core.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/testing/core/index.d.ts" + ] + }, + "node16-esm": { + "name": "./testing/core", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/@apollo/client/testing/core/index.d.ts", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/@apollo/client/testing/core/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/testing/core' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/testing/core' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/@apollo/client/testing/core/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/testing/core/index.d.ts'.", + "File '/node_modules/@apollo/client/testing/core/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/testing/core' was successfully resolved to '/node_modules/@apollo/client/testing/core/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/testing/core/core.cjs", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "extension", + "reasonFileName": "/node_modules/@apollo/client/testing/core/core.cjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/testing/core' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/testing/core' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/testing/core/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'core.cjs' that references '/node_modules/@apollo/client/testing/core/core.cjs'.", + "File '/node_modules/@apollo/client/testing/core/core.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/testing/core/core.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/testing/core/core.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/testing/core/core.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/testing/core/core.cts' does not exist.", + "Directory '/node_modules/@apollo/client/testing/core/core.cjs' does not exist, skipping all lookups in it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/testing/core/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'core.cjs' that references '/node_modules/@apollo/client/testing/core/core.cjs'.", + "File '/node_modules/@apollo/client/testing/core/core.cjs' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/testing/core' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/testing/core/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'core.cjs' that references '/node_modules/@apollo/client/testing/core/core.cjs'.", + "File '/node_modules/@apollo/client/testing/core/core.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/testing/core/core.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/testing/core/core.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/testing/core/core.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/testing/core/core.cts' does not exist.", + "Directory '/node_modules/@apollo/client/testing/core/core.cjs' does not exist, skipping all lookups in it.", + "======== Module name '@apollo/client/testing/core' was successfully resolved to '/node_modules/@apollo/client/testing/core/core.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/testing/core/index.d.ts" + ] + }, + "bundler": { + "name": "./testing/core", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/@apollo/client/testing/core/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/testing/core' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/testing/core' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/@apollo/client/testing/core/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/testing/core.ts' does not exist.", + "File '/node_modules/@apollo/client/testing/core.tsx' does not exist.", + "File '/node_modules/@apollo/client/testing/core.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/testing/core/index.d.ts'.", + "File '/node_modules/@apollo/client/testing/core/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/testing/core' was successfully resolved to '/node_modules/@apollo/client/testing/core/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/testing/core/core.cjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/testing/core' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/testing/core' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/testing/core/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/testing/core.ts' does not exist.", + "File '/node_modules/@apollo/client/testing/core.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'core.cjs' that references '/node_modules/@apollo/client/testing/core/core.cjs'.", + "File '/node_modules/@apollo/client/testing/core/core.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/testing/core/core.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/testing/core/core.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/testing/core/core.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/testing/core/core.cts' does not exist.", + "File '/node_modules/@apollo/client/testing/core/core.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/testing/core/core.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/testing/core/core.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/testing/core/index.ts' does not exist.", + "File '/node_modules/@apollo/client/testing/core/index.tsx' does not exist.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/testing/core/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/testing/core.js' does not exist.", + "File '/node_modules/@apollo/client/testing/core.jsx' does not exist.", + "'package.json' has 'main' field 'core.cjs' that references '/node_modules/@apollo/client/testing/core/core.cjs'.", + "File '/node_modules/@apollo/client/testing/core/core.cjs' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/testing/core' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/testing/core/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/testing/core.ts' does not exist.", + "File '/node_modules/@apollo/client/testing/core.tsx' does not exist.", + "'package.json' has 'main' field 'core.cjs' that references '/node_modules/@apollo/client/testing/core/core.cjs'.", + "File '/node_modules/@apollo/client/testing/core/core.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/testing/core/core.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/testing/core/core.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/testing/core/core.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/testing/core/core.cts' does not exist.", + "File '/node_modules/@apollo/client/testing/core/core.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/testing/core/core.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/testing/core/core.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/testing/core/index.ts' does not exist.", + "File '/node_modules/@apollo/client/testing/core/index.tsx' does not exist.", + "======== Module name '@apollo/client/testing/core' was successfully resolved to '/node_modules/@apollo/client/testing/core/core.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/utilities/globals/DEV.d.ts", + "/node_modules/@apollo/client/utilities/globals/maybe.d.ts", + "/node_modules/@apollo/client/utilities/globals/global.d.ts", + "/node_modules/@apollo/client/utilities/globals/index.d.ts", + "/node_modules/@apollo/client/utilities/graphql/directives.d.ts", + "/node_modules/@apollo/client/utilities/graphql/fragments.d.ts", + "/node_modules/@apollo/client/utilities/graphql/getFromAST.d.ts", + "/node_modules/@apollo/client/utilities/graphql/storeUtils.d.ts", + "/node_modules/@apollo/client/utilities/graphql/transform.d.ts", + "/node_modules/@apollo/client/cache/core/types/Cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/entityStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fragmentRegistry.d.ts", + "/node_modules/@apollo/client/cache/inmemory/types.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fixPolyfills.d.ts", + "/node_modules/@apollo/client/link/http/parseAndCheckHttpResponse.d.ts", + "/node_modules/@apollo/client/link/http/serializeFetchParameter.d.ts", + "/node_modules/@apollo/client/link/http/selectHttpOptionsAndBody.d.ts", + "/node_modules/@apollo/client/link/http/checkFetcher.d.ts", + "/node_modules/@apollo/client/link/http/createSignalIfSupported.d.ts", + "/node_modules/@apollo/client/link/http/selectURI.d.ts", + "/node_modules/@apollo/client/link/http/createHttpLink.d.ts", + "/node_modules/@apollo/client/link/http/HttpLink.d.ts", + "/node_modules/@apollo/client/link/http/rewriteURIForGET.d.ts", + "/node_modules/@apollo/client/link/http/index.d.ts", + "/node_modules/@apollo/client/core/networkStatus.d.ts", + "/node_modules/@apollo/client/link/utils/fromError.d.ts", + "/node_modules/@apollo/client/link/utils/toPromise.d.ts", + "/node_modules/@apollo/client/link/utils/fromPromise.d.ts", + "/node_modules/@apollo/client/link/utils/throwServerError.d.ts", + "/node_modules/@apollo/client/link/utils/validateOperation.d.ts", + "/node_modules/@apollo/client/link/utils/createOperation.d.ts", + "/node_modules/@apollo/client/link/utils/transformOperation.d.ts", + "/node_modules/@apollo/client/link/utils/index.d.ts", + "/node_modules/@apollo/client/errors/index.d.ts", + "/node_modules/@apollo/client/core/QueryInfo.d.ts", + "/node_modules/@apollo/client/core/LocalState.d.ts", + "/node_modules/@apollo/client/core/types.d.ts", + "/node_modules/@apollo/client/core/watchQueryOptions.d.ts", + "/node_modules/@apollo/client/core/QueryManager.d.ts", + "/node_modules/@apollo/client/core/ObservableQuery.d.ts", + "/node_modules/@apollo/client/core/ApolloClient.d.ts", + "/node_modules/@apollo/client/core/index.d.ts", + "/node_modules/@apollo/client/cache/inmemory/reactiveVars.d.ts", + "/node_modules/@apollo/client/cache/inmemory/inMemoryCache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/object-canon.d.ts", + "/node_modules/@apollo/client/cache/inmemory/readFromStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/writeToStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/policies.d.ts", + "/node_modules/@apollo/client/cache/core/types/common.d.ts", + "/node_modules/@apollo/client/cache/core/types/DataProxy.d.ts", + "/node_modules/@apollo/client/cache/core/cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/helpers.d.ts", + "/node_modules/@apollo/client/cache/index.d.ts", + "/node_modules/@apollo/client/utilities/policies/pagination.d.ts", + "/node_modules/@apollo/client/utilities/observables/Observable.d.ts", + "/node_modules/@apollo/client/utilities/common/objects.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/cloneDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/maybeDeepFreeze.d.ts", + "/node_modules/@apollo/client/utilities/observables/iteration.d.ts", + "/node_modules/@apollo/client/utilities/observables/asyncMap.d.ts", + "/node_modules/@apollo/client/utilities/observables/Concast.d.ts", + "/node_modules/@apollo/client/utilities/observables/subclassing.d.ts", + "/node_modules/@apollo/client/utilities/common/arrays.d.ts", + "/node_modules/@apollo/client/utilities/common/errorHandling.d.ts", + "/node_modules/@apollo/client/utilities/common/canUse.d.ts", + "/node_modules/@apollo/client/utilities/common/compact.d.ts", + "/node_modules/@apollo/client/utilities/common/makeUniqueId.d.ts", + "/node_modules/@apollo/client/utilities/common/stringifyForDisplay.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeOptions.d.ts", + "/node_modules/@apollo/client/utilities/types/IsStrictlyAny.d.ts", + "/node_modules/@apollo/client/utilities/index.d.ts", + "/node_modules/@apollo/client/link/core/types.d.ts", + "/node_modules/@apollo/client/link/core/ApolloLink.d.ts", + "/node_modules/@apollo/client/link/core/empty.d.ts", + "/node_modules/@apollo/client/link/core/from.d.ts", + "/node_modules/@apollo/client/link/core/split.d.ts", + "/node_modules/@apollo/client/link/core/concat.d.ts", + "/node_modules/@apollo/client/link/core/execute.d.ts", + "/node_modules/@apollo/client/link/core/index.d.ts", + "/node_modules/@apollo/client/testing/core/mocking/mockLink.d.ts", + "/node_modules/@apollo/client/testing/core/mocking/mockSubscriptionLink.d.ts", + "/node_modules/@apollo/client/testing/core/mocking/mockClient.d.ts", + "/node_modules/@apollo/client/testing/core/subscribeAndCount.d.ts", + "/node_modules/@apollo/client/testing/core/itAsync.d.ts", + "/node_modules/@apollo/client/testing/core/wait.d.ts", + "/node_modules/@apollo/client/testing/core/withConsoleSpy.d.ts", + "/node_modules/@apollo/client/testing/core/index.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + }, + "./utilities": { + "subpath": "./utilities", + "resolutions": { + "node10": { + "name": "./utilities", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/utilities' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module '@apollo/client/utilities' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/@apollo/client/utilities/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/utilities.ts' does not exist.", + "File '/node_modules/@apollo/client/utilities.tsx' does not exist.", + "File '/node_modules/@apollo/client/utilities.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/utilities/index.d.ts'.", + "File '/node_modules/@apollo/client/utilities/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/utilities' was successfully resolved to '/node_modules/@apollo/client/utilities/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/utilities/utilities.cjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/utilities' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module '@apollo/client/utilities' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/utilities/package.json'.", + "File '/node_modules/@apollo/client/utilities.ts' does not exist.", + "File '/node_modules/@apollo/client/utilities.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'utilities.cjs' that references '/node_modules/@apollo/client/utilities/utilities.cjs'.", + "File '/node_modules/@apollo/client/utilities/utilities.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/utilities/utilities.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/utilities.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/utilities/utilities.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/utilities/utilities.cts' does not exist.", + "File '/node_modules/@apollo/client/utilities/utilities.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/utilities/utilities.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/utilities/utilities.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/utilities/index.ts' does not exist.", + "File '/node_modules/@apollo/client/utilities/index.tsx' does not exist.", + "Loading module '@apollo/client/utilities' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/utilities/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/utilities.js' does not exist.", + "File '/node_modules/@apollo/client/utilities.jsx' does not exist.", + "'package.json' has 'main' field 'utilities.cjs' that references '/node_modules/@apollo/client/utilities/utilities.cjs'.", + "File '/node_modules/@apollo/client/utilities/utilities.cjs' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/utilities' was successfully resolved to '/node_modules/@apollo/client/utilities/utilities.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/utilities/globals/DEV.d.ts", + "/node_modules/@apollo/client/utilities/globals/maybe.d.ts", + "/node_modules/@apollo/client/utilities/globals/global.d.ts", + "/node_modules/@apollo/client/utilities/globals/index.d.ts", + "/node_modules/@apollo/client/utilities/graphql/directives.d.ts", + "/node_modules/@apollo/client/utilities/graphql/fragments.d.ts", + "/node_modules/@apollo/client/utilities/graphql/getFromAST.d.ts", + "/node_modules/@apollo/client/utilities/graphql/storeUtils.d.ts", + "/node_modules/@apollo/client/utilities/graphql/transform.d.ts", + "/node_modules/@apollo/client/cache/core/types/Cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/entityStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fragmentRegistry.d.ts", + "/node_modules/@apollo/client/cache/inmemory/types.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fixPolyfills.d.ts", + "/node_modules/@apollo/client/link/core/types.d.ts", + "/node_modules/@apollo/client/link/core/ApolloLink.d.ts", + "/node_modules/@apollo/client/link/core/empty.d.ts", + "/node_modules/@apollo/client/link/core/from.d.ts", + "/node_modules/@apollo/client/link/core/split.d.ts", + "/node_modules/@apollo/client/link/core/concat.d.ts", + "/node_modules/@apollo/client/link/core/execute.d.ts", + "/node_modules/@apollo/client/link/core/index.d.ts", + "/node_modules/@apollo/client/link/http/parseAndCheckHttpResponse.d.ts", + "/node_modules/@apollo/client/link/http/serializeFetchParameter.d.ts", + "/node_modules/@apollo/client/link/http/selectHttpOptionsAndBody.d.ts", + "/node_modules/@apollo/client/link/http/checkFetcher.d.ts", + "/node_modules/@apollo/client/link/http/createSignalIfSupported.d.ts", + "/node_modules/@apollo/client/link/http/selectURI.d.ts", + "/node_modules/@apollo/client/link/http/createHttpLink.d.ts", + "/node_modules/@apollo/client/link/http/HttpLink.d.ts", + "/node_modules/@apollo/client/link/http/rewriteURIForGET.d.ts", + "/node_modules/@apollo/client/link/http/index.d.ts", + "/node_modules/@apollo/client/core/networkStatus.d.ts", + "/node_modules/@apollo/client/link/utils/fromError.d.ts", + "/node_modules/@apollo/client/link/utils/toPromise.d.ts", + "/node_modules/@apollo/client/link/utils/fromPromise.d.ts", + "/node_modules/@apollo/client/link/utils/throwServerError.d.ts", + "/node_modules/@apollo/client/link/utils/validateOperation.d.ts", + "/node_modules/@apollo/client/link/utils/createOperation.d.ts", + "/node_modules/@apollo/client/link/utils/transformOperation.d.ts", + "/node_modules/@apollo/client/link/utils/index.d.ts", + "/node_modules/@apollo/client/errors/index.d.ts", + "/node_modules/@apollo/client/core/QueryInfo.d.ts", + "/node_modules/@apollo/client/core/LocalState.d.ts", + "/node_modules/@apollo/client/core/types.d.ts", + "/node_modules/@apollo/client/core/watchQueryOptions.d.ts", + "/node_modules/@apollo/client/core/QueryManager.d.ts", + "/node_modules/@apollo/client/core/ObservableQuery.d.ts", + "/node_modules/@apollo/client/core/ApolloClient.d.ts", + "/node_modules/@apollo/client/core/index.d.ts", + "/node_modules/@apollo/client/cache/inmemory/reactiveVars.d.ts", + "/node_modules/@apollo/client/cache/inmemory/inMemoryCache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/object-canon.d.ts", + "/node_modules/@apollo/client/cache/inmemory/readFromStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/writeToStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/policies.d.ts", + "/node_modules/@apollo/client/cache/core/types/common.d.ts", + "/node_modules/@apollo/client/cache/core/types/DataProxy.d.ts", + "/node_modules/@apollo/client/cache/core/cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/helpers.d.ts", + "/node_modules/@apollo/client/cache/index.d.ts", + "/node_modules/@apollo/client/utilities/policies/pagination.d.ts", + "/node_modules/@apollo/client/utilities/observables/Observable.d.ts", + "/node_modules/@apollo/client/utilities/common/objects.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/cloneDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/maybeDeepFreeze.d.ts", + "/node_modules/@apollo/client/utilities/observables/iteration.d.ts", + "/node_modules/@apollo/client/utilities/observables/asyncMap.d.ts", + "/node_modules/@apollo/client/utilities/observables/Concast.d.ts", + "/node_modules/@apollo/client/utilities/observables/subclassing.d.ts", + "/node_modules/@apollo/client/utilities/common/arrays.d.ts", + "/node_modules/@apollo/client/utilities/common/errorHandling.d.ts", + "/node_modules/@apollo/client/utilities/common/canUse.d.ts", + "/node_modules/@apollo/client/utilities/common/compact.d.ts", + "/node_modules/@apollo/client/utilities/common/makeUniqueId.d.ts", + "/node_modules/@apollo/client/utilities/common/stringifyForDisplay.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeOptions.d.ts", + "/node_modules/@apollo/client/utilities/types/IsStrictlyAny.d.ts", + "/node_modules/@apollo/client/utilities/index.d.ts" + ] + }, + "node16-cjs": { + "name": "./utilities", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/@apollo/client/utilities/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/utilities' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/utilities' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/@apollo/client/utilities/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/utilities.ts' does not exist.", + "File '/node_modules/@apollo/client/utilities.tsx' does not exist.", + "File '/node_modules/@apollo/client/utilities.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/utilities/index.d.ts'.", + "File '/node_modules/@apollo/client/utilities/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/utilities' was successfully resolved to '/node_modules/@apollo/client/utilities/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/utilities/utilities.cjs", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "extension", + "reasonFileName": "/node_modules/@apollo/client/utilities/utilities.cjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/utilities' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/utilities' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/utilities/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/utilities.ts' does not exist.", + "File '/node_modules/@apollo/client/utilities.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'utilities.cjs' that references '/node_modules/@apollo/client/utilities/utilities.cjs'.", + "File '/node_modules/@apollo/client/utilities/utilities.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/utilities/utilities.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/utilities.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/utilities/utilities.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/utilities/utilities.cts' does not exist.", + "File '/node_modules/@apollo/client/utilities/utilities.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/utilities/utilities.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/utilities/utilities.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/utilities/index.ts' does not exist.", + "File '/node_modules/@apollo/client/utilities/index.tsx' does not exist.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/utilities/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/utilities.js' does not exist.", + "File '/node_modules/@apollo/client/utilities.jsx' does not exist.", + "'package.json' has 'main' field 'utilities.cjs' that references '/node_modules/@apollo/client/utilities/utilities.cjs'.", + "File '/node_modules/@apollo/client/utilities/utilities.cjs' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/utilities' was successfully resolved to '/node_modules/@apollo/client/utilities/utilities.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/utilities/index.d.ts" + ] + }, + "node16-esm": { + "name": "./utilities", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/@apollo/client/utilities/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/utilities' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/utilities' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/@apollo/client/utilities/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/utilities/index.d.ts'.", + "File '/node_modules/@apollo/client/utilities/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/utilities' was successfully resolved to '/node_modules/@apollo/client/utilities/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/utilities/utilities.cjs", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "extension", + "reasonFileName": "/node_modules/@apollo/client/utilities/utilities.cjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/utilities' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/utilities' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/utilities/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'utilities.cjs' that references '/node_modules/@apollo/client/utilities/utilities.cjs'.", + "File '/node_modules/@apollo/client/utilities/utilities.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/utilities/utilities.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/utilities.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/utilities/utilities.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/utilities/utilities.cts' does not exist.", + "Directory '/node_modules/@apollo/client/utilities/utilities.cjs' does not exist, skipping all lookups in it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/utilities/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'utilities.cjs' that references '/node_modules/@apollo/client/utilities/utilities.cjs'.", + "File '/node_modules/@apollo/client/utilities/utilities.cjs' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/utilities' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/utilities/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'utilities.cjs' that references '/node_modules/@apollo/client/utilities/utilities.cjs'.", + "File '/node_modules/@apollo/client/utilities/utilities.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/utilities/utilities.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/utilities.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/utilities/utilities.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/utilities/utilities.cts' does not exist.", + "Directory '/node_modules/@apollo/client/utilities/utilities.cjs' does not exist, skipping all lookups in it.", + "======== Module name '@apollo/client/utilities' was successfully resolved to '/node_modules/@apollo/client/utilities/utilities.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/utilities/index.d.ts" + ] + }, + "bundler": { + "name": "./utilities", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/utilities' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/utilities' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/@apollo/client/utilities/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/utilities.ts' does not exist.", + "File '/node_modules/@apollo/client/utilities.tsx' does not exist.", + "File '/node_modules/@apollo/client/utilities.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/utilities/index.d.ts'.", + "File '/node_modules/@apollo/client/utilities/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/utilities' was successfully resolved to '/node_modules/@apollo/client/utilities/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/utilities/utilities.cjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/utilities' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/utilities' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/utilities/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/utilities.ts' does not exist.", + "File '/node_modules/@apollo/client/utilities.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'utilities.cjs' that references '/node_modules/@apollo/client/utilities/utilities.cjs'.", + "File '/node_modules/@apollo/client/utilities/utilities.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/utilities/utilities.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/utilities.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/utilities/utilities.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/utilities/utilities.cts' does not exist.", + "File '/node_modules/@apollo/client/utilities/utilities.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/utilities/utilities.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/utilities/utilities.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/utilities/index.ts' does not exist.", + "File '/node_modules/@apollo/client/utilities/index.tsx' does not exist.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/utilities/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/utilities.js' does not exist.", + "File '/node_modules/@apollo/client/utilities.jsx' does not exist.", + "'package.json' has 'main' field 'utilities.cjs' that references '/node_modules/@apollo/client/utilities/utilities.cjs'.", + "File '/node_modules/@apollo/client/utilities/utilities.cjs' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/utilities' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/utilities/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/utilities.ts' does not exist.", + "File '/node_modules/@apollo/client/utilities.tsx' does not exist.", + "'package.json' has 'main' field 'utilities.cjs' that references '/node_modules/@apollo/client/utilities/utilities.cjs'.", + "File '/node_modules/@apollo/client/utilities/utilities.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/utilities/utilities.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/utilities.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/utilities/utilities.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/utilities/utilities.cts' does not exist.", + "File '/node_modules/@apollo/client/utilities/utilities.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/utilities/utilities.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/utilities/utilities.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/utilities/index.ts' does not exist.", + "File '/node_modules/@apollo/client/utilities/index.tsx' does not exist.", + "======== Module name '@apollo/client/utilities' was successfully resolved to '/node_modules/@apollo/client/utilities/utilities.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/utilities/globals/DEV.d.ts", + "/node_modules/@apollo/client/utilities/globals/maybe.d.ts", + "/node_modules/@apollo/client/utilities/globals/global.d.ts", + "/node_modules/@apollo/client/utilities/globals/index.d.ts", + "/node_modules/@apollo/client/utilities/graphql/directives.d.ts", + "/node_modules/@apollo/client/utilities/graphql/fragments.d.ts", + "/node_modules/@apollo/client/utilities/graphql/getFromAST.d.ts", + "/node_modules/@apollo/client/utilities/graphql/storeUtils.d.ts", + "/node_modules/@apollo/client/utilities/graphql/transform.d.ts", + "/node_modules/@apollo/client/cache/core/types/Cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/entityStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fragmentRegistry.d.ts", + "/node_modules/@apollo/client/cache/inmemory/types.d.ts", + "/node_modules/@apollo/client/cache/inmemory/fixPolyfills.d.ts", + "/node_modules/@apollo/client/link/core/types.d.ts", + "/node_modules/@apollo/client/link/core/ApolloLink.d.ts", + "/node_modules/@apollo/client/link/core/empty.d.ts", + "/node_modules/@apollo/client/link/core/from.d.ts", + "/node_modules/@apollo/client/link/core/split.d.ts", + "/node_modules/@apollo/client/link/core/concat.d.ts", + "/node_modules/@apollo/client/link/core/execute.d.ts", + "/node_modules/@apollo/client/link/core/index.d.ts", + "/node_modules/@apollo/client/link/http/parseAndCheckHttpResponse.d.ts", + "/node_modules/@apollo/client/link/http/serializeFetchParameter.d.ts", + "/node_modules/@apollo/client/link/http/selectHttpOptionsAndBody.d.ts", + "/node_modules/@apollo/client/link/http/checkFetcher.d.ts", + "/node_modules/@apollo/client/link/http/createSignalIfSupported.d.ts", + "/node_modules/@apollo/client/link/http/selectURI.d.ts", + "/node_modules/@apollo/client/link/http/createHttpLink.d.ts", + "/node_modules/@apollo/client/link/http/HttpLink.d.ts", + "/node_modules/@apollo/client/link/http/rewriteURIForGET.d.ts", + "/node_modules/@apollo/client/link/http/index.d.ts", + "/node_modules/@apollo/client/core/networkStatus.d.ts", + "/node_modules/@apollo/client/link/utils/fromError.d.ts", + "/node_modules/@apollo/client/link/utils/toPromise.d.ts", + "/node_modules/@apollo/client/link/utils/fromPromise.d.ts", + "/node_modules/@apollo/client/link/utils/throwServerError.d.ts", + "/node_modules/@apollo/client/link/utils/validateOperation.d.ts", + "/node_modules/@apollo/client/link/utils/createOperation.d.ts", + "/node_modules/@apollo/client/link/utils/transformOperation.d.ts", + "/node_modules/@apollo/client/link/utils/index.d.ts", + "/node_modules/@apollo/client/errors/index.d.ts", + "/node_modules/@apollo/client/core/QueryInfo.d.ts", + "/node_modules/@apollo/client/core/LocalState.d.ts", + "/node_modules/@apollo/client/core/types.d.ts", + "/node_modules/@apollo/client/core/watchQueryOptions.d.ts", + "/node_modules/@apollo/client/core/QueryManager.d.ts", + "/node_modules/@apollo/client/core/ObservableQuery.d.ts", + "/node_modules/@apollo/client/core/ApolloClient.d.ts", + "/node_modules/@apollo/client/core/index.d.ts", + "/node_modules/@apollo/client/cache/inmemory/reactiveVars.d.ts", + "/node_modules/@apollo/client/cache/inmemory/inMemoryCache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/object-canon.d.ts", + "/node_modules/@apollo/client/cache/inmemory/readFromStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/writeToStore.d.ts", + "/node_modules/@apollo/client/cache/inmemory/policies.d.ts", + "/node_modules/@apollo/client/cache/core/types/common.d.ts", + "/node_modules/@apollo/client/cache/core/types/DataProxy.d.ts", + "/node_modules/@apollo/client/cache/core/cache.d.ts", + "/node_modules/@apollo/client/cache/inmemory/helpers.d.ts", + "/node_modules/@apollo/client/cache/index.d.ts", + "/node_modules/@apollo/client/utilities/policies/pagination.d.ts", + "/node_modules/@apollo/client/utilities/observables/Observable.d.ts", + "/node_modules/@apollo/client/utilities/common/objects.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/cloneDeep.d.ts", + "/node_modules/@apollo/client/utilities/common/maybeDeepFreeze.d.ts", + "/node_modules/@apollo/client/utilities/observables/iteration.d.ts", + "/node_modules/@apollo/client/utilities/observables/asyncMap.d.ts", + "/node_modules/@apollo/client/utilities/observables/Concast.d.ts", + "/node_modules/@apollo/client/utilities/observables/subclassing.d.ts", + "/node_modules/@apollo/client/utilities/common/arrays.d.ts", + "/node_modules/@apollo/client/utilities/common/errorHandling.d.ts", + "/node_modules/@apollo/client/utilities/common/canUse.d.ts", + "/node_modules/@apollo/client/utilities/common/compact.d.ts", + "/node_modules/@apollo/client/utilities/common/makeUniqueId.d.ts", + "/node_modules/@apollo/client/utilities/common/stringifyForDisplay.d.ts", + "/node_modules/@apollo/client/utilities/common/mergeOptions.d.ts", + "/node_modules/@apollo/client/utilities/types/IsStrictlyAny.d.ts", + "/node_modules/@apollo/client/utilities/index.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + }, + "./utilities/globals": { + "subpath": "./utilities/globals", + "resolutions": { + "node10": { + "name": "./utilities/globals", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/@apollo/client/utilities/globals/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/utilities/globals' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module '@apollo/client/utilities/globals' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/@apollo/client/utilities/globals/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/utilities/globals.ts' does not exist.", + "File '/node_modules/@apollo/client/utilities/globals.tsx' does not exist.", + "File '/node_modules/@apollo/client/utilities/globals.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/utilities/globals/index.d.ts'.", + "File '/node_modules/@apollo/client/utilities/globals/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/utilities/globals' was successfully resolved to '/node_modules/@apollo/client/utilities/globals/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/utilities/globals/globals.cjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/utilities/globals' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module '@apollo/client/utilities/globals' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/utilities/globals/package.json'.", + "File '/node_modules/@apollo/client/utilities/globals.ts' does not exist.", + "File '/node_modules/@apollo/client/utilities/globals.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'globals.cjs' that references '/node_modules/@apollo/client/utilities/globals/globals.cjs'.", + "File '/node_modules/@apollo/client/utilities/globals/globals.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/utilities/globals/globals.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/globals/globals.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/utilities/globals/globals.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/utilities/globals/globals.cts' does not exist.", + "File '/node_modules/@apollo/client/utilities/globals/globals.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/utilities/globals/globals.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/utilities/globals/globals.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/utilities/globals/index.ts' does not exist.", + "File '/node_modules/@apollo/client/utilities/globals/index.tsx' does not exist.", + "Loading module '@apollo/client/utilities/globals' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/utilities/globals/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/utilities/globals.js' does not exist.", + "File '/node_modules/@apollo/client/utilities/globals.jsx' does not exist.", + "'package.json' has 'main' field 'globals.cjs' that references '/node_modules/@apollo/client/utilities/globals/globals.cjs'.", + "File '/node_modules/@apollo/client/utilities/globals/globals.cjs' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/utilities/globals' was successfully resolved to '/node_modules/@apollo/client/utilities/globals/globals.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/utilities/globals/DEV.d.ts", + "/node_modules/@apollo/client/utilities/globals/maybe.d.ts", + "/node_modules/@apollo/client/utilities/globals/global.d.ts", + "/node_modules/@apollo/client/utilities/globals/index.d.ts" + ] + }, + "node16-cjs": { + "name": "./utilities/globals", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/@apollo/client/utilities/globals/index.d.ts", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/@apollo/client/utilities/globals/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/utilities/globals' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/utilities/globals' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/@apollo/client/utilities/globals/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/utilities/globals.ts' does not exist.", + "File '/node_modules/@apollo/client/utilities/globals.tsx' does not exist.", + "File '/node_modules/@apollo/client/utilities/globals.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/utilities/globals/index.d.ts'.", + "File '/node_modules/@apollo/client/utilities/globals/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/utilities/globals' was successfully resolved to '/node_modules/@apollo/client/utilities/globals/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/utilities/globals/globals.cjs", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "extension", + "reasonFileName": "/node_modules/@apollo/client/utilities/globals/globals.cjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/utilities/globals' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/utilities/globals' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/utilities/globals/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/utilities/globals.ts' does not exist.", + "File '/node_modules/@apollo/client/utilities/globals.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'globals.cjs' that references '/node_modules/@apollo/client/utilities/globals/globals.cjs'.", + "File '/node_modules/@apollo/client/utilities/globals/globals.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/utilities/globals/globals.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/globals/globals.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/utilities/globals/globals.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/utilities/globals/globals.cts' does not exist.", + "File '/node_modules/@apollo/client/utilities/globals/globals.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/utilities/globals/globals.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/utilities/globals/globals.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/utilities/globals/index.ts' does not exist.", + "File '/node_modules/@apollo/client/utilities/globals/index.tsx' does not exist.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/utilities/globals/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/utilities/globals.js' does not exist.", + "File '/node_modules/@apollo/client/utilities/globals.jsx' does not exist.", + "'package.json' has 'main' field 'globals.cjs' that references '/node_modules/@apollo/client/utilities/globals/globals.cjs'.", + "File '/node_modules/@apollo/client/utilities/globals/globals.cjs' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/utilities/globals' was successfully resolved to '/node_modules/@apollo/client/utilities/globals/globals.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/utilities/globals/index.d.ts" + ] + }, + "node16-esm": { + "name": "./utilities/globals", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/@apollo/client/utilities/globals/index.d.ts", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/@apollo/client/utilities/globals/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/utilities/globals' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/utilities/globals' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/@apollo/client/utilities/globals/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/utilities/globals/index.d.ts'.", + "File '/node_modules/@apollo/client/utilities/globals/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/utilities/globals' was successfully resolved to '/node_modules/@apollo/client/utilities/globals/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/utilities/globals/globals.cjs", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "extension", + "reasonFileName": "/node_modules/@apollo/client/utilities/globals/globals.cjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/utilities/globals' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/utilities/globals' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/utilities/globals/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'globals.cjs' that references '/node_modules/@apollo/client/utilities/globals/globals.cjs'.", + "File '/node_modules/@apollo/client/utilities/globals/globals.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/utilities/globals/globals.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/globals/globals.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/utilities/globals/globals.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/utilities/globals/globals.cts' does not exist.", + "Directory '/node_modules/@apollo/client/utilities/globals/globals.cjs' does not exist, skipping all lookups in it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/utilities/globals/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'globals.cjs' that references '/node_modules/@apollo/client/utilities/globals/globals.cjs'.", + "File '/node_modules/@apollo/client/utilities/globals/globals.cjs' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/utilities/globals' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/utilities/globals/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'globals.cjs' that references '/node_modules/@apollo/client/utilities/globals/globals.cjs'.", + "File '/node_modules/@apollo/client/utilities/globals/globals.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/utilities/globals/globals.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/globals/globals.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/utilities/globals/globals.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/utilities/globals/globals.cts' does not exist.", + "Directory '/node_modules/@apollo/client/utilities/globals/globals.cjs' does not exist, skipping all lookups in it.", + "======== Module name '@apollo/client/utilities/globals' was successfully resolved to '/node_modules/@apollo/client/utilities/globals/globals.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/utilities/globals/index.d.ts" + ] + }, + "bundler": { + "name": "./utilities/globals", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/@apollo/client/utilities/globals/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@apollo/client/utilities/globals' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/utilities/globals' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/@apollo/client/utilities/globals/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/utilities/globals.ts' does not exist.", + "File '/node_modules/@apollo/client/utilities/globals.tsx' does not exist.", + "File '/node_modules/@apollo/client/utilities/globals.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@apollo/client/utilities/globals/index.d.ts'.", + "File '/node_modules/@apollo/client/utilities/globals/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@apollo/client/utilities/globals' was successfully resolved to '/node_modules/@apollo/client/utilities/globals/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@apollo/client/utilities/globals/globals.cjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@apollo/client/utilities/globals' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/utilities/globals' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@apollo/client/utilities/globals/package.json'.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/utilities/globals.ts' does not exist.", + "File '/node_modules/@apollo/client/utilities/globals.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'globals.cjs' that references '/node_modules/@apollo/client/utilities/globals/globals.cjs'.", + "File '/node_modules/@apollo/client/utilities/globals/globals.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/utilities/globals/globals.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/globals/globals.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/utilities/globals/globals.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/utilities/globals/globals.cts' does not exist.", + "File '/node_modules/@apollo/client/utilities/globals/globals.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/utilities/globals/globals.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/utilities/globals/globals.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/utilities/globals/index.ts' does not exist.", + "File '/node_modules/@apollo/client/utilities/globals/index.tsx' does not exist.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@apollo/client/utilities/globals/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/utilities/globals.js' does not exist.", + "File '/node_modules/@apollo/client/utilities/globals.jsx' does not exist.", + "'package.json' has 'main' field 'globals.cjs' that references '/node_modules/@apollo/client/utilities/globals/globals.cjs'.", + "File '/node_modules/@apollo/client/utilities/globals/globals.cjs' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@apollo/client/utilities/globals' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@apollo/client/utilities/globals/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@apollo/client/utilities/globals.ts' does not exist.", + "File '/node_modules/@apollo/client/utilities/globals.tsx' does not exist.", + "'package.json' has 'main' field 'globals.cjs' that references '/node_modules/@apollo/client/utilities/globals/globals.cjs'.", + "File '/node_modules/@apollo/client/utilities/globals/globals.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@apollo/client/utilities/globals/globals.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/globals/globals.cjs', target file types: TypeScript.", + "File name '/node_modules/@apollo/client/utilities/globals/globals.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@apollo/client/utilities/globals/globals.cts' does not exist.", + "File '/node_modules/@apollo/client/utilities/globals/globals.cjs.ts' does not exist.", + "File '/node_modules/@apollo/client/utilities/globals/globals.cjs.tsx' does not exist.", + "Directory '/node_modules/@apollo/client/utilities/globals/globals.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@apollo/client/utilities/globals/index.ts' does not exist.", + "File '/node_modules/@apollo/client/utilities/globals/index.tsx' does not exist.", + "======== Module name '@apollo/client/utilities/globals' was successfully resolved to '/node_modules/@apollo/client/utilities/globals/globals.cjs'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@apollo/client/utilities/globals/DEV.d.ts", + "/node_modules/@apollo/client/utilities/globals/maybe.d.ts", + "/node_modules/@apollo/client/utilities/globals/global.d.ts", + "/node_modules/@apollo/client/utilities/globals/index.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + } + }, + "problems": [ + { + "kind": "FalseESM", + "entrypoint": ".", + "resolutionKind": "node16-cjs" + }, + { + "kind": "CJSResolvesToESM", + "entrypoint": ".", + "resolutionKind": "node16-cjs" + }, + { + "kind": "FalseESM", + "entrypoint": ".", + "resolutionKind": "node16-esm" + }, + { + "kind": "FalseESM", + "entrypoint": "./cache", + "resolutionKind": "node16-cjs" + }, + { + "kind": "CJSResolvesToESM", + "entrypoint": "./cache", + "resolutionKind": "node16-cjs" + }, + { + "kind": "FalseESM", + "entrypoint": "./cache", + "resolutionKind": "node16-esm" + }, + { + "kind": "FalseESM", + "entrypoint": "./core", + "resolutionKind": "node16-cjs" + }, + { + "kind": "CJSResolvesToESM", + "entrypoint": "./core", + "resolutionKind": "node16-cjs" + }, + { + "kind": "FalseESM", + "entrypoint": "./core", + "resolutionKind": "node16-esm" + }, + { + "kind": "FalseESM", + "entrypoint": "./errors", + "resolutionKind": "node16-cjs" + }, + { + "kind": "CJSResolvesToESM", + "entrypoint": "./errors", + "resolutionKind": "node16-cjs" + }, + { + "kind": "FalseESM", + "entrypoint": "./errors", + "resolutionKind": "node16-esm" + }, + { + "kind": "FalseESM", + "entrypoint": "./link/batch", + "resolutionKind": "node16-cjs" + }, + { + "kind": "CJSResolvesToESM", + "entrypoint": "./link/batch", + "resolutionKind": "node16-cjs" + }, + { + "kind": "FalseESM", + "entrypoint": "./link/batch", + "resolutionKind": "node16-esm" + }, + { + "kind": "FalseESM", + "entrypoint": "./link/batch-http", + "resolutionKind": "node16-cjs" + }, + { + "kind": "CJSResolvesToESM", + "entrypoint": "./link/batch-http", + "resolutionKind": "node16-cjs" + }, + { + "kind": "FalseESM", + "entrypoint": "./link/batch-http", + "resolutionKind": "node16-esm" + }, + { + "kind": "FalseESM", + "entrypoint": "./link/context", + "resolutionKind": "node16-cjs" + }, + { + "kind": "CJSResolvesToESM", + "entrypoint": "./link/context", + "resolutionKind": "node16-cjs" + }, + { + "kind": "FalseESM", + "entrypoint": "./link/context", + "resolutionKind": "node16-esm" + }, + { + "kind": "FalseESM", + "entrypoint": "./link/core", + "resolutionKind": "node16-cjs" + }, + { + "kind": "CJSResolvesToESM", + "entrypoint": "./link/core", + "resolutionKind": "node16-cjs" + }, + { + "kind": "FalseESM", + "entrypoint": "./link/core", + "resolutionKind": "node16-esm" + }, + { + "kind": "FalseESM", + "entrypoint": "./link/error", + "resolutionKind": "node16-cjs" + }, + { + "kind": "CJSResolvesToESM", + "entrypoint": "./link/error", + "resolutionKind": "node16-cjs" + }, + { + "kind": "FalseESM", + "entrypoint": "./link/error", + "resolutionKind": "node16-esm" + }, + { + "kind": "FalseESM", + "entrypoint": "./link/http", + "resolutionKind": "node16-cjs" + }, + { + "kind": "CJSResolvesToESM", + "entrypoint": "./link/http", + "resolutionKind": "node16-cjs" + }, + { + "kind": "FalseESM", + "entrypoint": "./link/http", + "resolutionKind": "node16-esm" + }, + { + "kind": "FalseESM", + "entrypoint": "./link/persisted-queries", + "resolutionKind": "node16-cjs" + }, + { + "kind": "CJSResolvesToESM", + "entrypoint": "./link/persisted-queries", + "resolutionKind": "node16-cjs" + }, + { + "kind": "FalseESM", + "entrypoint": "./link/persisted-queries", + "resolutionKind": "node16-esm" + }, + { + "kind": "FalseESM", + "entrypoint": "./link/retry", + "resolutionKind": "node16-cjs" + }, + { + "kind": "CJSResolvesToESM", + "entrypoint": "./link/retry", + "resolutionKind": "node16-cjs" + }, + { + "kind": "FalseESM", + "entrypoint": "./link/retry", + "resolutionKind": "node16-esm" + }, + { + "kind": "FalseESM", + "entrypoint": "./link/schema", + "resolutionKind": "node16-cjs" + }, + { + "kind": "CJSResolvesToESM", + "entrypoint": "./link/schema", + "resolutionKind": "node16-cjs" + }, + { + "kind": "FalseESM", + "entrypoint": "./link/schema", + "resolutionKind": "node16-esm" + }, + { + "kind": "FalseESM", + "entrypoint": "./link/subscriptions", + "resolutionKind": "node16-cjs" + }, + { + "kind": "CJSResolvesToESM", + "entrypoint": "./link/subscriptions", + "resolutionKind": "node16-cjs" + }, + { + "kind": "FalseESM", + "entrypoint": "./link/subscriptions", + "resolutionKind": "node16-esm" + }, + { + "kind": "FalseESM", + "entrypoint": "./link/utils", + "resolutionKind": "node16-cjs" + }, + { + "kind": "CJSResolvesToESM", + "entrypoint": "./link/utils", + "resolutionKind": "node16-cjs" + }, + { + "kind": "FalseESM", + "entrypoint": "./link/utils", + "resolutionKind": "node16-esm" + }, + { + "kind": "FalseESM", + "entrypoint": "./link/ws", + "resolutionKind": "node16-cjs" + }, + { + "kind": "CJSResolvesToESM", + "entrypoint": "./link/ws", + "resolutionKind": "node16-cjs" + }, + { + "kind": "FalseESM", + "entrypoint": "./link/ws", + "resolutionKind": "node16-esm" + }, + { + "kind": "FalseESM", + "entrypoint": "./react", + "resolutionKind": "node16-cjs" + }, + { + "kind": "CJSResolvesToESM", + "entrypoint": "./react", + "resolutionKind": "node16-cjs" + }, + { + "kind": "FalseESM", + "entrypoint": "./react", + "resolutionKind": "node16-esm" + }, + { + "kind": "FalseESM", + "entrypoint": "./react/components", + "resolutionKind": "node16-cjs" + }, + { + "kind": "CJSResolvesToESM", + "entrypoint": "./react/components", + "resolutionKind": "node16-cjs" + }, + { + "kind": "FalseESM", + "entrypoint": "./react/components", + "resolutionKind": "node16-esm" + }, + { + "kind": "FalseESM", + "entrypoint": "./react/context", + "resolutionKind": "node16-cjs" + }, + { + "kind": "CJSResolvesToESM", + "entrypoint": "./react/context", + "resolutionKind": "node16-cjs" + }, + { + "kind": "FalseESM", + "entrypoint": "./react/context", + "resolutionKind": "node16-esm" + }, + { + "kind": "FalseESM", + "entrypoint": "./react/hoc", + "resolutionKind": "node16-cjs" + }, + { + "kind": "CJSResolvesToESM", + "entrypoint": "./react/hoc", + "resolutionKind": "node16-cjs" + }, + { + "kind": "FalseESM", + "entrypoint": "./react/hoc", + "resolutionKind": "node16-esm" + }, + { + "kind": "FalseESM", + "entrypoint": "./react/hooks", + "resolutionKind": "node16-cjs" + }, + { + "kind": "CJSResolvesToESM", + "entrypoint": "./react/hooks", + "resolutionKind": "node16-cjs" + }, + { + "kind": "FalseESM", + "entrypoint": "./react/hooks", + "resolutionKind": "node16-esm" + }, + { + "kind": "FalseESM", + "entrypoint": "./react/parser", + "resolutionKind": "node16-cjs" + }, + { + "kind": "CJSResolvesToESM", + "entrypoint": "./react/parser", + "resolutionKind": "node16-cjs" + }, + { + "kind": "FalseESM", + "entrypoint": "./react/parser", + "resolutionKind": "node16-esm" + }, + { + "kind": "FalseESM", + "entrypoint": "./react/ssr", + "resolutionKind": "node16-cjs" + }, + { + "kind": "CJSResolvesToESM", + "entrypoint": "./react/ssr", + "resolutionKind": "node16-cjs" + }, + { + "kind": "FalseESM", + "entrypoint": "./react/ssr", + "resolutionKind": "node16-esm" + }, + { + "kind": "FalseESM", + "entrypoint": "./testing", + "resolutionKind": "node16-cjs" + }, + { + "kind": "CJSResolvesToESM", + "entrypoint": "./testing", + "resolutionKind": "node16-cjs" + }, + { + "kind": "FalseESM", + "entrypoint": "./testing", + "resolutionKind": "node16-esm" + }, + { + "kind": "FalseESM", + "entrypoint": "./testing/core", + "resolutionKind": "node16-cjs" + }, + { + "kind": "CJSResolvesToESM", + "entrypoint": "./testing/core", + "resolutionKind": "node16-cjs" + }, + { + "kind": "FalseESM", + "entrypoint": "./testing/core", + "resolutionKind": "node16-esm" + }, + { + "kind": "FalseESM", + "entrypoint": "./utilities", + "resolutionKind": "node16-cjs" + }, + { + "kind": "CJSResolvesToESM", + "entrypoint": "./utilities", + "resolutionKind": "node16-cjs" + }, + { + "kind": "FalseESM", + "entrypoint": "./utilities", + "resolutionKind": "node16-esm" + }, + { + "kind": "FalseESM", + "entrypoint": "./utilities/globals", + "resolutionKind": "node16-cjs" + }, + { + "kind": "CJSResolvesToESM", + "entrypoint": "./utilities/globals", + "resolutionKind": "node16-cjs" + }, + { + "kind": "FalseESM", + "entrypoint": "./utilities/globals", + "resolutionKind": "node16-esm" + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/index.d.ts", + "moduleSpecifier": "./core", + "pos": 13, + "end": 22, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './core' from '/node_modules/@apollo/client/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/core', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name './core' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/index.d.ts", + "moduleSpecifier": "./react", + "pos": 37, + "end": 47, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './react' from '/node_modules/@apollo/client/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name './react' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/cache/index.d.ts", + "moduleSpecifier": "../utilities/globals", + "pos": 6, + "end": 29, + "resolutionMode": 99, + "trace": [ + "======== Resolving module '../utilities/globals' from '/node_modules/@apollo/client/cache/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/globals', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name '../utilities/globals' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/cache/index.d.ts", + "moduleSpecifier": "./core/cache", + "pos": 71, + "end": 86, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './core/cache' from '/node_modules/@apollo/client/cache/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/cache/core/cache', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/cache/core/cache' does not exist, skipping all lookups in it.", + "======== Module name './core/cache' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/cache/index.d.ts", + "moduleSpecifier": "./core/types/Cache", + "pos": 109, + "end": 130, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './core/types/Cache' from '/node_modules/@apollo/client/cache/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/cache/core/types/Cache', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/cache/core/types/Cache' does not exist, skipping all lookups in it.", + "======== Module name './core/types/Cache' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/cache/index.d.ts", + "moduleSpecifier": "./core/types/DataProxy", + "pos": 157, + "end": 182, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './core/types/DataProxy' from '/node_modules/@apollo/client/cache/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/cache/core/types/DataProxy', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/cache/core/types/DataProxy' does not exist, skipping all lookups in it.", + "======== Module name './core/types/DataProxy' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/cache/index.d.ts", + "moduleSpecifier": "./core/types/common", + "pos": 286, + "end": 308, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './core/types/common' from '/node_modules/@apollo/client/cache/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/cache/core/types/common', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/cache/core/types/common' does not exist, skipping all lookups in it.", + "======== Module name './core/types/common' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/cache/index.d.ts", + "moduleSpecifier": "../utilities", + "pos": 364, + "end": 379, + "resolutionMode": 99, + "trace": [ + "======== Resolving module '../utilities' from '/node_modules/@apollo/client/cache/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name '../utilities' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/cache/index.d.ts", + "moduleSpecifier": "./inmemory/entityStore", + "pos": 408, + "end": 433, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './inmemory/entityStore' from '/node_modules/@apollo/client/cache/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/cache/inmemory/entityStore', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/cache/inmemory/entityStore' does not exist, skipping all lookups in it.", + "======== Module name './inmemory/entityStore' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/cache/index.d.ts", + "moduleSpecifier": "./inmemory/helpers", + "pos": 499, + "end": 520, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './inmemory/helpers' from '/node_modules/@apollo/client/cache/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/cache/inmemory/helpers', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/cache/inmemory/helpers' does not exist, skipping all lookups in it.", + "======== Module name './inmemory/helpers' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/cache/index.d.ts", + "moduleSpecifier": "./inmemory/inMemoryCache", + "pos": 552, + "end": 579, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './inmemory/inMemoryCache' from '/node_modules/@apollo/client/cache/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/cache/inmemory/inMemoryCache', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/cache/inmemory/inMemoryCache' does not exist, skipping all lookups in it.", + "======== Module name './inmemory/inMemoryCache' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/cache/index.d.ts", + "moduleSpecifier": "./inmemory/reactiveVars", + "pos": 629, + "end": 655, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './inmemory/reactiveVars' from '/node_modules/@apollo/client/cache/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/cache/inmemory/reactiveVars', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/cache/inmemory/reactiveVars' does not exist, skipping all lookups in it.", + "======== Module name './inmemory/reactiveVars' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/cache/index.d.ts", + "moduleSpecifier": "./inmemory/policies", + "pos": 800, + "end": 822, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './inmemory/policies' from '/node_modules/@apollo/client/cache/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/cache/inmemory/policies', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/cache/inmemory/policies' does not exist, skipping all lookups in it.", + "======== Module name './inmemory/policies' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/cache/index.d.ts", + "moduleSpecifier": "./inmemory/object-canon", + "pos": 859, + "end": 885, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './inmemory/object-canon' from '/node_modules/@apollo/client/cache/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/cache/inmemory/object-canon', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/cache/inmemory/object-canon' does not exist, skipping all lookups in it.", + "======== Module name './inmemory/object-canon' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/cache/index.d.ts", + "moduleSpecifier": "./inmemory/fragmentRegistry", + "pos": 947, + "end": 977, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './inmemory/fragmentRegistry' from '/node_modules/@apollo/client/cache/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/cache/inmemory/fragmentRegistry', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/cache/inmemory/fragmentRegistry' does not exist, skipping all lookups in it.", + "======== Module name './inmemory/fragmentRegistry' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/cache/index.d.ts", + "moduleSpecifier": "./inmemory/types", + "pos": 992, + "end": 1011, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './inmemory/types' from '/node_modules/@apollo/client/cache/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/cache/inmemory/types', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/cache/inmemory/types' does not exist, skipping all lookups in it.", + "======== Module name './inmemory/types' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/core/index.d.ts", + "moduleSpecifier": "./ApolloClient", + "pos": 80, + "end": 97, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './ApolloClient' from '/node_modules/@apollo/client/core/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/core/ApolloClient', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/core/ApolloClient' does not exist, skipping all lookups in it.", + "======== Module name './ApolloClient' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/core/index.d.ts", + "moduleSpecifier": "./ObservableQuery", + "pos": 169, + "end": 189, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './ObservableQuery' from '/node_modules/@apollo/client/core/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/core/ObservableQuery', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/core/ObservableQuery' does not exist, skipping all lookups in it.", + "======== Module name './ObservableQuery' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/core/index.d.ts", + "moduleSpecifier": "./watchQueryOptions", + "pos": 373, + "end": 395, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './watchQueryOptions' from '/node_modules/@apollo/client/core/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/core/watchQueryOptions', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/core/watchQueryOptions' does not exist, skipping all lookups in it.", + "======== Module name './watchQueryOptions' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/core/index.d.ts", + "moduleSpecifier": "./networkStatus", + "pos": 426, + "end": 444, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './networkStatus' from '/node_modules/@apollo/client/core/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/core/networkStatus', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/core/networkStatus' does not exist, skipping all lookups in it.", + "======== Module name './networkStatus' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/core/index.d.ts", + "moduleSpecifier": "./types", + "pos": 459, + "end": 469, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './types' from '/node_modules/@apollo/client/core/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/core/types', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/core/types' does not exist, skipping all lookups in it.", + "======== Module name './types' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/core/index.d.ts", + "moduleSpecifier": "./LocalState", + "pos": 513, + "end": 528, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './LocalState' from '/node_modules/@apollo/client/core/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/core/LocalState', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/core/LocalState' does not exist, skipping all lookups in it.", + "======== Module name './LocalState' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/core/index.d.ts", + "moduleSpecifier": "../errors", + "pos": 572, + "end": 584, + "resolutionMode": 99, + "trace": [ + "======== Resolving module '../errors' from '/node_modules/@apollo/client/core/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/errors', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name '../errors' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/core/index.d.ts", + "moduleSpecifier": "../cache", + "pos": 865, + "end": 876, + "resolutionMode": 99, + "trace": [ + "======== Resolving module '../cache' from '/node_modules/@apollo/client/core/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/cache', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name '../cache' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/core/index.d.ts", + "moduleSpecifier": "../cache/inmemory/types", + "pos": 891, + "end": 917, + "resolutionMode": 99, + "trace": [ + "======== Resolving module '../cache/inmemory/types' from '/node_modules/@apollo/client/core/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/cache/inmemory/types', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/cache/inmemory/types' does not exist, skipping all lookups in it.", + "======== Module name '../cache/inmemory/types' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/core/index.d.ts", + "moduleSpecifier": "../link/core", + "pos": 932, + "end": 947, + "resolutionMode": 99, + "trace": [ + "======== Resolving module '../link/core' from '/node_modules/@apollo/client/core/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/core', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name '../link/core' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/core/index.d.ts", + "moduleSpecifier": "../link/http", + "pos": 962, + "end": 977, + "resolutionMode": 99, + "trace": [ + "======== Resolving module '../link/http' from '/node_modules/@apollo/client/core/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/http', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name '../link/http' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/core/index.d.ts", + "moduleSpecifier": "../link/utils", + "pos": 1060, + "end": 1076, + "resolutionMode": 99, + "trace": [ + "======== Resolving module '../link/utils' from '/node_modules/@apollo/client/core/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/utils', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name '../link/utils' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/core/index.d.ts", + "moduleSpecifier": "../utilities", + "pos": 1191, + "end": 1206, + "resolutionMode": 99, + "trace": [ + "======== Resolving module '../utilities' from '/node_modules/@apollo/client/core/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name '../utilities' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/errors/index.d.ts", + "moduleSpecifier": "../utilities/globals", + "pos": 6, + "end": 29, + "resolutionMode": 99, + "trace": [ + "======== Resolving module '../utilities/globals' from '/node_modules/@apollo/client/errors/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/globals', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name '../utilities/globals' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/errors/index.d.ts", + "moduleSpecifier": "../link/http", + "pos": 127, + "end": 142, + "resolutionMode": 99, + "trace": [ + "======== Resolving module '../link/http' from '/node_modules/@apollo/client/errors/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/http', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name '../link/http' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/errors/index.d.ts", + "moduleSpecifier": "../link/utils", + "pos": 171, + "end": 187, + "resolutionMode": 99, + "trace": [ + "======== Resolving module '../link/utils' from '/node_modules/@apollo/client/errors/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/utils', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name '../link/utils' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/errors/index.d.ts", + "moduleSpecifier": "../link/core", + "pos": 216, + "end": 231, + "resolutionMode": 99, + "trace": [ + "======== Resolving module '../link/core' from '/node_modules/@apollo/client/errors/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/core', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name '../link/core' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/link/batch/index.d.ts", + "moduleSpecifier": "./batchLink", + "pos": 13, + "end": 27, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './batchLink' from '/node_modules/@apollo/client/link/batch/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/batch/batchLink', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/link/batch/batchLink' does not exist, skipping all lookups in it.", + "======== Module name './batchLink' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/link/batch-http/index.d.ts", + "moduleSpecifier": "./batchHttpLink", + "pos": 13, + "end": 31, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './batchHttpLink' from '/node_modules/@apollo/client/link/batch-http/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/batch-http/batchHttpLink', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/link/batch-http/batchHttpLink' does not exist, skipping all lookups in it.", + "======== Module name './batchHttpLink' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/link/context/index.d.ts", + "moduleSpecifier": "../core", + "pos": 42, + "end": 52, + "resolutionMode": 99, + "trace": [ + "======== Resolving module '../core' from '/node_modules/@apollo/client/link/context/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/core', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name '../core' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/link/context/index.d.ts", + "moduleSpecifier": "../../core", + "pos": 84, + "end": 97, + "resolutionMode": 99, + "trace": [ + "======== Resolving module '../../core' from '/node_modules/@apollo/client/link/context/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/core', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name '../../core' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/link/core/index.d.ts", + "moduleSpecifier": "../../utilities/globals", + "pos": 6, + "end": 32, + "resolutionMode": 99, + "trace": [ + "======== Resolving module '../../utilities/globals' from '/node_modules/@apollo/client/link/core/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/globals', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name '../../utilities/globals' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/link/core/index.d.ts", + "moduleSpecifier": "./empty", + "pos": 55, + "end": 65, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './empty' from '/node_modules/@apollo/client/link/core/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/core/empty', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/link/core/empty' does not exist, skipping all lookups in it.", + "======== Module name './empty' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/link/core/index.d.ts", + "moduleSpecifier": "./from", + "pos": 87, + "end": 96, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './from' from '/node_modules/@apollo/client/link/core/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/core/from', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/link/core/from' does not exist, skipping all lookups in it.", + "======== Module name './from' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/link/core/index.d.ts", + "moduleSpecifier": "./split", + "pos": 119, + "end": 129, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './split' from '/node_modules/@apollo/client/link/core/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/core/split', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/link/core/split' does not exist, skipping all lookups in it.", + "======== Module name './split' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/link/core/index.d.ts", + "moduleSpecifier": "./concat", + "pos": 153, + "end": 164, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './concat' from '/node_modules/@apollo/client/link/core/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/core/concat', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/link/core/concat' does not exist, skipping all lookups in it.", + "======== Module name './concat' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/link/core/index.d.ts", + "moduleSpecifier": "./execute", + "pos": 189, + "end": 201, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './execute' from '/node_modules/@apollo/client/link/core/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/core/execute', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/link/core/execute' does not exist, skipping all lookups in it.", + "======== Module name './execute' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/link/core/index.d.ts", + "moduleSpecifier": "./ApolloLink", + "pos": 229, + "end": 244, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './ApolloLink' from '/node_modules/@apollo/client/link/core/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/core/ApolloLink', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/link/core/ApolloLink' does not exist, skipping all lookups in it.", + "======== Module name './ApolloLink' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/link/core/index.d.ts", + "moduleSpecifier": "./types", + "pos": 259, + "end": 269, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './types' from '/node_modules/@apollo/client/link/core/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/core/types', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/link/core/types' does not exist, skipping all lookups in it.", + "======== Module name './types' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/link/error/index.d.ts", + "moduleSpecifier": "../../errors", + "pos": 86, + "end": 101, + "resolutionMode": 99, + "trace": [ + "======== Resolving module '../../errors' from '/node_modules/@apollo/client/link/error/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/errors', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name '../../errors' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/link/error/index.d.ts", + "moduleSpecifier": "../../utilities", + "pos": 129, + "end": 147, + "resolutionMode": 99, + "trace": [ + "======== Resolving module '../../utilities' from '/node_modules/@apollo/client/link/error/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name '../../utilities' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/link/error/index.d.ts", + "moduleSpecifier": "../core", + "pos": 209, + "end": 219, + "resolutionMode": 99, + "trace": [ + "======== Resolving module '../core' from '/node_modules/@apollo/client/link/error/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/core', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name '../core' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/link/http/index.d.ts", + "moduleSpecifier": "../../utilities/globals", + "pos": 6, + "end": 32, + "resolutionMode": 99, + "trace": [ + "======== Resolving module '../../utilities/globals' from '/node_modules/@apollo/client/link/http/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/globals', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name '../../utilities/globals' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/link/http/index.d.ts", + "moduleSpecifier": "./parseAndCheckHttpResponse", + "pos": 93, + "end": 123, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './parseAndCheckHttpResponse' from '/node_modules/@apollo/client/link/http/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/http/parseAndCheckHttpResponse', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/link/http/parseAndCheckHttpResponse' does not exist, skipping all lookups in it.", + "======== Module name './parseAndCheckHttpResponse' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/link/http/index.d.ts", + "moduleSpecifier": "./serializeFetchParameter", + "pos": 182, + "end": 210, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './serializeFetchParameter' from '/node_modules/@apollo/client/link/http/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/http/serializeFetchParameter', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/link/http/serializeFetchParameter' does not exist, skipping all lookups in it.", + "======== Module name './serializeFetchParameter' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/link/http/index.d.ts", + "moduleSpecifier": "./selectHttpOptionsAndBody", + "pos": 348, + "end": 377, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './selectHttpOptionsAndBody' from '/node_modules/@apollo/client/link/http/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/http/selectHttpOptionsAndBody', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/link/http/selectHttpOptionsAndBody' does not exist, skipping all lookups in it.", + "======== Module name './selectHttpOptionsAndBody' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/link/http/index.d.ts", + "moduleSpecifier": "./checkFetcher", + "pos": 407, + "end": 424, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './checkFetcher' from '/node_modules/@apollo/client/link/http/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/http/checkFetcher', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/link/http/checkFetcher' does not exist, skipping all lookups in it.", + "======== Module name './checkFetcher' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/link/http/index.d.ts", + "moduleSpecifier": "./createSignalIfSupported", + "pos": 465, + "end": 493, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './createSignalIfSupported' from '/node_modules/@apollo/client/link/http/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/http/createSignalIfSupported', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/link/http/createSignalIfSupported' does not exist, skipping all lookups in it.", + "======== Module name './createSignalIfSupported' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/link/http/index.d.ts", + "moduleSpecifier": "./selectURI", + "pos": 520, + "end": 534, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './selectURI' from '/node_modules/@apollo/client/link/http/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/http/selectURI', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/link/http/selectURI' does not exist, skipping all lookups in it.", + "======== Module name './selectURI' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/link/http/index.d.ts", + "moduleSpecifier": "./createHttpLink", + "pos": 566, + "end": 585, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './createHttpLink' from '/node_modules/@apollo/client/link/http/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/http/createHttpLink', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/link/http/createHttpLink' does not exist, skipping all lookups in it.", + "======== Module name './createHttpLink' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/link/http/index.d.ts", + "moduleSpecifier": "./HttpLink", + "pos": 611, + "end": 624, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './HttpLink' from '/node_modules/@apollo/client/link/http/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/http/HttpLink', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/link/http/HttpLink' does not exist, skipping all lookups in it.", + "======== Module name './HttpLink' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/link/http/index.d.ts", + "moduleSpecifier": "./rewriteURIForGET", + "pos": 658, + "end": 679, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './rewriteURIForGET' from '/node_modules/@apollo/client/link/http/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/http/rewriteURIForGET', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/link/http/rewriteURIForGET' does not exist, skipping all lookups in it.", + "======== Module name './rewriteURIForGET' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/link/persisted-queries/index.d.ts", + "moduleSpecifier": "../core", + "pos": 108, + "end": 118, + "resolutionMode": 99, + "trace": [ + "======== Resolving module '../core' from '/node_modules/@apollo/client/link/persisted-queries/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/core', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name '../core' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/link/persisted-queries/index.d.ts", + "moduleSpecifier": "../../errors", + "pos": 148, + "end": 163, + "resolutionMode": 99, + "trace": [ + "======== Resolving module '../../errors' from '/node_modules/@apollo/client/link/persisted-queries/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/errors', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name '../../errors' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/link/retry/index.d.ts", + "moduleSpecifier": "./retryLink", + "pos": 13, + "end": 27, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './retryLink' from '/node_modules/@apollo/client/link/retry/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/retry/retryLink', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/link/retry/retryLink' does not exist, skipping all lookups in it.", + "======== Module name './retryLink' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/link/schema/index.d.ts", + "moduleSpecifier": "../core", + "pos": 91, + "end": 101, + "resolutionMode": 99, + "trace": [ + "======== Resolving module '../core' from '/node_modules/@apollo/client/link/schema/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/core', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name '../core' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/link/schema/index.d.ts", + "moduleSpecifier": "../../utilities", + "pos": 129, + "end": 147, + "resolutionMode": 99, + "trace": [ + "======== Resolving module '../../utilities' from '/node_modules/@apollo/client/link/schema/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name '../../utilities' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/link/subscriptions/index.d.ts", + "moduleSpecifier": "../core", + "pos": 92, + "end": 102, + "resolutionMode": 99, + "trace": [ + "======== Resolving module '../core' from '/node_modules/@apollo/client/link/subscriptions/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/core', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name '../core' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/link/subscriptions/index.d.ts", + "moduleSpecifier": "../../utilities", + "pos": 130, + "end": 148, + "resolutionMode": 99, + "trace": [ + "======== Resolving module '../../utilities' from '/node_modules/@apollo/client/link/subscriptions/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name '../../utilities' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/link/utils/index.d.ts", + "moduleSpecifier": "../../utilities/globals", + "pos": 6, + "end": 32, + "resolutionMode": 99, + "trace": [ + "======== Resolving module '../../utilities/globals' from '/node_modules/@apollo/client/link/utils/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/globals', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name '../../utilities/globals' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/link/utils/index.d.ts", + "moduleSpecifier": "./fromError", + "pos": 59, + "end": 73, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './fromError' from '/node_modules/@apollo/client/link/utils/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/utils/fromError', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/link/utils/fromError' does not exist, skipping all lookups in it.", + "======== Module name './fromError' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/link/utils/index.d.ts", + "moduleSpecifier": "./toPromise", + "pos": 100, + "end": 114, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './toPromise' from '/node_modules/@apollo/client/link/utils/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/utils/toPromise', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/link/utils/toPromise' does not exist, skipping all lookups in it.", + "======== Module name './toPromise' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/link/utils/index.d.ts", + "moduleSpecifier": "./fromPromise", + "pos": 143, + "end": 159, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './fromPromise' from '/node_modules/@apollo/client/link/utils/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/utils/fromPromise', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/link/utils/fromPromise' does not exist, skipping all lookups in it.", + "======== Module name './fromPromise' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/link/utils/index.d.ts", + "moduleSpecifier": "./throwServerError", + "pos": 206, + "end": 227, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './throwServerError' from '/node_modules/@apollo/client/link/utils/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/utils/throwServerError', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/link/utils/throwServerError' does not exist, skipping all lookups in it.", + "======== Module name './throwServerError' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/link/utils/index.d.ts", + "moduleSpecifier": "./validateOperation", + "pos": 262, + "end": 284, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './validateOperation' from '/node_modules/@apollo/client/link/utils/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/utils/validateOperation', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/link/utils/validateOperation' does not exist, skipping all lookups in it.", + "======== Module name './validateOperation' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/link/utils/index.d.ts", + "moduleSpecifier": "./createOperation", + "pos": 317, + "end": 337, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './createOperation' from '/node_modules/@apollo/client/link/utils/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/utils/createOperation', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/link/utils/createOperation' does not exist, skipping all lookups in it.", + "======== Module name './createOperation' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/link/utils/index.d.ts", + "moduleSpecifier": "./transformOperation", + "pos": 373, + "end": 396, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './transformOperation' from '/node_modules/@apollo/client/link/utils/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/utils/transformOperation', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/link/utils/transformOperation' does not exist, skipping all lookups in it.", + "======== Module name './transformOperation' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/link/ws/index.d.ts", + "moduleSpecifier": "../core", + "pos": 130, + "end": 140, + "resolutionMode": 99, + "trace": [ + "======== Resolving module '../core' from '/node_modules/@apollo/client/link/ws/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/core', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name '../core' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/link/ws/index.d.ts", + "moduleSpecifier": "../../utilities", + "pos": 168, + "end": 186, + "resolutionMode": 99, + "trace": [ + "======== Resolving module '../../utilities' from '/node_modules/@apollo/client/link/ws/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name '../../utilities' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/react/index.d.ts", + "moduleSpecifier": "../utilities/globals", + "pos": 6, + "end": 29, + "resolutionMode": 99, + "trace": [ + "======== Resolving module '../utilities/globals' from '/node_modules/@apollo/client/react/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/globals', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name '../utilities/globals' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/react/index.d.ts", + "moduleSpecifier": "./context", + "pos": 135, + "end": 147, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './context' from '/node_modules/@apollo/client/react/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/context', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name './context' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/react/index.d.ts", + "moduleSpecifier": "./hooks", + "pos": 162, + "end": 172, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './hooks' from '/node_modules/@apollo/client/react/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/hooks', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name './hooks' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/react/index.d.ts", + "moduleSpecifier": "./parser", + "pos": 246, + "end": 257, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './parser' from '/node_modules/@apollo/client/react/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/parser', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name './parser' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/react/index.d.ts", + "moduleSpecifier": "./types/types", + "pos": 272, + "end": 288, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './types/types' from '/node_modules/@apollo/client/react/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/types/types', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/react/types/types' does not exist, skipping all lookups in it.", + "======== Module name './types/types' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/react/components/index.d.ts", + "moduleSpecifier": "./Query", + "pos": 21, + "end": 31, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './Query' from '/node_modules/@apollo/client/react/components/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/components/Query', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/react/components/Query' does not exist, skipping all lookups in it.", + "======== Module name './Query' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/react/components/index.d.ts", + "moduleSpecifier": "./Mutation", + "pos": 57, + "end": 70, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './Mutation' from '/node_modules/@apollo/client/react/components/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/components/Mutation', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/react/components/Mutation' does not exist, skipping all lookups in it.", + "======== Module name './Mutation' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/react/components/index.d.ts", + "moduleSpecifier": "./Subscription", + "pos": 100, + "end": 117, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './Subscription' from '/node_modules/@apollo/client/react/components/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/components/Subscription', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/react/components/Subscription' does not exist, skipping all lookups in it.", + "======== Module name './Subscription' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/react/components/index.d.ts", + "moduleSpecifier": "./types", + "pos": 132, + "end": 142, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './types' from '/node_modules/@apollo/client/react/components/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/components/types', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/react/components/types' does not exist, skipping all lookups in it.", + "======== Module name './types' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/react/context/index.d.ts", + "moduleSpecifier": "../../utilities/globals", + "pos": 6, + "end": 32, + "resolutionMode": 99, + "trace": [ + "======== Resolving module '../../utilities/globals' from '/node_modules/@apollo/client/react/context/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/globals', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name '../../utilities/globals' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/react/context/index.d.ts", + "moduleSpecifier": "./ApolloConsumer", + "pos": 85, + "end": 104, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './ApolloConsumer' from '/node_modules/@apollo/client/react/context/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/context/ApolloConsumer', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/react/context/ApolloConsumer' does not exist, skipping all lookups in it.", + "======== Module name './ApolloConsumer' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/react/context/index.d.ts", + "moduleSpecifier": "./ApolloContext", + "pos": 198, + "end": 216, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './ApolloContext' from '/node_modules/@apollo/client/react/context/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/context/ApolloContext', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/react/context/ApolloContext' does not exist, skipping all lookups in it.", + "======== Module name './ApolloContext' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/react/context/index.d.ts", + "moduleSpecifier": "./ApolloProvider", + "pos": 269, + "end": 288, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './ApolloProvider' from '/node_modules/@apollo/client/react/context/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/context/ApolloProvider', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/react/context/ApolloProvider' does not exist, skipping all lookups in it.", + "======== Module name './ApolloProvider' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/react/hoc/index.d.ts", + "moduleSpecifier": "../../utilities/globals", + "pos": 6, + "end": 32, + "resolutionMode": 99, + "trace": [ + "======== Resolving module '../../utilities/globals' from '/node_modules/@apollo/client/react/hoc/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/globals', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name '../../utilities/globals' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/react/hoc/index.d.ts", + "moduleSpecifier": "./graphql", + "pos": 57, + "end": 69, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './graphql' from '/node_modules/@apollo/client/react/hoc/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/hoc/graphql', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/react/hoc/graphql' does not exist, skipping all lookups in it.", + "======== Module name './graphql' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/react/hoc/index.d.ts", + "moduleSpecifier": "./query-hoc", + "pos": 96, + "end": 110, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './query-hoc' from '/node_modules/@apollo/client/react/hoc/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/hoc/query-hoc', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/react/hoc/query-hoc' does not exist, skipping all lookups in it.", + "======== Module name './query-hoc' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/react/hoc/index.d.ts", + "moduleSpecifier": "./mutation-hoc", + "pos": 140, + "end": 157, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './mutation-hoc' from '/node_modules/@apollo/client/react/hoc/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/hoc/mutation-hoc', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/react/hoc/mutation-hoc' does not exist, skipping all lookups in it.", + "======== Module name './mutation-hoc' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/react/hoc/index.d.ts", + "moduleSpecifier": "./subscription-hoc", + "pos": 191, + "end": 212, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './subscription-hoc' from '/node_modules/@apollo/client/react/hoc/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/hoc/subscription-hoc', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/react/hoc/subscription-hoc' does not exist, skipping all lookups in it.", + "======== Module name './subscription-hoc' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/react/hoc/index.d.ts", + "moduleSpecifier": "./withApollo", + "pos": 240, + "end": 255, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './withApollo' from '/node_modules/@apollo/client/react/hoc/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/hoc/withApollo', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/react/hoc/withApollo' does not exist, skipping all lookups in it.", + "======== Module name './withApollo' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/react/hoc/index.d.ts", + "moduleSpecifier": "./types", + "pos": 270, + "end": 280, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './types' from '/node_modules/@apollo/client/react/hoc/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/hoc/types', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/react/hoc/types' does not exist, skipping all lookups in it.", + "======== Module name './types' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/react/hooks/index.d.ts", + "moduleSpecifier": "../../utilities/globals", + "pos": 6, + "end": 32, + "resolutionMode": 99, + "trace": [ + "======== Resolving module '../../utilities/globals' from '/node_modules/@apollo/client/react/hooks/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/globals', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name '../../utilities/globals' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/react/hooks/index.d.ts", + "moduleSpecifier": "./useApolloClient", + "pos": 47, + "end": 67, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './useApolloClient' from '/node_modules/@apollo/client/react/hooks/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/hooks/useApolloClient', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/react/hooks/useApolloClient' does not exist, skipping all lookups in it.", + "======== Module name './useApolloClient' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/react/hooks/index.d.ts", + "moduleSpecifier": "./useLazyQuery", + "pos": 82, + "end": 99, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './useLazyQuery' from '/node_modules/@apollo/client/react/hooks/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/hooks/useLazyQuery', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/react/hooks/useLazyQuery' does not exist, skipping all lookups in it.", + "======== Module name './useLazyQuery' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/react/hooks/index.d.ts", + "moduleSpecifier": "./useMutation", + "pos": 114, + "end": 130, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './useMutation' from '/node_modules/@apollo/client/react/hooks/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/hooks/useMutation', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/react/hooks/useMutation' does not exist, skipping all lookups in it.", + "======== Module name './useMutation' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/react/hooks/index.d.ts", + "moduleSpecifier": "./useQuery", + "pos": 156, + "end": 169, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './useQuery' from '/node_modules/@apollo/client/react/hooks/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/hooks/useQuery', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/react/hooks/useQuery' does not exist, skipping all lookups in it.", + "======== Module name './useQuery' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/react/hooks/index.d.ts", + "moduleSpecifier": "./useSubscription", + "pos": 184, + "end": 204, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './useSubscription' from '/node_modules/@apollo/client/react/hooks/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/hooks/useSubscription', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/react/hooks/useSubscription' does not exist, skipping all lookups in it.", + "======== Module name './useSubscription' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/react/hooks/index.d.ts", + "moduleSpecifier": "./useReactiveVar", + "pos": 219, + "end": 238, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './useReactiveVar' from '/node_modules/@apollo/client/react/hooks/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/hooks/useReactiveVar', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/react/hooks/useReactiveVar' does not exist, skipping all lookups in it.", + "======== Module name './useReactiveVar' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/react/hooks/index.d.ts", + "moduleSpecifier": "./useFragment", + "pos": 253, + "end": 269, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './useFragment' from '/node_modules/@apollo/client/react/hooks/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/hooks/useFragment', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/react/hooks/useFragment' does not exist, skipping all lookups in it.", + "======== Module name './useFragment' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/react/ssr/index.d.ts", + "moduleSpecifier": "./getDataFromTree", + "pos": 50, + "end": 70, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './getDataFromTree' from '/node_modules/@apollo/client/react/ssr/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/ssr/getDataFromTree', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/react/ssr/getDataFromTree' does not exist, skipping all lookups in it.", + "======== Module name './getDataFromTree' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/react/ssr/index.d.ts", + "moduleSpecifier": "./renderToStringWithData", + "pos": 110, + "end": 137, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './renderToStringWithData' from '/node_modules/@apollo/client/react/ssr/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/ssr/renderToStringWithData', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/react/ssr/renderToStringWithData' does not exist, skipping all lookups in it.", + "======== Module name './renderToStringWithData' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/react/ssr/index.d.ts", + "moduleSpecifier": "./RenderPromises", + "pos": 169, + "end": 188, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './RenderPromises' from '/node_modules/@apollo/client/react/ssr/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/ssr/RenderPromises', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/react/ssr/RenderPromises' does not exist, skipping all lookups in it.", + "======== Module name './RenderPromises' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/testing/index.d.ts", + "moduleSpecifier": "../utilities/globals", + "pos": 6, + "end": 29, + "resolutionMode": 99, + "trace": [ + "======== Resolving module '../utilities/globals' from '/node_modules/@apollo/client/testing/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/globals', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name '../utilities/globals' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/testing/index.d.ts", + "moduleSpecifier": "./react/MockedProvider", + "pos": 82, + "end": 107, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './react/MockedProvider' from '/node_modules/@apollo/client/testing/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/testing/react/MockedProvider', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/testing/react/MockedProvider' does not exist, skipping all lookups in it.", + "======== Module name './react/MockedProvider' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/testing/index.d.ts", + "moduleSpecifier": "./core", + "pos": 122, + "end": 131, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './core' from '/node_modules/@apollo/client/testing/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/testing/core', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name './core' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/testing/core/index.d.ts", + "moduleSpecifier": "./mocking/mockLink", + "pos": 89, + "end": 110, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './mocking/mockLink' from '/node_modules/@apollo/client/testing/core/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/testing/core/mocking/mockLink', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/testing/core/mocking/mockLink' does not exist, skipping all lookups in it.", + "======== Module name './mocking/mockLink' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/testing/core/index.d.ts", + "moduleSpecifier": "./mocking/mockSubscriptionLink", + "pos": 168, + "end": 201, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './mocking/mockSubscriptionLink' from '/node_modules/@apollo/client/testing/core/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/testing/core/mocking/mockSubscriptionLink', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/testing/core/mocking/mockSubscriptionLink' does not exist, skipping all lookups in it.", + "======== Module name './mocking/mockSubscriptionLink' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/testing/core/index.d.ts", + "moduleSpecifier": "./mocking/mockClient", + "pos": 235, + "end": 258, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './mocking/mockClient' from '/node_modules/@apollo/client/testing/core/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/testing/core/mocking/mockClient', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/testing/core/mocking/mockClient' does not exist, skipping all lookups in it.", + "======== Module name './mocking/mockClient' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/testing/core/index.d.ts", + "moduleSpecifier": "./subscribeAndCount", + "pos": 304, + "end": 326, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './subscribeAndCount' from '/node_modules/@apollo/client/testing/core/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/testing/core/subscribeAndCount', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/testing/core/subscribeAndCount' does not exist, skipping all lookups in it.", + "======== Module name './subscribeAndCount' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/testing/core/index.d.ts", + "moduleSpecifier": "./itAsync", + "pos": 351, + "end": 363, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './itAsync' from '/node_modules/@apollo/client/testing/core/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/testing/core/itAsync', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/testing/core/itAsync' does not exist, skipping all lookups in it.", + "======== Module name './itAsync' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/testing/core/index.d.ts", + "moduleSpecifier": "./wait", + "pos": 391, + "end": 400, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './wait' from '/node_modules/@apollo/client/testing/core/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/testing/core/wait', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/testing/core/wait' does not exist, skipping all lookups in it.", + "======== Module name './wait' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/testing/core/index.d.ts", + "moduleSpecifier": "./withConsoleSpy", + "pos": 415, + "end": 434, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './withConsoleSpy' from '/node_modules/@apollo/client/testing/core/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/testing/core/withConsoleSpy', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/testing/core/withConsoleSpy' does not exist, skipping all lookups in it.", + "======== Module name './withConsoleSpy' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", + "moduleSpecifier": "./globals", + "pos": 26, + "end": 38, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './globals' from '/node_modules/@apollo/client/utilities/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/globals', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name './globals' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", + "moduleSpecifier": "./graphql/directives", + "pos": 218, + "end": 241, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './graphql/directives' from '/node_modules/@apollo/client/utilities/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/graphql/directives', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/utilities/graphql/directives' does not exist, skipping all lookups in it.", + "======== Module name './graphql/directives' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", + "moduleSpecifier": "./graphql/fragments", + "pos": 363, + "end": 385, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './graphql/fragments' from '/node_modules/@apollo/client/utilities/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/graphql/fragments', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/utilities/graphql/fragments' does not exist, skipping all lookups in it.", + "======== Module name './graphql/fragments' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", + "moduleSpecifier": "./graphql/getFromAST", + "pos": 563, + "end": 586, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './graphql/getFromAST' from '/node_modules/@apollo/client/utilities/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/graphql/getFromAST', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/utilities/graphql/getFromAST' does not exist, skipping all lookups in it.", + "======== Module name './graphql/getFromAST' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", + "moduleSpecifier": "./graphql/storeUtils", + "pos": 879, + "end": 902, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './graphql/storeUtils' from '/node_modules/@apollo/client/utilities/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/graphql/storeUtils', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/utilities/graphql/storeUtils' does not exist, skipping all lookups in it.", + "======== Module name './graphql/storeUtils' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", + "moduleSpecifier": "./graphql/transform", + "pos": 1348, + "end": 1370, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './graphql/transform' from '/node_modules/@apollo/client/utilities/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/graphql/transform', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/utilities/graphql/transform' does not exist, skipping all lookups in it.", + "======== Module name './graphql/transform' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", + "moduleSpecifier": "./policies/pagination", + "pos": 1450, + "end": 1474, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './policies/pagination' from '/node_modules/@apollo/client/utilities/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/policies/pagination', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/utilities/policies/pagination' does not exist, skipping all lookups in it.", + "======== Module name './policies/pagination' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", + "moduleSpecifier": "./observables/Observable", + "pos": 1536, + "end": 1563, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './observables/Observable' from '/node_modules/@apollo/client/utilities/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/observables/Observable', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/utilities/observables/Observable' does not exist, skipping all lookups in it.", + "======== Module name './observables/Observable' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", + "moduleSpecifier": "./common/mergeDeep", + "pos": 1578, + "end": 1599, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './common/mergeDeep' from '/node_modules/@apollo/client/utilities/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/common/mergeDeep', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/utilities/common/mergeDeep' does not exist, skipping all lookups in it.", + "======== Module name './common/mergeDeep' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", + "moduleSpecifier": "./common/cloneDeep", + "pos": 1614, + "end": 1635, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './common/cloneDeep' from '/node_modules/@apollo/client/utilities/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/common/cloneDeep', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/utilities/common/cloneDeep' does not exist, skipping all lookups in it.", + "======== Module name './common/cloneDeep' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", + "moduleSpecifier": "./common/maybeDeepFreeze", + "pos": 1650, + "end": 1677, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './common/maybeDeepFreeze' from '/node_modules/@apollo/client/utilities/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/common/maybeDeepFreeze', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/utilities/common/maybeDeepFreeze' does not exist, skipping all lookups in it.", + "======== Module name './common/maybeDeepFreeze' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", + "moduleSpecifier": "./observables/iteration", + "pos": 1692, + "end": 1718, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './observables/iteration' from '/node_modules/@apollo/client/utilities/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/observables/iteration', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/utilities/observables/iteration' does not exist, skipping all lookups in it.", + "======== Module name './observables/iteration' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", + "moduleSpecifier": "./observables/asyncMap", + "pos": 1733, + "end": 1758, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './observables/asyncMap' from '/node_modules/@apollo/client/utilities/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/observables/asyncMap', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/utilities/observables/asyncMap' does not exist, skipping all lookups in it.", + "======== Module name './observables/asyncMap' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", + "moduleSpecifier": "./observables/Concast", + "pos": 1773, + "end": 1797, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './observables/Concast' from '/node_modules/@apollo/client/utilities/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/observables/Concast', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/utilities/observables/Concast' does not exist, skipping all lookups in it.", + "======== Module name './observables/Concast' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", + "moduleSpecifier": "./observables/subclassing", + "pos": 1812, + "end": 1840, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './observables/subclassing' from '/node_modules/@apollo/client/utilities/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/observables/subclassing', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/utilities/observables/subclassing' does not exist, skipping all lookups in it.", + "======== Module name './observables/subclassing' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", + "moduleSpecifier": "./common/arrays", + "pos": 1855, + "end": 1873, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './common/arrays' from '/node_modules/@apollo/client/utilities/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/common/arrays', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/utilities/common/arrays' does not exist, skipping all lookups in it.", + "======== Module name './common/arrays' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", + "moduleSpecifier": "./common/objects", + "pos": 1888, + "end": 1907, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './common/objects' from '/node_modules/@apollo/client/utilities/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/common/objects', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/utilities/common/objects' does not exist, skipping all lookups in it.", + "======== Module name './common/objects' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", + "moduleSpecifier": "./common/errorHandling", + "pos": 1922, + "end": 1947, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './common/errorHandling' from '/node_modules/@apollo/client/utilities/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/common/errorHandling', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/utilities/common/errorHandling' does not exist, skipping all lookups in it.", + "======== Module name './common/errorHandling' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", + "moduleSpecifier": "./common/canUse", + "pos": 1962, + "end": 1980, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './common/canUse' from '/node_modules/@apollo/client/utilities/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/common/canUse', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/utilities/common/canUse' does not exist, skipping all lookups in it.", + "======== Module name './common/canUse' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", + "moduleSpecifier": "./common/compact", + "pos": 1995, + "end": 2014, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './common/compact' from '/node_modules/@apollo/client/utilities/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/common/compact', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/utilities/common/compact' does not exist, skipping all lookups in it.", + "======== Module name './common/compact' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", + "moduleSpecifier": "./common/makeUniqueId", + "pos": 2029, + "end": 2053, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './common/makeUniqueId' from '/node_modules/@apollo/client/utilities/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/common/makeUniqueId', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/utilities/common/makeUniqueId' does not exist, skipping all lookups in it.", + "======== Module name './common/makeUniqueId' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", + "moduleSpecifier": "./common/stringifyForDisplay", + "pos": 2068, + "end": 2099, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './common/stringifyForDisplay' from '/node_modules/@apollo/client/utilities/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/common/stringifyForDisplay', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/utilities/common/stringifyForDisplay' does not exist, skipping all lookups in it.", + "======== Module name './common/stringifyForDisplay' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", + "moduleSpecifier": "./common/mergeOptions", + "pos": 2114, + "end": 2138, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './common/mergeOptions' from '/node_modules/@apollo/client/utilities/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/common/mergeOptions', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/utilities/common/mergeOptions' does not exist, skipping all lookups in it.", + "======== Module name './common/mergeOptions' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", + "moduleSpecifier": "./types/IsStrictlyAny", + "pos": 2153, + "end": 2177, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './types/IsStrictlyAny' from '/node_modules/@apollo/client/utilities/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/types/IsStrictlyAny', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/utilities/types/IsStrictlyAny' does not exist, skipping all lookups in it.", + "======== Module name './types/IsStrictlyAny' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/utilities/globals/index.d.ts", + "moduleSpecifier": "./DEV", + "pos": 73, + "end": 81, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './DEV' from '/node_modules/@apollo/client/utilities/globals/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/globals/DEV', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/utilities/globals/DEV' does not exist, skipping all lookups in it.", + "======== Module name './DEV' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/utilities/globals/index.d.ts", + "moduleSpecifier": "./maybe", + "pos": 162, + "end": 172, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './maybe' from '/node_modules/@apollo/client/utilities/globals/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/globals/maybe', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/utilities/globals/maybe' does not exist, skipping all lookups in it.", + "======== Module name './maybe' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@apollo/client/utilities/globals/index.d.ts", + "moduleSpecifier": "./global", + "pos": 207, + "end": 218, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './global' from '/node_modules/@apollo/client/utilities/globals/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/globals/global', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/utilities/globals/global' does not exist, skipping all lookups in it.", + "======== Module name './global' was not resolved. ========" + ] + } + ] +} diff --git a/packages/core/test/snapshots/@apollo__client-3.7.16.tgz.md b/packages/core/test/snapshots/@apollo__client-3.7.16.tgz.md deleted file mode 100644 index 2f4c60b..0000000 --- a/packages/core/test/snapshots/@apollo__client-3.7.16.tgz.md +++ /dev/null @@ -1,2804 +0,0 @@ -# @apollo__client-3.7.16.tgz - -## Problems - -```json -[ - { - "kind": "FalseESM", - "entrypoint": ".", - "resolutionKind": "node16-cjs" - }, - { - "kind": "CJSResolvesToESM", - "entrypoint": ".", - "resolutionKind": "node16-cjs" - }, - { - "kind": "FalseESM", - "entrypoint": ".", - "resolutionKind": "node16-esm" - }, - { - "kind": "FalseESM", - "entrypoint": "./cache", - "resolutionKind": "node16-cjs" - }, - { - "kind": "CJSResolvesToESM", - "entrypoint": "./cache", - "resolutionKind": "node16-cjs" - }, - { - "kind": "FalseESM", - "entrypoint": "./cache", - "resolutionKind": "node16-esm" - }, - { - "kind": "FalseESM", - "entrypoint": "./core", - "resolutionKind": "node16-cjs" - }, - { - "kind": "CJSResolvesToESM", - "entrypoint": "./core", - "resolutionKind": "node16-cjs" - }, - { - "kind": "FalseESM", - "entrypoint": "./core", - "resolutionKind": "node16-esm" - }, - { - "kind": "FalseESM", - "entrypoint": "./errors", - "resolutionKind": "node16-cjs" - }, - { - "kind": "CJSResolvesToESM", - "entrypoint": "./errors", - "resolutionKind": "node16-cjs" - }, - { - "kind": "FalseESM", - "entrypoint": "./errors", - "resolutionKind": "node16-esm" - }, - { - "kind": "FalseESM", - "entrypoint": "./link/batch", - "resolutionKind": "node16-cjs" - }, - { - "kind": "CJSResolvesToESM", - "entrypoint": "./link/batch", - "resolutionKind": "node16-cjs" - }, - { - "kind": "FalseESM", - "entrypoint": "./link/batch", - "resolutionKind": "node16-esm" - }, - { - "kind": "FalseESM", - "entrypoint": "./link/batch-http", - "resolutionKind": "node16-cjs" - }, - { - "kind": "CJSResolvesToESM", - "entrypoint": "./link/batch-http", - "resolutionKind": "node16-cjs" - }, - { - "kind": "FalseESM", - "entrypoint": "./link/batch-http", - "resolutionKind": "node16-esm" - }, - { - "kind": "FalseESM", - "entrypoint": "./link/context", - "resolutionKind": "node16-cjs" - }, - { - "kind": "CJSResolvesToESM", - "entrypoint": "./link/context", - "resolutionKind": "node16-cjs" - }, - { - "kind": "FalseESM", - "entrypoint": "./link/context", - "resolutionKind": "node16-esm" - }, - { - "kind": "FalseESM", - "entrypoint": "./link/core", - "resolutionKind": "node16-cjs" - }, - { - "kind": "CJSResolvesToESM", - "entrypoint": "./link/core", - "resolutionKind": "node16-cjs" - }, - { - "kind": "FalseESM", - "entrypoint": "./link/core", - "resolutionKind": "node16-esm" - }, - { - "kind": "FalseESM", - "entrypoint": "./link/error", - "resolutionKind": "node16-cjs" - }, - { - "kind": "CJSResolvesToESM", - "entrypoint": "./link/error", - "resolutionKind": "node16-cjs" - }, - { - "kind": "FalseESM", - "entrypoint": "./link/error", - "resolutionKind": "node16-esm" - }, - { - "kind": "FalseESM", - "entrypoint": "./link/http", - "resolutionKind": "node16-cjs" - }, - { - "kind": "CJSResolvesToESM", - "entrypoint": "./link/http", - "resolutionKind": "node16-cjs" - }, - { - "kind": "FalseESM", - "entrypoint": "./link/http", - "resolutionKind": "node16-esm" - }, - { - "kind": "FalseESM", - "entrypoint": "./link/persisted-queries", - "resolutionKind": "node16-cjs" - }, - { - "kind": "CJSResolvesToESM", - "entrypoint": "./link/persisted-queries", - "resolutionKind": "node16-cjs" - }, - { - "kind": "FalseESM", - "entrypoint": "./link/persisted-queries", - "resolutionKind": "node16-esm" - }, - { - "kind": "FalseESM", - "entrypoint": "./link/retry", - "resolutionKind": "node16-cjs" - }, - { - "kind": "CJSResolvesToESM", - "entrypoint": "./link/retry", - "resolutionKind": "node16-cjs" - }, - { - "kind": "FalseESM", - "entrypoint": "./link/retry", - "resolutionKind": "node16-esm" - }, - { - "kind": "FalseESM", - "entrypoint": "./link/schema", - "resolutionKind": "node16-cjs" - }, - { - "kind": "CJSResolvesToESM", - "entrypoint": "./link/schema", - "resolutionKind": "node16-cjs" - }, - { - "kind": "FalseESM", - "entrypoint": "./link/schema", - "resolutionKind": "node16-esm" - }, - { - "kind": "FalseESM", - "entrypoint": "./link/subscriptions", - "resolutionKind": "node16-cjs" - }, - { - "kind": "CJSResolvesToESM", - "entrypoint": "./link/subscriptions", - "resolutionKind": "node16-cjs" - }, - { - "kind": "FalseESM", - "entrypoint": "./link/subscriptions", - "resolutionKind": "node16-esm" - }, - { - "kind": "FalseESM", - "entrypoint": "./link/utils", - "resolutionKind": "node16-cjs" - }, - { - "kind": "CJSResolvesToESM", - "entrypoint": "./link/utils", - "resolutionKind": "node16-cjs" - }, - { - "kind": "FalseESM", - "entrypoint": "./link/utils", - "resolutionKind": "node16-esm" - }, - { - "kind": "FalseESM", - "entrypoint": "./link/ws", - "resolutionKind": "node16-cjs" - }, - { - "kind": "CJSResolvesToESM", - "entrypoint": "./link/ws", - "resolutionKind": "node16-cjs" - }, - { - "kind": "FalseESM", - "entrypoint": "./link/ws", - "resolutionKind": "node16-esm" - }, - { - "kind": "FalseESM", - "entrypoint": "./react", - "resolutionKind": "node16-cjs" - }, - { - "kind": "CJSResolvesToESM", - "entrypoint": "./react", - "resolutionKind": "node16-cjs" - }, - { - "kind": "FalseESM", - "entrypoint": "./react", - "resolutionKind": "node16-esm" - }, - { - "kind": "FalseESM", - "entrypoint": "./react/components", - "resolutionKind": "node16-cjs" - }, - { - "kind": "CJSResolvesToESM", - "entrypoint": "./react/components", - "resolutionKind": "node16-cjs" - }, - { - "kind": "FalseESM", - "entrypoint": "./react/components", - "resolutionKind": "node16-esm" - }, - { - "kind": "FalseESM", - "entrypoint": "./react/context", - "resolutionKind": "node16-cjs" - }, - { - "kind": "CJSResolvesToESM", - "entrypoint": "./react/context", - "resolutionKind": "node16-cjs" - }, - { - "kind": "FalseESM", - "entrypoint": "./react/context", - "resolutionKind": "node16-esm" - }, - { - "kind": "FalseESM", - "entrypoint": "./react/hoc", - "resolutionKind": "node16-cjs" - }, - { - "kind": "CJSResolvesToESM", - "entrypoint": "./react/hoc", - "resolutionKind": "node16-cjs" - }, - { - "kind": "FalseESM", - "entrypoint": "./react/hoc", - "resolutionKind": "node16-esm" - }, - { - "kind": "FalseESM", - "entrypoint": "./react/hooks", - "resolutionKind": "node16-cjs" - }, - { - "kind": "CJSResolvesToESM", - "entrypoint": "./react/hooks", - "resolutionKind": "node16-cjs" - }, - { - "kind": "FalseESM", - "entrypoint": "./react/hooks", - "resolutionKind": "node16-esm" - }, - { - "kind": "FalseESM", - "entrypoint": "./react/parser", - "resolutionKind": "node16-cjs" - }, - { - "kind": "CJSResolvesToESM", - "entrypoint": "./react/parser", - "resolutionKind": "node16-cjs" - }, - { - "kind": "FalseESM", - "entrypoint": "./react/parser", - "resolutionKind": "node16-esm" - }, - { - "kind": "FalseESM", - "entrypoint": "./react/ssr", - "resolutionKind": "node16-cjs" - }, - { - "kind": "CJSResolvesToESM", - "entrypoint": "./react/ssr", - "resolutionKind": "node16-cjs" - }, - { - "kind": "FalseESM", - "entrypoint": "./react/ssr", - "resolutionKind": "node16-esm" - }, - { - "kind": "FalseESM", - "entrypoint": "./testing", - "resolutionKind": "node16-cjs" - }, - { - "kind": "CJSResolvesToESM", - "entrypoint": "./testing", - "resolutionKind": "node16-cjs" - }, - { - "kind": "FalseESM", - "entrypoint": "./testing", - "resolutionKind": "node16-esm" - }, - { - "kind": "FalseESM", - "entrypoint": "./testing/core", - "resolutionKind": "node16-cjs" - }, - { - "kind": "CJSResolvesToESM", - "entrypoint": "./testing/core", - "resolutionKind": "node16-cjs" - }, - { - "kind": "FalseESM", - "entrypoint": "./testing/core", - "resolutionKind": "node16-esm" - }, - { - "kind": "FalseESM", - "entrypoint": "./utilities", - "resolutionKind": "node16-cjs" - }, - { - "kind": "CJSResolvesToESM", - "entrypoint": "./utilities", - "resolutionKind": "node16-cjs" - }, - { - "kind": "FalseESM", - "entrypoint": "./utilities", - "resolutionKind": "node16-esm" - }, - { - "kind": "FalseESM", - "entrypoint": "./utilities/globals", - "resolutionKind": "node16-cjs" - }, - { - "kind": "CJSResolvesToESM", - "entrypoint": "./utilities/globals", - "resolutionKind": "node16-cjs" - }, - { - "kind": "FalseESM", - "entrypoint": "./utilities/globals", - "resolutionKind": "node16-esm" - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/index.d.ts", - "moduleSpecifier": "./core", - "pos": 13, - "end": 22, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './core' from '/node_modules/@apollo/client/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/core', target file types: TypeScript, JavaScript, Declaration, JSON.", - "======== Module name './core' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/index.d.ts", - "moduleSpecifier": "./react", - "pos": 37, - "end": 47, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './react' from '/node_modules/@apollo/client/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react', target file types: TypeScript, JavaScript, Declaration, JSON.", - "======== Module name './react' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/cache/index.d.ts", - "moduleSpecifier": "../utilities/globals", - "pos": 6, - "end": 29, - "resolutionMode": 99, - "trace": [ - "======== Resolving module '../utilities/globals' from '/node_modules/@apollo/client/cache/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/globals', target file types: TypeScript, JavaScript, Declaration, JSON.", - "======== Module name '../utilities/globals' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/cache/index.d.ts", - "moduleSpecifier": "./core/cache", - "pos": 71, - "end": 86, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './core/cache' from '/node_modules/@apollo/client/cache/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/cache/core/cache', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/cache/core/cache' does not exist, skipping all lookups in it.", - "======== Module name './core/cache' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/cache/index.d.ts", - "moduleSpecifier": "./core/types/Cache", - "pos": 109, - "end": 130, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './core/types/Cache' from '/node_modules/@apollo/client/cache/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/cache/core/types/Cache', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/cache/core/types/Cache' does not exist, skipping all lookups in it.", - "======== Module name './core/types/Cache' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/cache/index.d.ts", - "moduleSpecifier": "./core/types/DataProxy", - "pos": 157, - "end": 182, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './core/types/DataProxy' from '/node_modules/@apollo/client/cache/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/cache/core/types/DataProxy', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/cache/core/types/DataProxy' does not exist, skipping all lookups in it.", - "======== Module name './core/types/DataProxy' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/cache/index.d.ts", - "moduleSpecifier": "./core/types/common", - "pos": 286, - "end": 308, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './core/types/common' from '/node_modules/@apollo/client/cache/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/cache/core/types/common', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/cache/core/types/common' does not exist, skipping all lookups in it.", - "======== Module name './core/types/common' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/cache/index.d.ts", - "moduleSpecifier": "../utilities", - "pos": 364, - "end": 379, - "resolutionMode": 99, - "trace": [ - "======== Resolving module '../utilities' from '/node_modules/@apollo/client/cache/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities', target file types: TypeScript, JavaScript, Declaration, JSON.", - "======== Module name '../utilities' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/cache/index.d.ts", - "moduleSpecifier": "./inmemory/entityStore", - "pos": 408, - "end": 433, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './inmemory/entityStore' from '/node_modules/@apollo/client/cache/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/cache/inmemory/entityStore', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/cache/inmemory/entityStore' does not exist, skipping all lookups in it.", - "======== Module name './inmemory/entityStore' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/cache/index.d.ts", - "moduleSpecifier": "./inmemory/helpers", - "pos": 499, - "end": 520, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './inmemory/helpers' from '/node_modules/@apollo/client/cache/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/cache/inmemory/helpers', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/cache/inmemory/helpers' does not exist, skipping all lookups in it.", - "======== Module name './inmemory/helpers' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/cache/index.d.ts", - "moduleSpecifier": "./inmemory/inMemoryCache", - "pos": 552, - "end": 579, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './inmemory/inMemoryCache' from '/node_modules/@apollo/client/cache/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/cache/inmemory/inMemoryCache', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/cache/inmemory/inMemoryCache' does not exist, skipping all lookups in it.", - "======== Module name './inmemory/inMemoryCache' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/cache/index.d.ts", - "moduleSpecifier": "./inmemory/reactiveVars", - "pos": 629, - "end": 655, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './inmemory/reactiveVars' from '/node_modules/@apollo/client/cache/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/cache/inmemory/reactiveVars', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/cache/inmemory/reactiveVars' does not exist, skipping all lookups in it.", - "======== Module name './inmemory/reactiveVars' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/cache/index.d.ts", - "moduleSpecifier": "./inmemory/policies", - "pos": 800, - "end": 822, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './inmemory/policies' from '/node_modules/@apollo/client/cache/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/cache/inmemory/policies', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/cache/inmemory/policies' does not exist, skipping all lookups in it.", - "======== Module name './inmemory/policies' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/cache/index.d.ts", - "moduleSpecifier": "./inmemory/object-canon", - "pos": 859, - "end": 885, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './inmemory/object-canon' from '/node_modules/@apollo/client/cache/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/cache/inmemory/object-canon', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/cache/inmemory/object-canon' does not exist, skipping all lookups in it.", - "======== Module name './inmemory/object-canon' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/cache/index.d.ts", - "moduleSpecifier": "./inmemory/fragmentRegistry", - "pos": 947, - "end": 977, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './inmemory/fragmentRegistry' from '/node_modules/@apollo/client/cache/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/cache/inmemory/fragmentRegistry', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/cache/inmemory/fragmentRegistry' does not exist, skipping all lookups in it.", - "======== Module name './inmemory/fragmentRegistry' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/cache/index.d.ts", - "moduleSpecifier": "./inmemory/types", - "pos": 992, - "end": 1011, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './inmemory/types' from '/node_modules/@apollo/client/cache/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/cache/inmemory/types', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/cache/inmemory/types' does not exist, skipping all lookups in it.", - "======== Module name './inmemory/types' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/core/index.d.ts", - "moduleSpecifier": "./ApolloClient", - "pos": 80, - "end": 97, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './ApolloClient' from '/node_modules/@apollo/client/core/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/core/ApolloClient', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/core/ApolloClient' does not exist, skipping all lookups in it.", - "======== Module name './ApolloClient' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/core/index.d.ts", - "moduleSpecifier": "./ObservableQuery", - "pos": 169, - "end": 189, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './ObservableQuery' from '/node_modules/@apollo/client/core/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/core/ObservableQuery', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/core/ObservableQuery' does not exist, skipping all lookups in it.", - "======== Module name './ObservableQuery' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/core/index.d.ts", - "moduleSpecifier": "./watchQueryOptions", - "pos": 373, - "end": 395, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './watchQueryOptions' from '/node_modules/@apollo/client/core/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/core/watchQueryOptions', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/core/watchQueryOptions' does not exist, skipping all lookups in it.", - "======== Module name './watchQueryOptions' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/core/index.d.ts", - "moduleSpecifier": "./networkStatus", - "pos": 426, - "end": 444, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './networkStatus' from '/node_modules/@apollo/client/core/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/core/networkStatus', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/core/networkStatus' does not exist, skipping all lookups in it.", - "======== Module name './networkStatus' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/core/index.d.ts", - "moduleSpecifier": "./types", - "pos": 459, - "end": 469, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './types' from '/node_modules/@apollo/client/core/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/core/types', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/core/types' does not exist, skipping all lookups in it.", - "======== Module name './types' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/core/index.d.ts", - "moduleSpecifier": "./LocalState", - "pos": 513, - "end": 528, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './LocalState' from '/node_modules/@apollo/client/core/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/core/LocalState', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/core/LocalState' does not exist, skipping all lookups in it.", - "======== Module name './LocalState' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/core/index.d.ts", - "moduleSpecifier": "../errors", - "pos": 572, - "end": 584, - "resolutionMode": 99, - "trace": [ - "======== Resolving module '../errors' from '/node_modules/@apollo/client/core/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/errors', target file types: TypeScript, JavaScript, Declaration, JSON.", - "======== Module name '../errors' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/core/index.d.ts", - "moduleSpecifier": "../cache", - "pos": 865, - "end": 876, - "resolutionMode": 99, - "trace": [ - "======== Resolving module '../cache' from '/node_modules/@apollo/client/core/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/cache', target file types: TypeScript, JavaScript, Declaration, JSON.", - "======== Module name '../cache' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/core/index.d.ts", - "moduleSpecifier": "../cache/inmemory/types", - "pos": 891, - "end": 917, - "resolutionMode": 99, - "trace": [ - "======== Resolving module '../cache/inmemory/types' from '/node_modules/@apollo/client/core/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/cache/inmemory/types', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/cache/inmemory/types' does not exist, skipping all lookups in it.", - "======== Module name '../cache/inmemory/types' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/core/index.d.ts", - "moduleSpecifier": "../link/core", - "pos": 932, - "end": 947, - "resolutionMode": 99, - "trace": [ - "======== Resolving module '../link/core' from '/node_modules/@apollo/client/core/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/core', target file types: TypeScript, JavaScript, Declaration, JSON.", - "======== Module name '../link/core' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/core/index.d.ts", - "moduleSpecifier": "../link/http", - "pos": 962, - "end": 977, - "resolutionMode": 99, - "trace": [ - "======== Resolving module '../link/http' from '/node_modules/@apollo/client/core/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/http', target file types: TypeScript, JavaScript, Declaration, JSON.", - "======== Module name '../link/http' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/core/index.d.ts", - "moduleSpecifier": "../link/utils", - "pos": 1060, - "end": 1076, - "resolutionMode": 99, - "trace": [ - "======== Resolving module '../link/utils' from '/node_modules/@apollo/client/core/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/utils', target file types: TypeScript, JavaScript, Declaration, JSON.", - "======== Module name '../link/utils' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/core/index.d.ts", - "moduleSpecifier": "../utilities", - "pos": 1191, - "end": 1206, - "resolutionMode": 99, - "trace": [ - "======== Resolving module '../utilities' from '/node_modules/@apollo/client/core/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities', target file types: TypeScript, JavaScript, Declaration, JSON.", - "======== Module name '../utilities' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/errors/index.d.ts", - "moduleSpecifier": "../utilities/globals", - "pos": 6, - "end": 29, - "resolutionMode": 99, - "trace": [ - "======== Resolving module '../utilities/globals' from '/node_modules/@apollo/client/errors/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/globals', target file types: TypeScript, JavaScript, Declaration, JSON.", - "======== Module name '../utilities/globals' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/errors/index.d.ts", - "moduleSpecifier": "../link/http", - "pos": 127, - "end": 142, - "resolutionMode": 99, - "trace": [ - "======== Resolving module '../link/http' from '/node_modules/@apollo/client/errors/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/http', target file types: TypeScript, JavaScript, Declaration, JSON.", - "======== Module name '../link/http' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/errors/index.d.ts", - "moduleSpecifier": "../link/utils", - "pos": 171, - "end": 187, - "resolutionMode": 99, - "trace": [ - "======== Resolving module '../link/utils' from '/node_modules/@apollo/client/errors/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/utils', target file types: TypeScript, JavaScript, Declaration, JSON.", - "======== Module name '../link/utils' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/errors/index.d.ts", - "moduleSpecifier": "../link/core", - "pos": 216, - "end": 231, - "resolutionMode": 99, - "trace": [ - "======== Resolving module '../link/core' from '/node_modules/@apollo/client/errors/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/core', target file types: TypeScript, JavaScript, Declaration, JSON.", - "======== Module name '../link/core' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/link/batch/index.d.ts", - "moduleSpecifier": "./batchLink", - "pos": 13, - "end": 27, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './batchLink' from '/node_modules/@apollo/client/link/batch/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/batch/batchLink', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/link/batch/batchLink' does not exist, skipping all lookups in it.", - "======== Module name './batchLink' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/link/batch-http/index.d.ts", - "moduleSpecifier": "./batchHttpLink", - "pos": 13, - "end": 31, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './batchHttpLink' from '/node_modules/@apollo/client/link/batch-http/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/batch-http/batchHttpLink', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/link/batch-http/batchHttpLink' does not exist, skipping all lookups in it.", - "======== Module name './batchHttpLink' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/link/context/index.d.ts", - "moduleSpecifier": "../core", - "pos": 42, - "end": 52, - "resolutionMode": 99, - "trace": [ - "======== Resolving module '../core' from '/node_modules/@apollo/client/link/context/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/core', target file types: TypeScript, JavaScript, Declaration, JSON.", - "======== Module name '../core' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/link/context/index.d.ts", - "moduleSpecifier": "../../core", - "pos": 84, - "end": 97, - "resolutionMode": 99, - "trace": [ - "======== Resolving module '../../core' from '/node_modules/@apollo/client/link/context/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/core', target file types: TypeScript, JavaScript, Declaration, JSON.", - "======== Module name '../../core' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/link/core/index.d.ts", - "moduleSpecifier": "../../utilities/globals", - "pos": 6, - "end": 32, - "resolutionMode": 99, - "trace": [ - "======== Resolving module '../../utilities/globals' from '/node_modules/@apollo/client/link/core/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/globals', target file types: TypeScript, JavaScript, Declaration, JSON.", - "======== Module name '../../utilities/globals' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/link/core/index.d.ts", - "moduleSpecifier": "./empty", - "pos": 55, - "end": 65, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './empty' from '/node_modules/@apollo/client/link/core/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/core/empty', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/link/core/empty' does not exist, skipping all lookups in it.", - "======== Module name './empty' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/link/core/index.d.ts", - "moduleSpecifier": "./from", - "pos": 87, - "end": 96, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './from' from '/node_modules/@apollo/client/link/core/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/core/from', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/link/core/from' does not exist, skipping all lookups in it.", - "======== Module name './from' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/link/core/index.d.ts", - "moduleSpecifier": "./split", - "pos": 119, - "end": 129, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './split' from '/node_modules/@apollo/client/link/core/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/core/split', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/link/core/split' does not exist, skipping all lookups in it.", - "======== Module name './split' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/link/core/index.d.ts", - "moduleSpecifier": "./concat", - "pos": 153, - "end": 164, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './concat' from '/node_modules/@apollo/client/link/core/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/core/concat', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/link/core/concat' does not exist, skipping all lookups in it.", - "======== Module name './concat' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/link/core/index.d.ts", - "moduleSpecifier": "./execute", - "pos": 189, - "end": 201, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './execute' from '/node_modules/@apollo/client/link/core/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/core/execute', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/link/core/execute' does not exist, skipping all lookups in it.", - "======== Module name './execute' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/link/core/index.d.ts", - "moduleSpecifier": "./ApolloLink", - "pos": 229, - "end": 244, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './ApolloLink' from '/node_modules/@apollo/client/link/core/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/core/ApolloLink', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/link/core/ApolloLink' does not exist, skipping all lookups in it.", - "======== Module name './ApolloLink' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/link/core/index.d.ts", - "moduleSpecifier": "./types", - "pos": 259, - "end": 269, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './types' from '/node_modules/@apollo/client/link/core/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/core/types', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/link/core/types' does not exist, skipping all lookups in it.", - "======== Module name './types' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/link/error/index.d.ts", - "moduleSpecifier": "../../errors", - "pos": 86, - "end": 101, - "resolutionMode": 99, - "trace": [ - "======== Resolving module '../../errors' from '/node_modules/@apollo/client/link/error/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/errors', target file types: TypeScript, JavaScript, Declaration, JSON.", - "======== Module name '../../errors' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/link/error/index.d.ts", - "moduleSpecifier": "../../utilities", - "pos": 129, - "end": 147, - "resolutionMode": 99, - "trace": [ - "======== Resolving module '../../utilities' from '/node_modules/@apollo/client/link/error/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities', target file types: TypeScript, JavaScript, Declaration, JSON.", - "======== Module name '../../utilities' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/link/error/index.d.ts", - "moduleSpecifier": "../core", - "pos": 209, - "end": 219, - "resolutionMode": 99, - "trace": [ - "======== Resolving module '../core' from '/node_modules/@apollo/client/link/error/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/core', target file types: TypeScript, JavaScript, Declaration, JSON.", - "======== Module name '../core' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/link/http/index.d.ts", - "moduleSpecifier": "../../utilities/globals", - "pos": 6, - "end": 32, - "resolutionMode": 99, - "trace": [ - "======== Resolving module '../../utilities/globals' from '/node_modules/@apollo/client/link/http/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/globals', target file types: TypeScript, JavaScript, Declaration, JSON.", - "======== Module name '../../utilities/globals' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/link/http/index.d.ts", - "moduleSpecifier": "./parseAndCheckHttpResponse", - "pos": 93, - "end": 123, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './parseAndCheckHttpResponse' from '/node_modules/@apollo/client/link/http/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/http/parseAndCheckHttpResponse', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/link/http/parseAndCheckHttpResponse' does not exist, skipping all lookups in it.", - "======== Module name './parseAndCheckHttpResponse' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/link/http/index.d.ts", - "moduleSpecifier": "./serializeFetchParameter", - "pos": 182, - "end": 210, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './serializeFetchParameter' from '/node_modules/@apollo/client/link/http/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/http/serializeFetchParameter', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/link/http/serializeFetchParameter' does not exist, skipping all lookups in it.", - "======== Module name './serializeFetchParameter' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/link/http/index.d.ts", - "moduleSpecifier": "./selectHttpOptionsAndBody", - "pos": 348, - "end": 377, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './selectHttpOptionsAndBody' from '/node_modules/@apollo/client/link/http/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/http/selectHttpOptionsAndBody', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/link/http/selectHttpOptionsAndBody' does not exist, skipping all lookups in it.", - "======== Module name './selectHttpOptionsAndBody' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/link/http/index.d.ts", - "moduleSpecifier": "./checkFetcher", - "pos": 407, - "end": 424, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './checkFetcher' from '/node_modules/@apollo/client/link/http/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/http/checkFetcher', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/link/http/checkFetcher' does not exist, skipping all lookups in it.", - "======== Module name './checkFetcher' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/link/http/index.d.ts", - "moduleSpecifier": "./createSignalIfSupported", - "pos": 465, - "end": 493, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './createSignalIfSupported' from '/node_modules/@apollo/client/link/http/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/http/createSignalIfSupported', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/link/http/createSignalIfSupported' does not exist, skipping all lookups in it.", - "======== Module name './createSignalIfSupported' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/link/http/index.d.ts", - "moduleSpecifier": "./selectURI", - "pos": 520, - "end": 534, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './selectURI' from '/node_modules/@apollo/client/link/http/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/http/selectURI', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/link/http/selectURI' does not exist, skipping all lookups in it.", - "======== Module name './selectURI' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/link/http/index.d.ts", - "moduleSpecifier": "./createHttpLink", - "pos": 566, - "end": 585, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './createHttpLink' from '/node_modules/@apollo/client/link/http/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/http/createHttpLink', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/link/http/createHttpLink' does not exist, skipping all lookups in it.", - "======== Module name './createHttpLink' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/link/http/index.d.ts", - "moduleSpecifier": "./HttpLink", - "pos": 611, - "end": 624, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './HttpLink' from '/node_modules/@apollo/client/link/http/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/http/HttpLink', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/link/http/HttpLink' does not exist, skipping all lookups in it.", - "======== Module name './HttpLink' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/link/http/index.d.ts", - "moduleSpecifier": "./rewriteURIForGET", - "pos": 658, - "end": 679, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './rewriteURIForGET' from '/node_modules/@apollo/client/link/http/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/http/rewriteURIForGET', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/link/http/rewriteURIForGET' does not exist, skipping all lookups in it.", - "======== Module name './rewriteURIForGET' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/link/persisted-queries/index.d.ts", - "moduleSpecifier": "../core", - "pos": 108, - "end": 118, - "resolutionMode": 99, - "trace": [ - "======== Resolving module '../core' from '/node_modules/@apollo/client/link/persisted-queries/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/core', target file types: TypeScript, JavaScript, Declaration, JSON.", - "======== Module name '../core' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/link/persisted-queries/index.d.ts", - "moduleSpecifier": "../../errors", - "pos": 148, - "end": 163, - "resolutionMode": 99, - "trace": [ - "======== Resolving module '../../errors' from '/node_modules/@apollo/client/link/persisted-queries/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/errors', target file types: TypeScript, JavaScript, Declaration, JSON.", - "======== Module name '../../errors' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/link/retry/index.d.ts", - "moduleSpecifier": "./retryLink", - "pos": 13, - "end": 27, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './retryLink' from '/node_modules/@apollo/client/link/retry/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/retry/retryLink', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/link/retry/retryLink' does not exist, skipping all lookups in it.", - "======== Module name './retryLink' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/link/schema/index.d.ts", - "moduleSpecifier": "../core", - "pos": 91, - "end": 101, - "resolutionMode": 99, - "trace": [ - "======== Resolving module '../core' from '/node_modules/@apollo/client/link/schema/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/core', target file types: TypeScript, JavaScript, Declaration, JSON.", - "======== Module name '../core' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/link/schema/index.d.ts", - "moduleSpecifier": "../../utilities", - "pos": 129, - "end": 147, - "resolutionMode": 99, - "trace": [ - "======== Resolving module '../../utilities' from '/node_modules/@apollo/client/link/schema/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities', target file types: TypeScript, JavaScript, Declaration, JSON.", - "======== Module name '../../utilities' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/link/subscriptions/index.d.ts", - "moduleSpecifier": "../core", - "pos": 92, - "end": 102, - "resolutionMode": 99, - "trace": [ - "======== Resolving module '../core' from '/node_modules/@apollo/client/link/subscriptions/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/core', target file types: TypeScript, JavaScript, Declaration, JSON.", - "======== Module name '../core' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/link/subscriptions/index.d.ts", - "moduleSpecifier": "../../utilities", - "pos": 130, - "end": 148, - "resolutionMode": 99, - "trace": [ - "======== Resolving module '../../utilities' from '/node_modules/@apollo/client/link/subscriptions/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities', target file types: TypeScript, JavaScript, Declaration, JSON.", - "======== Module name '../../utilities' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/link/utils/index.d.ts", - "moduleSpecifier": "../../utilities/globals", - "pos": 6, - "end": 32, - "resolutionMode": 99, - "trace": [ - "======== Resolving module '../../utilities/globals' from '/node_modules/@apollo/client/link/utils/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/globals', target file types: TypeScript, JavaScript, Declaration, JSON.", - "======== Module name '../../utilities/globals' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/link/utils/index.d.ts", - "moduleSpecifier": "./fromError", - "pos": 59, - "end": 73, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './fromError' from '/node_modules/@apollo/client/link/utils/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/utils/fromError', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/link/utils/fromError' does not exist, skipping all lookups in it.", - "======== Module name './fromError' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/link/utils/index.d.ts", - "moduleSpecifier": "./toPromise", - "pos": 100, - "end": 114, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './toPromise' from '/node_modules/@apollo/client/link/utils/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/utils/toPromise', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/link/utils/toPromise' does not exist, skipping all lookups in it.", - "======== Module name './toPromise' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/link/utils/index.d.ts", - "moduleSpecifier": "./fromPromise", - "pos": 143, - "end": 159, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './fromPromise' from '/node_modules/@apollo/client/link/utils/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/utils/fromPromise', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/link/utils/fromPromise' does not exist, skipping all lookups in it.", - "======== Module name './fromPromise' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/link/utils/index.d.ts", - "moduleSpecifier": "./throwServerError", - "pos": 206, - "end": 227, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './throwServerError' from '/node_modules/@apollo/client/link/utils/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/utils/throwServerError', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/link/utils/throwServerError' does not exist, skipping all lookups in it.", - "======== Module name './throwServerError' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/link/utils/index.d.ts", - "moduleSpecifier": "./validateOperation", - "pos": 262, - "end": 284, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './validateOperation' from '/node_modules/@apollo/client/link/utils/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/utils/validateOperation', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/link/utils/validateOperation' does not exist, skipping all lookups in it.", - "======== Module name './validateOperation' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/link/utils/index.d.ts", - "moduleSpecifier": "./createOperation", - "pos": 317, - "end": 337, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './createOperation' from '/node_modules/@apollo/client/link/utils/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/utils/createOperation', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/link/utils/createOperation' does not exist, skipping all lookups in it.", - "======== Module name './createOperation' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/link/utils/index.d.ts", - "moduleSpecifier": "./transformOperation", - "pos": 373, - "end": 396, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './transformOperation' from '/node_modules/@apollo/client/link/utils/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/utils/transformOperation', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/link/utils/transformOperation' does not exist, skipping all lookups in it.", - "======== Module name './transformOperation' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/link/ws/index.d.ts", - "moduleSpecifier": "../core", - "pos": 130, - "end": 140, - "resolutionMode": 99, - "trace": [ - "======== Resolving module '../core' from '/node_modules/@apollo/client/link/ws/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/core', target file types: TypeScript, JavaScript, Declaration, JSON.", - "======== Module name '../core' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/link/ws/index.d.ts", - "moduleSpecifier": "../../utilities", - "pos": 168, - "end": 186, - "resolutionMode": 99, - "trace": [ - "======== Resolving module '../../utilities' from '/node_modules/@apollo/client/link/ws/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities', target file types: TypeScript, JavaScript, Declaration, JSON.", - "======== Module name '../../utilities' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/react/index.d.ts", - "moduleSpecifier": "../utilities/globals", - "pos": 6, - "end": 29, - "resolutionMode": 99, - "trace": [ - "======== Resolving module '../utilities/globals' from '/node_modules/@apollo/client/react/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/globals', target file types: TypeScript, JavaScript, Declaration, JSON.", - "======== Module name '../utilities/globals' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/react/index.d.ts", - "moduleSpecifier": "./context", - "pos": 135, - "end": 147, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './context' from '/node_modules/@apollo/client/react/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/context', target file types: TypeScript, JavaScript, Declaration, JSON.", - "======== Module name './context' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/react/index.d.ts", - "moduleSpecifier": "./hooks", - "pos": 162, - "end": 172, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './hooks' from '/node_modules/@apollo/client/react/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/hooks', target file types: TypeScript, JavaScript, Declaration, JSON.", - "======== Module name './hooks' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/react/index.d.ts", - "moduleSpecifier": "./parser", - "pos": 246, - "end": 257, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './parser' from '/node_modules/@apollo/client/react/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/parser', target file types: TypeScript, JavaScript, Declaration, JSON.", - "======== Module name './parser' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/react/index.d.ts", - "moduleSpecifier": "./types/types", - "pos": 272, - "end": 288, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './types/types' from '/node_modules/@apollo/client/react/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/types/types', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/react/types/types' does not exist, skipping all lookups in it.", - "======== Module name './types/types' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/react/components/index.d.ts", - "moduleSpecifier": "./Query", - "pos": 21, - "end": 31, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './Query' from '/node_modules/@apollo/client/react/components/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/components/Query', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/react/components/Query' does not exist, skipping all lookups in it.", - "======== Module name './Query' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/react/components/index.d.ts", - "moduleSpecifier": "./Mutation", - "pos": 57, - "end": 70, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './Mutation' from '/node_modules/@apollo/client/react/components/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/components/Mutation', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/react/components/Mutation' does not exist, skipping all lookups in it.", - "======== Module name './Mutation' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/react/components/index.d.ts", - "moduleSpecifier": "./Subscription", - "pos": 100, - "end": 117, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './Subscription' from '/node_modules/@apollo/client/react/components/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/components/Subscription', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/react/components/Subscription' does not exist, skipping all lookups in it.", - "======== Module name './Subscription' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/react/components/index.d.ts", - "moduleSpecifier": "./types", - "pos": 132, - "end": 142, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './types' from '/node_modules/@apollo/client/react/components/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/components/types', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/react/components/types' does not exist, skipping all lookups in it.", - "======== Module name './types' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/react/context/index.d.ts", - "moduleSpecifier": "../../utilities/globals", - "pos": 6, - "end": 32, - "resolutionMode": 99, - "trace": [ - "======== Resolving module '../../utilities/globals' from '/node_modules/@apollo/client/react/context/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/globals', target file types: TypeScript, JavaScript, Declaration, JSON.", - "======== Module name '../../utilities/globals' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/react/context/index.d.ts", - "moduleSpecifier": "./ApolloConsumer", - "pos": 85, - "end": 104, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './ApolloConsumer' from '/node_modules/@apollo/client/react/context/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/context/ApolloConsumer', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/react/context/ApolloConsumer' does not exist, skipping all lookups in it.", - "======== Module name './ApolloConsumer' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/react/context/index.d.ts", - "moduleSpecifier": "./ApolloContext", - "pos": 198, - "end": 216, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './ApolloContext' from '/node_modules/@apollo/client/react/context/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/context/ApolloContext', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/react/context/ApolloContext' does not exist, skipping all lookups in it.", - "======== Module name './ApolloContext' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/react/context/index.d.ts", - "moduleSpecifier": "./ApolloProvider", - "pos": 269, - "end": 288, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './ApolloProvider' from '/node_modules/@apollo/client/react/context/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/context/ApolloProvider', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/react/context/ApolloProvider' does not exist, skipping all lookups in it.", - "======== Module name './ApolloProvider' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/react/hoc/index.d.ts", - "moduleSpecifier": "../../utilities/globals", - "pos": 6, - "end": 32, - "resolutionMode": 99, - "trace": [ - "======== Resolving module '../../utilities/globals' from '/node_modules/@apollo/client/react/hoc/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/globals', target file types: TypeScript, JavaScript, Declaration, JSON.", - "======== Module name '../../utilities/globals' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/react/hoc/index.d.ts", - "moduleSpecifier": "./graphql", - "pos": 57, - "end": 69, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './graphql' from '/node_modules/@apollo/client/react/hoc/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/hoc/graphql', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/react/hoc/graphql' does not exist, skipping all lookups in it.", - "======== Module name './graphql' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/react/hoc/index.d.ts", - "moduleSpecifier": "./query-hoc", - "pos": 96, - "end": 110, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './query-hoc' from '/node_modules/@apollo/client/react/hoc/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/hoc/query-hoc', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/react/hoc/query-hoc' does not exist, skipping all lookups in it.", - "======== Module name './query-hoc' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/react/hoc/index.d.ts", - "moduleSpecifier": "./mutation-hoc", - "pos": 140, - "end": 157, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './mutation-hoc' from '/node_modules/@apollo/client/react/hoc/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/hoc/mutation-hoc', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/react/hoc/mutation-hoc' does not exist, skipping all lookups in it.", - "======== Module name './mutation-hoc' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/react/hoc/index.d.ts", - "moduleSpecifier": "./subscription-hoc", - "pos": 191, - "end": 212, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './subscription-hoc' from '/node_modules/@apollo/client/react/hoc/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/hoc/subscription-hoc', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/react/hoc/subscription-hoc' does not exist, skipping all lookups in it.", - "======== Module name './subscription-hoc' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/react/hoc/index.d.ts", - "moduleSpecifier": "./withApollo", - "pos": 240, - "end": 255, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './withApollo' from '/node_modules/@apollo/client/react/hoc/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/hoc/withApollo', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/react/hoc/withApollo' does not exist, skipping all lookups in it.", - "======== Module name './withApollo' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/react/hoc/index.d.ts", - "moduleSpecifier": "./types", - "pos": 270, - "end": 280, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './types' from '/node_modules/@apollo/client/react/hoc/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/hoc/types', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/react/hoc/types' does not exist, skipping all lookups in it.", - "======== Module name './types' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/react/hooks/index.d.ts", - "moduleSpecifier": "../../utilities/globals", - "pos": 6, - "end": 32, - "resolutionMode": 99, - "trace": [ - "======== Resolving module '../../utilities/globals' from '/node_modules/@apollo/client/react/hooks/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/globals', target file types: TypeScript, JavaScript, Declaration, JSON.", - "======== Module name '../../utilities/globals' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/react/hooks/index.d.ts", - "moduleSpecifier": "./useApolloClient", - "pos": 47, - "end": 67, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './useApolloClient' from '/node_modules/@apollo/client/react/hooks/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/hooks/useApolloClient', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/react/hooks/useApolloClient' does not exist, skipping all lookups in it.", - "======== Module name './useApolloClient' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/react/hooks/index.d.ts", - "moduleSpecifier": "./useLazyQuery", - "pos": 82, - "end": 99, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './useLazyQuery' from '/node_modules/@apollo/client/react/hooks/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/hooks/useLazyQuery', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/react/hooks/useLazyQuery' does not exist, skipping all lookups in it.", - "======== Module name './useLazyQuery' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/react/hooks/index.d.ts", - "moduleSpecifier": "./useMutation", - "pos": 114, - "end": 130, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './useMutation' from '/node_modules/@apollo/client/react/hooks/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/hooks/useMutation', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/react/hooks/useMutation' does not exist, skipping all lookups in it.", - "======== Module name './useMutation' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/react/hooks/index.d.ts", - "moduleSpecifier": "./useQuery", - "pos": 156, - "end": 169, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './useQuery' from '/node_modules/@apollo/client/react/hooks/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/hooks/useQuery', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/react/hooks/useQuery' does not exist, skipping all lookups in it.", - "======== Module name './useQuery' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/react/hooks/index.d.ts", - "moduleSpecifier": "./useSubscription", - "pos": 184, - "end": 204, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './useSubscription' from '/node_modules/@apollo/client/react/hooks/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/hooks/useSubscription', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/react/hooks/useSubscription' does not exist, skipping all lookups in it.", - "======== Module name './useSubscription' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/react/hooks/index.d.ts", - "moduleSpecifier": "./useReactiveVar", - "pos": 219, - "end": 238, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './useReactiveVar' from '/node_modules/@apollo/client/react/hooks/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/hooks/useReactiveVar', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/react/hooks/useReactiveVar' does not exist, skipping all lookups in it.", - "======== Module name './useReactiveVar' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/react/hooks/index.d.ts", - "moduleSpecifier": "./useFragment", - "pos": 253, - "end": 269, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './useFragment' from '/node_modules/@apollo/client/react/hooks/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/hooks/useFragment', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/react/hooks/useFragment' does not exist, skipping all lookups in it.", - "======== Module name './useFragment' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/react/ssr/index.d.ts", - "moduleSpecifier": "./getDataFromTree", - "pos": 50, - "end": 70, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './getDataFromTree' from '/node_modules/@apollo/client/react/ssr/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/ssr/getDataFromTree', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/react/ssr/getDataFromTree' does not exist, skipping all lookups in it.", - "======== Module name './getDataFromTree' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/react/ssr/index.d.ts", - "moduleSpecifier": "./renderToStringWithData", - "pos": 110, - "end": 137, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './renderToStringWithData' from '/node_modules/@apollo/client/react/ssr/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/ssr/renderToStringWithData', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/react/ssr/renderToStringWithData' does not exist, skipping all lookups in it.", - "======== Module name './renderToStringWithData' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/react/ssr/index.d.ts", - "moduleSpecifier": "./RenderPromises", - "pos": 169, - "end": 188, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './RenderPromises' from '/node_modules/@apollo/client/react/ssr/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/ssr/RenderPromises', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/react/ssr/RenderPromises' does not exist, skipping all lookups in it.", - "======== Module name './RenderPromises' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/testing/index.d.ts", - "moduleSpecifier": "../utilities/globals", - "pos": 6, - "end": 29, - "resolutionMode": 99, - "trace": [ - "======== Resolving module '../utilities/globals' from '/node_modules/@apollo/client/testing/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/globals', target file types: TypeScript, JavaScript, Declaration, JSON.", - "======== Module name '../utilities/globals' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/testing/index.d.ts", - "moduleSpecifier": "./react/MockedProvider", - "pos": 82, - "end": 107, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './react/MockedProvider' from '/node_modules/@apollo/client/testing/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/testing/react/MockedProvider', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/testing/react/MockedProvider' does not exist, skipping all lookups in it.", - "======== Module name './react/MockedProvider' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/testing/index.d.ts", - "moduleSpecifier": "./core", - "pos": 122, - "end": 131, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './core' from '/node_modules/@apollo/client/testing/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/testing/core', target file types: TypeScript, JavaScript, Declaration, JSON.", - "======== Module name './core' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/testing/core/index.d.ts", - "moduleSpecifier": "./mocking/mockLink", - "pos": 89, - "end": 110, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './mocking/mockLink' from '/node_modules/@apollo/client/testing/core/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/testing/core/mocking/mockLink', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/testing/core/mocking/mockLink' does not exist, skipping all lookups in it.", - "======== Module name './mocking/mockLink' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/testing/core/index.d.ts", - "moduleSpecifier": "./mocking/mockSubscriptionLink", - "pos": 168, - "end": 201, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './mocking/mockSubscriptionLink' from '/node_modules/@apollo/client/testing/core/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/testing/core/mocking/mockSubscriptionLink', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/testing/core/mocking/mockSubscriptionLink' does not exist, skipping all lookups in it.", - "======== Module name './mocking/mockSubscriptionLink' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/testing/core/index.d.ts", - "moduleSpecifier": "./mocking/mockClient", - "pos": 235, - "end": 258, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './mocking/mockClient' from '/node_modules/@apollo/client/testing/core/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/testing/core/mocking/mockClient', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/testing/core/mocking/mockClient' does not exist, skipping all lookups in it.", - "======== Module name './mocking/mockClient' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/testing/core/index.d.ts", - "moduleSpecifier": "./subscribeAndCount", - "pos": 304, - "end": 326, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './subscribeAndCount' from '/node_modules/@apollo/client/testing/core/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/testing/core/subscribeAndCount', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/testing/core/subscribeAndCount' does not exist, skipping all lookups in it.", - "======== Module name './subscribeAndCount' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/testing/core/index.d.ts", - "moduleSpecifier": "./itAsync", - "pos": 351, - "end": 363, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './itAsync' from '/node_modules/@apollo/client/testing/core/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/testing/core/itAsync', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/testing/core/itAsync' does not exist, skipping all lookups in it.", - "======== Module name './itAsync' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/testing/core/index.d.ts", - "moduleSpecifier": "./wait", - "pos": 391, - "end": 400, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './wait' from '/node_modules/@apollo/client/testing/core/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/testing/core/wait', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/testing/core/wait' does not exist, skipping all lookups in it.", - "======== Module name './wait' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/testing/core/index.d.ts", - "moduleSpecifier": "./withConsoleSpy", - "pos": 415, - "end": 434, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './withConsoleSpy' from '/node_modules/@apollo/client/testing/core/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/testing/core/withConsoleSpy', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/testing/core/withConsoleSpy' does not exist, skipping all lookups in it.", - "======== Module name './withConsoleSpy' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", - "moduleSpecifier": "./globals", - "pos": 26, - "end": 38, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './globals' from '/node_modules/@apollo/client/utilities/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/globals', target file types: TypeScript, JavaScript, Declaration, JSON.", - "======== Module name './globals' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", - "moduleSpecifier": "./graphql/directives", - "pos": 218, - "end": 241, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './graphql/directives' from '/node_modules/@apollo/client/utilities/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/graphql/directives', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/utilities/graphql/directives' does not exist, skipping all lookups in it.", - "======== Module name './graphql/directives' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", - "moduleSpecifier": "./graphql/fragments", - "pos": 363, - "end": 385, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './graphql/fragments' from '/node_modules/@apollo/client/utilities/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/graphql/fragments', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/utilities/graphql/fragments' does not exist, skipping all lookups in it.", - "======== Module name './graphql/fragments' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", - "moduleSpecifier": "./graphql/getFromAST", - "pos": 563, - "end": 586, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './graphql/getFromAST' from '/node_modules/@apollo/client/utilities/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/graphql/getFromAST', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/utilities/graphql/getFromAST' does not exist, skipping all lookups in it.", - "======== Module name './graphql/getFromAST' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", - "moduleSpecifier": "./graphql/storeUtils", - "pos": 879, - "end": 902, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './graphql/storeUtils' from '/node_modules/@apollo/client/utilities/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/graphql/storeUtils', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/utilities/graphql/storeUtils' does not exist, skipping all lookups in it.", - "======== Module name './graphql/storeUtils' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", - "moduleSpecifier": "./graphql/transform", - "pos": 1348, - "end": 1370, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './graphql/transform' from '/node_modules/@apollo/client/utilities/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/graphql/transform', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/utilities/graphql/transform' does not exist, skipping all lookups in it.", - "======== Module name './graphql/transform' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", - "moduleSpecifier": "./policies/pagination", - "pos": 1450, - "end": 1474, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './policies/pagination' from '/node_modules/@apollo/client/utilities/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/policies/pagination', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/utilities/policies/pagination' does not exist, skipping all lookups in it.", - "======== Module name './policies/pagination' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", - "moduleSpecifier": "./observables/Observable", - "pos": 1536, - "end": 1563, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './observables/Observable' from '/node_modules/@apollo/client/utilities/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/observables/Observable', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/utilities/observables/Observable' does not exist, skipping all lookups in it.", - "======== Module name './observables/Observable' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", - "moduleSpecifier": "./common/mergeDeep", - "pos": 1578, - "end": 1599, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './common/mergeDeep' from '/node_modules/@apollo/client/utilities/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/common/mergeDeep', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/utilities/common/mergeDeep' does not exist, skipping all lookups in it.", - "======== Module name './common/mergeDeep' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", - "moduleSpecifier": "./common/cloneDeep", - "pos": 1614, - "end": 1635, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './common/cloneDeep' from '/node_modules/@apollo/client/utilities/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/common/cloneDeep', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/utilities/common/cloneDeep' does not exist, skipping all lookups in it.", - "======== Module name './common/cloneDeep' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", - "moduleSpecifier": "./common/maybeDeepFreeze", - "pos": 1650, - "end": 1677, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './common/maybeDeepFreeze' from '/node_modules/@apollo/client/utilities/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/common/maybeDeepFreeze', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/utilities/common/maybeDeepFreeze' does not exist, skipping all lookups in it.", - "======== Module name './common/maybeDeepFreeze' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", - "moduleSpecifier": "./observables/iteration", - "pos": 1692, - "end": 1718, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './observables/iteration' from '/node_modules/@apollo/client/utilities/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/observables/iteration', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/utilities/observables/iteration' does not exist, skipping all lookups in it.", - "======== Module name './observables/iteration' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", - "moduleSpecifier": "./observables/asyncMap", - "pos": 1733, - "end": 1758, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './observables/asyncMap' from '/node_modules/@apollo/client/utilities/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/observables/asyncMap', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/utilities/observables/asyncMap' does not exist, skipping all lookups in it.", - "======== Module name './observables/asyncMap' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", - "moduleSpecifier": "./observables/Concast", - "pos": 1773, - "end": 1797, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './observables/Concast' from '/node_modules/@apollo/client/utilities/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/observables/Concast', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/utilities/observables/Concast' does not exist, skipping all lookups in it.", - "======== Module name './observables/Concast' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", - "moduleSpecifier": "./observables/subclassing", - "pos": 1812, - "end": 1840, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './observables/subclassing' from '/node_modules/@apollo/client/utilities/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/observables/subclassing', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/utilities/observables/subclassing' does not exist, skipping all lookups in it.", - "======== Module name './observables/subclassing' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", - "moduleSpecifier": "./common/arrays", - "pos": 1855, - "end": 1873, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './common/arrays' from '/node_modules/@apollo/client/utilities/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/common/arrays', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/utilities/common/arrays' does not exist, skipping all lookups in it.", - "======== Module name './common/arrays' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", - "moduleSpecifier": "./common/objects", - "pos": 1888, - "end": 1907, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './common/objects' from '/node_modules/@apollo/client/utilities/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/common/objects', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/utilities/common/objects' does not exist, skipping all lookups in it.", - "======== Module name './common/objects' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", - "moduleSpecifier": "./common/errorHandling", - "pos": 1922, - "end": 1947, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './common/errorHandling' from '/node_modules/@apollo/client/utilities/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/common/errorHandling', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/utilities/common/errorHandling' does not exist, skipping all lookups in it.", - "======== Module name './common/errorHandling' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", - "moduleSpecifier": "./common/canUse", - "pos": 1962, - "end": 1980, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './common/canUse' from '/node_modules/@apollo/client/utilities/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/common/canUse', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/utilities/common/canUse' does not exist, skipping all lookups in it.", - "======== Module name './common/canUse' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", - "moduleSpecifier": "./common/compact", - "pos": 1995, - "end": 2014, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './common/compact' from '/node_modules/@apollo/client/utilities/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/common/compact', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/utilities/common/compact' does not exist, skipping all lookups in it.", - "======== Module name './common/compact' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", - "moduleSpecifier": "./common/makeUniqueId", - "pos": 2029, - "end": 2053, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './common/makeUniqueId' from '/node_modules/@apollo/client/utilities/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/common/makeUniqueId', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/utilities/common/makeUniqueId' does not exist, skipping all lookups in it.", - "======== Module name './common/makeUniqueId' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", - "moduleSpecifier": "./common/stringifyForDisplay", - "pos": 2068, - "end": 2099, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './common/stringifyForDisplay' from '/node_modules/@apollo/client/utilities/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/common/stringifyForDisplay', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/utilities/common/stringifyForDisplay' does not exist, skipping all lookups in it.", - "======== Module name './common/stringifyForDisplay' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", - "moduleSpecifier": "./common/mergeOptions", - "pos": 2114, - "end": 2138, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './common/mergeOptions' from '/node_modules/@apollo/client/utilities/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/common/mergeOptions', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/utilities/common/mergeOptions' does not exist, skipping all lookups in it.", - "======== Module name './common/mergeOptions' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", - "moduleSpecifier": "./types/IsStrictlyAny", - "pos": 2153, - "end": 2177, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './types/IsStrictlyAny' from '/node_modules/@apollo/client/utilities/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/types/IsStrictlyAny', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/utilities/types/IsStrictlyAny' does not exist, skipping all lookups in it.", - "======== Module name './types/IsStrictlyAny' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/utilities/globals/index.d.ts", - "moduleSpecifier": "./DEV", - "pos": 73, - "end": 81, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './DEV' from '/node_modules/@apollo/client/utilities/globals/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/globals/DEV', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/utilities/globals/DEV' does not exist, skipping all lookups in it.", - "======== Module name './DEV' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/utilities/globals/index.d.ts", - "moduleSpecifier": "./maybe", - "pos": 162, - "end": 172, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './maybe' from '/node_modules/@apollo/client/utilities/globals/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/globals/maybe', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/utilities/globals/maybe' does not exist, skipping all lookups in it.", - "======== Module name './maybe' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@apollo/client/utilities/globals/index.d.ts", - "moduleSpecifier": "./global", - "pos": 207, - "end": 218, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './global' from '/node_modules/@apollo/client/utilities/globals/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/globals/global', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@apollo/client/utilities/globals/global' does not exist, skipping all lookups in it.", - "======== Module name './global' was not resolved. ========" - ] - } -] -``` \ No newline at end of file diff --git a/packages/core/test/snapshots/@ice__app@3.2.6.tgz.json b/packages/core/test/snapshots/@ice__app@3.2.6.tgz.json new file mode 100644 index 0000000..60fd75f --- /dev/null +++ b/packages/core/test/snapshots/@ice__app@3.2.6.tgz.json @@ -0,0 +1,847 @@ +{ + "packageName": "@ice/app", + "packageVersion": "3.2.6", + "types": { + "kind": "included" + }, + "buildTools": { + "webpack": "^5.86.0", + "esbuild": "^0.17.16" + }, + "entrypoints": { + ".": { + "subpath": ".", + "resolutions": { + "node10": { + "name": ".", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/@ice/app/esm/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@ice/app' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module '@ice/app' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/@ice/app/package.json'.", + "File '/node_modules/@ice/app.ts' does not exist.", + "File '/node_modules/@ice/app.tsx' does not exist.", + "File '/node_modules/@ice/app.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' does not have a 'types' field.", + "'package.json' has 'main' field './esm/index.js' that references '/node_modules/@ice/app/esm/index.js'.", + "File '/node_modules/@ice/app/esm/index.js' exists - use it as a name resolution result.", + "File '/node_modules/@ice/app/esm/index.js' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@ice/app/esm/index.js', target file types: TypeScript, Declaration.", + "File name '/node_modules/@ice/app/esm/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/@ice/app/esm/index.ts' does not exist.", + "File '/node_modules/@ice/app/esm/index.tsx' does not exist.", + "File '/node_modules/@ice/app/esm/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@ice/app' was successfully resolved to '/node_modules/@ice/app/esm/index.d.ts' with Package ID '@ice/app/esm/index.d.ts@3.2.6'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@ice/app/esm/index.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@ice/app' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module '@ice/app' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@ice/app/package.json'.", + "File '/node_modules/@ice/app.ts' does not exist.", + "File '/node_modules/@ice/app.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field './esm/index.js' that references '/node_modules/@ice/app/esm/index.js'.", + "File '/node_modules/@ice/app/esm/index.js' exists - use it as a name resolution result.", + "File '/node_modules/@ice/app/esm/index.js' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@ice/app/esm/index.js', target file types: TypeScript.", + "File name '/node_modules/@ice/app/esm/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/@ice/app/esm/index.ts' does not exist.", + "File '/node_modules/@ice/app/esm/index.tsx' does not exist.", + "File '/node_modules/@ice/app/esm/index.js.ts' does not exist.", + "File '/node_modules/@ice/app/esm/index.js.tsx' does not exist.", + "Directory '/node_modules/@ice/app/esm/index.js' does not exist, skipping all lookups in it.", + "File '/node_modules/@ice/app/index.ts' does not exist.", + "File '/node_modules/@ice/app/index.tsx' does not exist.", + "Loading module '@ice/app' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@ice/app/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@ice/app.js' does not exist.", + "File '/node_modules/@ice/app.jsx' does not exist.", + "'package.json' has 'main' field './esm/index.js' that references '/node_modules/@ice/app/esm/index.js'.", + "File '/node_modules/@ice/app/esm/index.js' exists - use it as a name resolution result.", + "======== Module name '@ice/app' was successfully resolved to '/node_modules/@ice/app/esm/index.js' with Package ID '@ice/app/esm/index.js@3.2.6'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@ice/app/esm/types/generator.d.ts", + "/node_modules/@ice/app/esm/utils/ServerCompileTask.d.ts", + "/node_modules/@ice/app/esm/utils/logger.d.ts", + "/node_modules/@ice/app/esm/types/plugin.d.ts", + "/node_modules/@ice/app/esm/types/userConfig.d.ts", + "/node_modules/@ice/app/esm/types/index.d.ts", + "/node_modules/@ice/app/esm/config.d.ts", + "/node_modules/@ice/app/esm/test/defineJestConfig.d.ts", + "/node_modules/@ice/app/esm/test/defineVitestConfig.d.ts", + "/node_modules/@ice/app/esm/test/index.d.ts", + "/node_modules/@ice/app/esm/index.d.ts" + ] + }, + "node16-cjs": { + "name": ".", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/@ice/app/esm/index.d.ts", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/@ice/app/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@ice/app' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist.", + "Loading module '@ice/app' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/@ice/app/package.json'.", + "Using 'exports' subpath '.' with target './esm/index.js'.", + "File name '/node_modules/@ice/app/esm/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/@ice/app/esm/index.ts' does not exist.", + "File '/node_modules/@ice/app/esm/index.tsx' does not exist.", + "File '/node_modules/@ice/app/esm/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@ice/app' was successfully resolved to '/node_modules/@ice/app/esm/index.d.ts' with Package ID '@ice/app/esm/index.d.ts@3.2.6'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@ice/app/esm/index.js", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/@ice/app/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@ice/app' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist.", + "Loading module '@ice/app' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@ice/app/package.json'.", + "Using 'exports' subpath '.' with target './esm/index.js'.", + "File name '/node_modules/@ice/app/esm/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/@ice/app/esm/index.ts' does not exist.", + "File '/node_modules/@ice/app/esm/index.tsx' does not exist.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@ice/app/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath '.' with target './esm/index.js'.", + "File name '/node_modules/@ice/app/esm/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/@ice/app/esm/index.js' exists - use it as a name resolution result.", + "======== Module name '@ice/app' was successfully resolved to '/node_modules/@ice/app/esm/index.js' with Package ID '@ice/app/esm/index.js@3.2.6'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@ice/app/esm/types/userConfig.d.ts", + "/node_modules/@ice/app/esm/config.d.ts", + "/node_modules/@ice/app/esm/test/defineJestConfig.d.ts", + "/node_modules/@ice/app/esm/test/defineVitestConfig.d.ts", + "/node_modules/@ice/app/esm/test/index.d.ts", + "/node_modules/@ice/app/esm/utils/logger.d.ts", + "/node_modules/@ice/app/esm/index.d.ts" + ] + }, + "node16-esm": { + "name": ".", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/@ice/app/esm/index.d.ts", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/@ice/app/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@ice/app' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@ice/app' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/@ice/app/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath '.' with target './esm/index.js'.", + "File name '/node_modules/@ice/app/esm/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/@ice/app/esm/index.ts' does not exist.", + "File '/node_modules/@ice/app/esm/index.tsx' does not exist.", + "File '/node_modules/@ice/app/esm/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@ice/app' was successfully resolved to '/node_modules/@ice/app/esm/index.d.ts' with Package ID '@ice/app/esm/index.d.ts@3.2.6'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@ice/app/esm/index.js", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/@ice/app/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@ice/app' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@ice/app' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@ice/app/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath '.' with target './esm/index.js'.", + "File name '/node_modules/@ice/app/esm/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/@ice/app/esm/index.ts' does not exist.", + "File '/node_modules/@ice/app/esm/index.tsx' does not exist.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@ice/app/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath '.' with target './esm/index.js'.", + "File name '/node_modules/@ice/app/esm/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/@ice/app/esm/index.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@ice/app' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@ice/app/package.json' exists according to earlier cached lookups.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field './esm/index.js' that references '/node_modules/@ice/app/esm/index.js'.", + "File '/node_modules/@ice/app/esm/index.js' exists - use it as a name resolution result.", + "File '/node_modules/@ice/app/esm/index.js' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@ice/app/esm/index.js', target file types: TypeScript.", + "File name '/node_modules/@ice/app/esm/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/@ice/app/esm/index.ts' does not exist.", + "File '/node_modules/@ice/app/esm/index.tsx' does not exist.", + "Directory '/node_modules/@ice/app/esm/index.js' does not exist, skipping all lookups in it.", + "======== Module name '@ice/app' was successfully resolved to '/node_modules/@ice/app/esm/index.js' with Package ID '@ice/app/esm/index.js@3.2.6'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@ice/app/esm/types/userConfig.d.ts", + "/node_modules/@ice/app/esm/config.d.ts", + "/node_modules/@ice/app/esm/test/defineJestConfig.d.ts", + "/node_modules/@ice/app/esm/test/defineVitestConfig.d.ts", + "/node_modules/@ice/app/esm/test/index.d.ts", + "/node_modules/@ice/app/esm/utils/logger.d.ts", + "/node_modules/@ice/app/esm/index.d.ts" + ] + }, + "bundler": { + "name": ".", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/@ice/app/esm/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@ice/app' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist.", + "Loading module '@ice/app' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/@ice/app/package.json'.", + "Using 'exports' subpath '.' with target './esm/index.js'.", + "File name '/node_modules/@ice/app/esm/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/@ice/app/esm/index.ts' does not exist.", + "File '/node_modules/@ice/app/esm/index.tsx' does not exist.", + "File '/node_modules/@ice/app/esm/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@ice/app' was successfully resolved to '/node_modules/@ice/app/esm/index.d.ts' with Package ID '@ice/app/esm/index.d.ts@3.2.6'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@ice/app/esm/index.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@ice/app' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist.", + "Loading module '@ice/app' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@ice/app/package.json'.", + "Using 'exports' subpath '.' with target './esm/index.js'.", + "File name '/node_modules/@ice/app/esm/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/@ice/app/esm/index.ts' does not exist.", + "File '/node_modules/@ice/app/esm/index.tsx' does not exist.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@ice/app/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath '.' with target './esm/index.js'.", + "File name '/node_modules/@ice/app/esm/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/@ice/app/esm/index.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@ice/app' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@ice/app/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@ice/app.ts' does not exist.", + "File '/node_modules/@ice/app.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field './esm/index.js' that references '/node_modules/@ice/app/esm/index.js'.", + "File '/node_modules/@ice/app/esm/index.js' exists - use it as a name resolution result.", + "File '/node_modules/@ice/app/esm/index.js' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@ice/app/esm/index.js', target file types: TypeScript.", + "File name '/node_modules/@ice/app/esm/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/@ice/app/esm/index.ts' does not exist.", + "File '/node_modules/@ice/app/esm/index.tsx' does not exist.", + "File '/node_modules/@ice/app/esm/index.js.ts' does not exist.", + "File '/node_modules/@ice/app/esm/index.js.tsx' does not exist.", + "Directory '/node_modules/@ice/app/esm/index.js' does not exist, skipping all lookups in it.", + "File '/node_modules/@ice/app/index.ts' does not exist.", + "File '/node_modules/@ice/app/index.tsx' does not exist.", + "======== Module name '@ice/app' was successfully resolved to '/node_modules/@ice/app/esm/index.js' with Package ID '@ice/app/esm/index.js@3.2.6'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@ice/app/esm/types/generator.d.ts", + "/node_modules/@ice/app/esm/utils/ServerCompileTask.d.ts", + "/node_modules/@ice/app/esm/utils/logger.d.ts", + "/node_modules/@ice/app/esm/types/plugin.d.ts", + "/node_modules/@ice/app/esm/types/userConfig.d.ts", + "/node_modules/@ice/app/esm/types/index.d.ts", + "/node_modules/@ice/app/esm/config.d.ts", + "/node_modules/@ice/app/esm/test/defineJestConfig.d.ts", + "/node_modules/@ice/app/esm/test/defineVitestConfig.d.ts", + "/node_modules/@ice/app/esm/test/index.d.ts", + "/node_modules/@ice/app/esm/index.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + }, + "./types": { + "subpath": "./types", + "resolutions": { + "node10": { + "name": "./types", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/@ice/app/types.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@ice/app/types' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module '@ice/app/types' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/@ice/app/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@ice/app/types.ts' does not exist.", + "File '/node_modules/@ice/app/types.tsx' does not exist.", + "File '/node_modules/@ice/app/types.d.ts' exists - use it as a name resolution result.", + "======== Module name '@ice/app/types' was successfully resolved to '/node_modules/@ice/app/types.d.ts' with Package ID '@ice/app/types.d.ts@3.2.6'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@ice/app/esm/types/generator.d.ts", + "/node_modules/@ice/app/esm/utils/ServerCompileTask.d.ts", + "/node_modules/@ice/app/esm/utils/logger.d.ts", + "/node_modules/@ice/app/esm/types/plugin.d.ts", + "/node_modules/@ice/app/esm/types/userConfig.d.ts", + "/node_modules/@ice/app/esm/types/index.d.ts", + "/node_modules/@ice/app/types.d.ts" + ] + }, + "node16-cjs": { + "name": "./types", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/@ice/app/esm/types/index.d.ts", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/@ice/app/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@ice/app/types' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@ice/app/types' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/@ice/app/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './types' with target './esm/types/index.js'.", + "File name '/node_modules/@ice/app/esm/types/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/@ice/app/esm/types/index.ts' does not exist.", + "File '/node_modules/@ice/app/esm/types/index.tsx' does not exist.", + "File '/node_modules/@ice/app/esm/types/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@ice/app/types' was successfully resolved to '/node_modules/@ice/app/esm/types/index.d.ts' with Package ID '@ice/app/esm/types/index.d.ts@3.2.6'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@ice/app/esm/types/index.js", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/@ice/app/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@ice/app/types' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@ice/app/types' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@ice/app/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './types' with target './esm/types/index.js'.", + "File name '/node_modules/@ice/app/esm/types/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/@ice/app/esm/types/index.ts' does not exist.", + "File '/node_modules/@ice/app/esm/types/index.tsx' does not exist.", + "Export specifier './types' does not exist in package.json scope at path '/node_modules/@ice/app'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@ice/app/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './types' with target './esm/types/index.js'.", + "File name '/node_modules/@ice/app/esm/types/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/@ice/app/esm/types/index.js' exists - use it as a name resolution result.", + "======== Module name '@ice/app/types' was successfully resolved to '/node_modules/@ice/app/esm/types/index.js' with Package ID '@ice/app/esm/types/index.js@3.2.6'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@ice/app/esm/types/generator.d.ts", + "/node_modules/@ice/app/esm/utils/ServerCompileTask.d.ts", + "/node_modules/@ice/app/esm/utils/logger.d.ts", + "/node_modules/@ice/app/esm/types/plugin.d.ts", + "/node_modules/@ice/app/esm/types/userConfig.d.ts", + "/node_modules/@ice/app/esm/types/index.d.ts" + ] + }, + "node16-esm": { + "name": "./types", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/@ice/app/esm/types/index.d.ts", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/@ice/app/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@ice/app/types' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@ice/app/types' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/@ice/app/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './types' with target './esm/types/index.js'.", + "File name '/node_modules/@ice/app/esm/types/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/@ice/app/esm/types/index.ts' does not exist.", + "File '/node_modules/@ice/app/esm/types/index.tsx' does not exist.", + "File '/node_modules/@ice/app/esm/types/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@ice/app/types' was successfully resolved to '/node_modules/@ice/app/esm/types/index.d.ts' with Package ID '@ice/app/esm/types/index.d.ts@3.2.6'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@ice/app/esm/types/index.js", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/@ice/app/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@ice/app/types' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@ice/app/types' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@ice/app/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './types' with target './esm/types/index.js'.", + "File name '/node_modules/@ice/app/esm/types/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/@ice/app/esm/types/index.ts' does not exist.", + "File '/node_modules/@ice/app/esm/types/index.tsx' does not exist.", + "Export specifier './types' does not exist in package.json scope at path '/node_modules/@ice/app'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@ice/app/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './types' with target './esm/types/index.js'.", + "File name '/node_modules/@ice/app/esm/types/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/@ice/app/esm/types/index.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@ice/app/types' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@ice/app/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field './esm/index.js' that references '/node_modules/@ice/app/types/esm/index.js'.", + "Loading module as file / folder, candidate module location '/node_modules/@ice/app/types/esm/index.js', target file types: TypeScript.", + "File name '/node_modules/@ice/app/types/esm/index.js' has a '.js' extension - stripping it.", + "======== Module name '@ice/app/types' was successfully resolved to '/node_modules/@ice/app/esm/types/index.js' with Package ID '@ice/app/esm/types/index.js@3.2.6'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@ice/app/esm/types/generator.d.ts", + "/node_modules/@ice/app/esm/utils/ServerCompileTask.d.ts", + "/node_modules/@ice/app/esm/utils/logger.d.ts", + "/node_modules/@ice/app/esm/types/plugin.d.ts", + "/node_modules/@ice/app/esm/types/userConfig.d.ts", + "/node_modules/@ice/app/esm/types/index.d.ts" + ] + }, + "bundler": { + "name": "./types", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/@ice/app/esm/types/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@ice/app/types' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@ice/app/types' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/@ice/app/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './types' with target './esm/types/index.js'.", + "File name '/node_modules/@ice/app/esm/types/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/@ice/app/esm/types/index.ts' does not exist.", + "File '/node_modules/@ice/app/esm/types/index.tsx' does not exist.", + "File '/node_modules/@ice/app/esm/types/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@ice/app/types' was successfully resolved to '/node_modules/@ice/app/esm/types/index.d.ts' with Package ID '@ice/app/esm/types/index.d.ts@3.2.6'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@ice/app/esm/types/index.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@ice/app/types' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@ice/app/types' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@ice/app/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './types' with target './esm/types/index.js'.", + "File name '/node_modules/@ice/app/esm/types/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/@ice/app/esm/types/index.ts' does not exist.", + "File '/node_modules/@ice/app/esm/types/index.tsx' does not exist.", + "Export specifier './types' does not exist in package.json scope at path '/node_modules/@ice/app'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@ice/app/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './types' with target './esm/types/index.js'.", + "File name '/node_modules/@ice/app/esm/types/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/@ice/app/esm/types/index.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@ice/app/types' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@ice/app/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@ice/app/types.ts' does not exist.", + "File '/node_modules/@ice/app/types.tsx' does not exist.", + "'package.json' has 'main' field './esm/index.js' that references '/node_modules/@ice/app/types/esm/index.js'.", + "Loading module as file / folder, candidate module location '/node_modules/@ice/app/types/esm/index.js', target file types: TypeScript.", + "File name '/node_modules/@ice/app/types/esm/index.js' has a '.js' extension - stripping it.", + "======== Module name '@ice/app/types' was successfully resolved to '/node_modules/@ice/app/esm/types/index.js' with Package ID '@ice/app/esm/types/index.js@3.2.6'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@ice/app/esm/types/generator.d.ts", + "/node_modules/@ice/app/esm/utils/ServerCompileTask.d.ts", + "/node_modules/@ice/app/esm/utils/logger.d.ts", + "/node_modules/@ice/app/esm/types/plugin.d.ts", + "/node_modules/@ice/app/esm/types/userConfig.d.ts", + "/node_modules/@ice/app/esm/types/index.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + }, + "./analyze": { + "subpath": "./analyze", + "resolutions": { + "node10": { + "name": "./analyze", + "resolutionKind": "node10" + }, + "node16-cjs": { + "name": "./analyze", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/@ice/app/esm/service/analyze.d.ts", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/@ice/app/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@ice/app/analyze' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@ice/app/analyze' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/@ice/app/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './analyze' with target './esm/service/analyze.js'.", + "File name '/node_modules/@ice/app/esm/service/analyze.js' has a '.js' extension - stripping it.", + "File '/node_modules/@ice/app/esm/service/analyze.ts' does not exist.", + "File '/node_modules/@ice/app/esm/service/analyze.tsx' does not exist.", + "File '/node_modules/@ice/app/esm/service/analyze.d.ts' exists - use it as a name resolution result.", + "======== Module name '@ice/app/analyze' was successfully resolved to '/node_modules/@ice/app/esm/service/analyze.d.ts' with Package ID '@ice/app/esm/service/analyze.d.ts@3.2.6'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@ice/app/esm/service/analyze.js", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/@ice/app/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@ice/app/analyze' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@ice/app/analyze' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@ice/app/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './analyze' with target './esm/service/analyze.js'.", + "File name '/node_modules/@ice/app/esm/service/analyze.js' has a '.js' extension - stripping it.", + "File '/node_modules/@ice/app/esm/service/analyze.ts' does not exist.", + "File '/node_modules/@ice/app/esm/service/analyze.tsx' does not exist.", + "Export specifier './analyze' does not exist in package.json scope at path '/node_modules/@ice/app'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@ice/app/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './analyze' with target './esm/service/analyze.js'.", + "File name '/node_modules/@ice/app/esm/service/analyze.js' has a '.js' extension - stripping it.", + "File '/node_modules/@ice/app/esm/service/analyze.js' exists - use it as a name resolution result.", + "======== Module name '@ice/app/analyze' was successfully resolved to '/node_modules/@ice/app/esm/service/analyze.js' with Package ID '@ice/app/esm/service/analyze.js@3.2.6'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@ice/app/esm/esbuild/scan.d.ts", + "/node_modules/@ice/app/esm/service/analyze.d.ts" + ] + }, + "node16-esm": { + "name": "./analyze", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/@ice/app/esm/service/analyze.d.ts", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/@ice/app/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@ice/app/analyze' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@ice/app/analyze' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/@ice/app/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './analyze' with target './esm/service/analyze.js'.", + "File name '/node_modules/@ice/app/esm/service/analyze.js' has a '.js' extension - stripping it.", + "File '/node_modules/@ice/app/esm/service/analyze.ts' does not exist.", + "File '/node_modules/@ice/app/esm/service/analyze.tsx' does not exist.", + "File '/node_modules/@ice/app/esm/service/analyze.d.ts' exists - use it as a name resolution result.", + "======== Module name '@ice/app/analyze' was successfully resolved to '/node_modules/@ice/app/esm/service/analyze.d.ts' with Package ID '@ice/app/esm/service/analyze.d.ts@3.2.6'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@ice/app/esm/service/analyze.js", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/@ice/app/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@ice/app/analyze' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@ice/app/analyze' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@ice/app/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './analyze' with target './esm/service/analyze.js'.", + "File name '/node_modules/@ice/app/esm/service/analyze.js' has a '.js' extension - stripping it.", + "File '/node_modules/@ice/app/esm/service/analyze.ts' does not exist.", + "File '/node_modules/@ice/app/esm/service/analyze.tsx' does not exist.", + "Export specifier './analyze' does not exist in package.json scope at path '/node_modules/@ice/app'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@ice/app/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './analyze' with target './esm/service/analyze.js'.", + "File name '/node_modules/@ice/app/esm/service/analyze.js' has a '.js' extension - stripping it.", + "File '/node_modules/@ice/app/esm/service/analyze.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@ice/app/analyze' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@ice/app/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field './esm/index.js' that references '/node_modules/@ice/app/analyze/esm/index.js'.", + "Loading module as file / folder, candidate module location '/node_modules/@ice/app/analyze/esm/index.js', target file types: TypeScript.", + "File name '/node_modules/@ice/app/analyze/esm/index.js' has a '.js' extension - stripping it.", + "======== Module name '@ice/app/analyze' was successfully resolved to '/node_modules/@ice/app/esm/service/analyze.js' with Package ID '@ice/app/esm/service/analyze.js@3.2.6'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@ice/app/esm/esbuild/scan.d.ts", + "/node_modules/@ice/app/esm/service/analyze.d.ts" + ] + }, + "bundler": { + "name": "./analyze", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/@ice/app/esm/service/analyze.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@ice/app/analyze' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@ice/app/analyze' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/@ice/app/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './analyze' with target './esm/service/analyze.js'.", + "File name '/node_modules/@ice/app/esm/service/analyze.js' has a '.js' extension - stripping it.", + "File '/node_modules/@ice/app/esm/service/analyze.ts' does not exist.", + "File '/node_modules/@ice/app/esm/service/analyze.tsx' does not exist.", + "File '/node_modules/@ice/app/esm/service/analyze.d.ts' exists - use it as a name resolution result.", + "======== Module name '@ice/app/analyze' was successfully resolved to '/node_modules/@ice/app/esm/service/analyze.d.ts' with Package ID '@ice/app/esm/service/analyze.d.ts@3.2.6'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@ice/app/esm/service/analyze.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@ice/app/analyze' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@ice/app/analyze' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@ice/app/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './analyze' with target './esm/service/analyze.js'.", + "File name '/node_modules/@ice/app/esm/service/analyze.js' has a '.js' extension - stripping it.", + "File '/node_modules/@ice/app/esm/service/analyze.ts' does not exist.", + "File '/node_modules/@ice/app/esm/service/analyze.tsx' does not exist.", + "Export specifier './analyze' does not exist in package.json scope at path '/node_modules/@ice/app'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@ice/app/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './analyze' with target './esm/service/analyze.js'.", + "File name '/node_modules/@ice/app/esm/service/analyze.js' has a '.js' extension - stripping it.", + "File '/node_modules/@ice/app/esm/service/analyze.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@ice/app/analyze' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@ice/app/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@ice/app/analyze.ts' does not exist.", + "File '/node_modules/@ice/app/analyze.tsx' does not exist.", + "'package.json' has 'main' field './esm/index.js' that references '/node_modules/@ice/app/analyze/esm/index.js'.", + "Loading module as file / folder, candidate module location '/node_modules/@ice/app/analyze/esm/index.js', target file types: TypeScript.", + "File name '/node_modules/@ice/app/analyze/esm/index.js' has a '.js' extension - stripping it.", + "======== Module name '@ice/app/analyze' was successfully resolved to '/node_modules/@ice/app/esm/service/analyze.js' with Package ID '@ice/app/esm/service/analyze.js@3.2.6'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@ice/app/esm/esbuild/scan.d.ts", + "/node_modules/@ice/app/esm/service/analyze.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + } + }, + "problems": [ + { + "kind": "CJSResolvesToESM", + "entrypoint": ".", + "resolutionKind": "node16-cjs" + }, + { + "kind": "CJSResolvesToESM", + "entrypoint": "./types", + "resolutionKind": "node16-cjs" + }, + { + "kind": "NoResolution", + "entrypoint": "./analyze", + "resolutionKind": "node10" + }, + { + "kind": "CJSResolvesToESM", + "entrypoint": "./analyze", + "resolutionKind": "node16-cjs" + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@ice/app/esm/types/userConfig.d.ts", + "moduleSpecifier": "./plugin", + "pos": 391, + "end": 402, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './plugin' from '/node_modules/@ice/app/esm/types/userConfig.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@ice/app/esm/types/plugin', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@ice/app/esm/types/plugin' does not exist, skipping all lookups in it.", + "======== Module name './plugin' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@ice/app/esm/index.d.ts", + "moduleSpecifier": "./types", + "pos": 81, + "end": 91, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './types' from '/node_modules/@ice/app/esm/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@ice/app/esm/types', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name './types' was not resolved. ========" + ] + } + ] +} diff --git a/packages/core/test/snapshots/@ice__app@3.2.6.tgz.md b/packages/core/test/snapshots/@ice__app@3.2.6.tgz.md deleted file mode 100644 index 67b0b37..0000000 --- a/packages/core/test/snapshots/@ice__app@3.2.6.tgz.md +++ /dev/null @@ -1,61 +0,0 @@ -# @ice__app@3.2.6.tgz - -## Problems - -```json -[ - { - "kind": "CJSResolvesToESM", - "entrypoint": ".", - "resolutionKind": "node16-cjs" - }, - { - "kind": "CJSResolvesToESM", - "entrypoint": "./types", - "resolutionKind": "node16-cjs" - }, - { - "kind": "NoResolution", - "entrypoint": "./analyze", - "resolutionKind": "node10" - }, - { - "kind": "CJSResolvesToESM", - "entrypoint": "./analyze", - "resolutionKind": "node16-cjs" - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@ice/app/esm/types/userConfig.d.ts", - "moduleSpecifier": "./plugin", - "pos": 391, - "end": 402, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './plugin' from '/node_modules/@ice/app/esm/types/userConfig.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@ice/app/esm/types/plugin', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/@ice/app/esm/types/plugin' does not exist, skipping all lookups in it.", - "======== Module name './plugin' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@ice/app/esm/index.d.ts", - "moduleSpecifier": "./types", - "pos": 81, - "end": 91, - "resolutionMode": 99, - "trace": [ - "======== Resolving module './types' from '/node_modules/@ice/app/esm/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/@ice/app/esm/types', target file types: TypeScript, JavaScript, Declaration, JSON.", - "======== Module name './types' was not resolved. ========" - ] - } -] -``` \ No newline at end of file diff --git a/packages/core/test/snapshots/@reduxjs__toolkit@2.0.0-beta.0.tgz.json b/packages/core/test/snapshots/@reduxjs__toolkit@2.0.0-beta.0.tgz.json new file mode 100644 index 0000000..13acdfb --- /dev/null +++ b/packages/core/test/snapshots/@reduxjs__toolkit@2.0.0-beta.0.tgz.json @@ -0,0 +1,3259 @@ +{ + "packageName": "@reduxjs/toolkit", + "packageVersion": "2.0.0-beta.0", + "types": { + "kind": "included" + }, + "buildTools": { + "typescript": "~4.9", + "@microsoft/api-extractor": "^7.13.2" + }, + "entrypoints": { + "./package.json": { + "subpath": "./package.json", + "resolutions": { + "node10": { + "name": "./package.json", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/@reduxjs/toolkit/package.json", + "isJson": true, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/package.json' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module '@reduxjs/toolkit/package.json' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/@reduxjs/toolkit/package.json'.", + "'package.json' does not have a 'typesVersions' field.", + "File name '/node_modules/@reduxjs/toolkit/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/@reduxjs/toolkit/package.d.json.ts' does not exist.", + "File '/node_modules/@reduxjs/toolkit/package.json.ts' does not exist.", + "File '/node_modules/@reduxjs/toolkit/package.json.tsx' does not exist.", + "File '/node_modules/@reduxjs/toolkit/package.json.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'dist/index.d.ts' that references '/node_modules/@reduxjs/toolkit/package.json/dist/index.d.ts'.", + "Loading module as file / folder, candidate module location '/node_modules/@reduxjs/toolkit/package.json/dist/index.d.ts', target file types: TypeScript, Declaration.", + "File name '/node_modules/@reduxjs/toolkit/package.json/dist/index.d.ts' has a '.d.ts' extension - stripping it.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/package.json'", + "File name '/node_modules/@types/reduxjs__toolkit/package.json' has a '.json' extension - stripping it.", + "Loading module '@reduxjs/toolkit/package.json' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "File name '/node_modules/@reduxjs/toolkit/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists - use it as a name resolution result.", + "======== Module name '@reduxjs/toolkit/package.json' was successfully resolved to '/node_modules/@reduxjs/toolkit/package.json' with Package ID '@reduxjs/toolkit/package.json@2.0.0-beta.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@reduxjs/toolkit/package.json" + ] + }, + "node16-cjs": { + "name": "./package.json", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/@reduxjs/toolkit/package.json", + "isJson": true, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/package.json' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist.", + "Loading module '@reduxjs/toolkit/package.json' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/@reduxjs/toolkit/package.json'.", + "Using 'exports' subpath './package.json' with target './package.json'.", + "File name '/node_modules/@reduxjs/toolkit/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/@reduxjs/toolkit/package.d.json.ts' does not exist.", + "Export specifier './package.json' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/package.json'", + "File name '/node_modules/@types/reduxjs__toolkit/package.json' has a '.json' extension - stripping it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './package.json' with target './package.json'.", + "File name '/node_modules/@reduxjs/toolkit/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists - use it as a name resolution result.", + "======== Module name '@reduxjs/toolkit/package.json' was successfully resolved to '/node_modules/@reduxjs/toolkit/package.json' with Package ID '@reduxjs/toolkit/package.json@2.0.0-beta.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@reduxjs/toolkit/package.json" + ] + }, + "node16-esm": { + "name": "./package.json", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/@reduxjs/toolkit/package.json", + "isJson": true, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/package.json' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@reduxjs/toolkit/package.json' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './package.json' with target './package.json'.", + "File name '/node_modules/@reduxjs/toolkit/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/@reduxjs/toolkit/package.d.json.ts' does not exist.", + "Export specifier './package.json' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/package.json'", + "File name '/node_modules/@types/reduxjs__toolkit/package.json' has a '.json' extension - stripping it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './package.json' with target './package.json'.", + "File name '/node_modules/@reduxjs/toolkit/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@reduxjs/toolkit/package.json' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "'package.json' does not have a 'typesVersions' field.", + "File name '/node_modules/@reduxjs/toolkit/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/@reduxjs/toolkit/package.d.json.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'dist/index.d.ts' that references '/node_modules/@reduxjs/toolkit/package.json/dist/index.d.ts'.", + "Loading module as file / folder, candidate module location '/node_modules/@reduxjs/toolkit/package.json/dist/index.d.ts', target file types: TypeScript, Declaration.", + "File name '/node_modules/@reduxjs/toolkit/package.json/dist/index.d.ts' has a '.d.ts' extension - stripping it.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/package.json'", + "File name '/node_modules/@types/reduxjs__toolkit/package.json' has a '.json' extension - stripping it.", + "======== Module name '@reduxjs/toolkit/package.json' was successfully resolved to '/node_modules/@reduxjs/toolkit/package.json' with Package ID '@reduxjs/toolkit/package.json@2.0.0-beta.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@reduxjs/toolkit/package.json" + ] + }, + "bundler": { + "name": "./package.json", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/@reduxjs/toolkit/package.json", + "isJson": true, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/package.json' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist.", + "Loading module '@reduxjs/toolkit/package.json' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/@reduxjs/toolkit/package.json'.", + "Using 'exports' subpath './package.json' with target './package.json'.", + "File name '/node_modules/@reduxjs/toolkit/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/@reduxjs/toolkit/package.d.json.ts' does not exist.", + "Export specifier './package.json' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/package.json'", + "File name '/node_modules/@types/reduxjs__toolkit/package.json' has a '.json' extension - stripping it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './package.json' with target './package.json'.", + "File name '/node_modules/@reduxjs/toolkit/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@reduxjs/toolkit/package.json' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "'package.json' does not have a 'typesVersions' field.", + "File name '/node_modules/@reduxjs/toolkit/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/@reduxjs/toolkit/package.d.json.ts' does not exist.", + "File '/node_modules/@reduxjs/toolkit/package.json.ts' does not exist.", + "File '/node_modules/@reduxjs/toolkit/package.json.tsx' does not exist.", + "File '/node_modules/@reduxjs/toolkit/package.json.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'dist/index.d.ts' that references '/node_modules/@reduxjs/toolkit/package.json/dist/index.d.ts'.", + "Loading module as file / folder, candidate module location '/node_modules/@reduxjs/toolkit/package.json/dist/index.d.ts', target file types: TypeScript, Declaration.", + "File name '/node_modules/@reduxjs/toolkit/package.json/dist/index.d.ts' has a '.d.ts' extension - stripping it.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/package.json'", + "File name '/node_modules/@types/reduxjs__toolkit/package.json' has a '.json' extension - stripping it.", + "======== Module name '@reduxjs/toolkit/package.json' was successfully resolved to '/node_modules/@reduxjs/toolkit/package.json' with Package ID '@reduxjs/toolkit/package.json@2.0.0-beta.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@reduxjs/toolkit/package.json" + ] + } + }, + "hasTypes": false, + "isWildcard": false + }, + ".": { + "subpath": ".", + "resolutions": { + "node10": { + "name": ".", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/@reduxjs/toolkit/dist/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@reduxjs/toolkit' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module '@reduxjs/toolkit' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit.ts' does not exist.", + "File '/node_modules/@reduxjs/toolkit.tsx' does not exist.", + "File '/node_modules/@reduxjs/toolkit.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'dist/index.d.ts' that references '/node_modules/@reduxjs/toolkit/dist/index.d.ts'.", + "File '/node_modules/@reduxjs/toolkit/dist/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@reduxjs/toolkit' was successfully resolved to '/node_modules/@reduxjs/toolkit/dist/index.d.ts' with Package ID '@reduxjs/toolkit/dist/index.d.ts@2.0.0-beta.0'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@reduxjs/toolkit/dist/cjs/index.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@reduxjs/toolkit' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module '@reduxjs/toolkit' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@reduxjs/toolkit/package.json'.", + "File '/node_modules/@reduxjs/toolkit.ts' does not exist.", + "File '/node_modules/@reduxjs/toolkit.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'dist/cjs/index.js' that references '/node_modules/@reduxjs/toolkit/dist/cjs/index.js'.", + "File '/node_modules/@reduxjs/toolkit/dist/cjs/index.js' exists - use it as a name resolution result.", + "File '/node_modules/@reduxjs/toolkit/dist/cjs/index.js' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@reduxjs/toolkit/dist/cjs/index.js', target file types: TypeScript.", + "File name '/node_modules/@reduxjs/toolkit/dist/cjs/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/@reduxjs/toolkit/dist/cjs/index.ts' does not exist.", + "File '/node_modules/@reduxjs/toolkit/dist/cjs/index.tsx' does not exist.", + "File '/node_modules/@reduxjs/toolkit/dist/cjs/index.js.ts' does not exist.", + "File '/node_modules/@reduxjs/toolkit/dist/cjs/index.js.tsx' does not exist.", + "Directory '/node_modules/@reduxjs/toolkit/dist/cjs/index.js' does not exist, skipping all lookups in it.", + "File '/node_modules/@reduxjs/toolkit/index.ts' does not exist.", + "File '/node_modules/@reduxjs/toolkit/index.tsx' does not exist.", + "Loading module '@reduxjs/toolkit' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit.js' does not exist.", + "File '/node_modules/@reduxjs/toolkit.jsx' does not exist.", + "'package.json' has 'main' field 'dist/cjs/index.js' that references '/node_modules/@reduxjs/toolkit/dist/cjs/index.js'.", + "File '/node_modules/@reduxjs/toolkit/dist/cjs/index.js' exists - use it as a name resolution result.", + "======== Module name '@reduxjs/toolkit' was successfully resolved to '/node_modules/@reduxjs/toolkit/dist/cjs/index.js' with Package ID '@reduxjs/toolkit/dist/cjs/index.js@2.0.0-beta.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createDraftSafeSelector.d.ts", + "/node_modules/@reduxjs/toolkit/dist/devtoolsExtension.d.ts", + "/node_modules/@reduxjs/toolkit/dist/actionCreatorInvariantMiddleware.d.ts", + "/node_modules/@reduxjs/toolkit/dist/immutableStateInvariantMiddleware.d.ts", + "/node_modules/@reduxjs/toolkit/dist/serializableStateInvariantMiddleware.d.ts", + "/node_modules/@reduxjs/toolkit/dist/utils.d.ts", + "/node_modules/@reduxjs/toolkit/dist/tsHelpers.d.ts", + "/node_modules/@reduxjs/toolkit/dist/getDefaultMiddleware.d.ts", + "/node_modules/@reduxjs/toolkit/dist/autoBatchEnhancer.d.ts", + "/node_modules/@reduxjs/toolkit/dist/getDefaultEnhancers.d.ts", + "/node_modules/@reduxjs/toolkit/dist/configureStore.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createAction.d.ts", + "/node_modules/@reduxjs/toolkit/dist/mapBuilders.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createReducer.d.ts", + "/node_modules/@reduxjs/toolkit/dist/combineSlices.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createAsyncThunk.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createSlice.d.ts", + "/node_modules/@reduxjs/toolkit/dist/uncheckedindexed.ts", + "/node_modules/@reduxjs/toolkit/dist/entities/state_selectors.d.ts", + "/node_modules/@reduxjs/toolkit/dist/entities/models.d.ts", + "/node_modules/@reduxjs/toolkit/dist/entities/create_adapter.d.ts", + "/node_modules/@reduxjs/toolkit/dist/matchers.d.ts", + "/node_modules/@reduxjs/toolkit/dist/nanoid.d.ts", + "/node_modules/@reduxjs/toolkit/dist/isPlainObject.d.ts", + "/node_modules/@reduxjs/toolkit/dist/listenerMiddleware/exceptions.d.ts", + "/node_modules/@reduxjs/toolkit/dist/listenerMiddleware/types.d.ts", + "/node_modules/@reduxjs/toolkit/dist/listenerMiddleware/index.d.ts", + "/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/types.d.ts", + "/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/index.d.ts", + "/node_modules/@reduxjs/toolkit/dist/index.d.ts" + ] + }, + "node16-cjs": { + "name": ".", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/@reduxjs/toolkit/dist/index.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/@reduxjs/toolkit/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@reduxjs/toolkit' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@reduxjs/toolkit' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Matched 'exports' condition 'types'.", + "Using 'exports' subpath '.' with target './dist/index.d.ts'.", + "File '/node_modules/@reduxjs/toolkit/dist/index.d.ts' exists - use it as a name resolution result.", + "Resolved under condition 'types'.", + "Exiting conditional exports.", + "======== Module name '@reduxjs/toolkit' was successfully resolved to '/node_modules/@reduxjs/toolkit/dist/index.d.ts' with Package ID '@reduxjs/toolkit/dist/index.d.ts@2.0.0-beta.0'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@reduxjs/toolkit/dist/cjs/index.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/@reduxjs/toolkit/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@reduxjs/toolkit' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist.", + "Loading module '@reduxjs/toolkit' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@reduxjs/toolkit/package.json'.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Saw non-matching condition 'import'.", + "Matched 'exports' condition 'default'.", + "Using 'exports' subpath '.' with target './dist/cjs/index.js'.", + "File name '/node_modules/@reduxjs/toolkit/dist/cjs/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/@reduxjs/toolkit/dist/cjs/index.ts' does not exist.", + "File '/node_modules/@reduxjs/toolkit/dist/cjs/index.tsx' does not exist.", + "Failed to resolve under condition 'default'.", + "Exiting conditional exports.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Saw non-matching condition 'import'.", + "Matched 'exports' condition 'default'.", + "Using 'exports' subpath '.' with target './dist/cjs/index.js'.", + "File name '/node_modules/@reduxjs/toolkit/dist/cjs/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/@reduxjs/toolkit/dist/cjs/index.js' exists - use it as a name resolution result.", + "Resolved under condition 'default'.", + "Exiting conditional exports.", + "======== Module name '@reduxjs/toolkit' was successfully resolved to '/node_modules/@reduxjs/toolkit/dist/cjs/index.js' with Package ID '@reduxjs/toolkit/dist/cjs/index.js@2.0.0-beta.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createDraftSafeSelector.d.ts", + "/node_modules/@reduxjs/toolkit/dist/devtoolsExtension.d.ts", + "/node_modules/@reduxjs/toolkit/dist/actionCreatorInvariantMiddleware.d.ts", + "/node_modules/@reduxjs/toolkit/dist/immutableStateInvariantMiddleware.d.ts", + "/node_modules/@reduxjs/toolkit/dist/serializableStateInvariantMiddleware.d.ts", + "/node_modules/@reduxjs/toolkit/dist/utils.d.ts", + "/node_modules/@reduxjs/toolkit/dist/tsHelpers.d.ts", + "/node_modules/@reduxjs/toolkit/dist/getDefaultMiddleware.d.ts", + "/node_modules/@reduxjs/toolkit/dist/autoBatchEnhancer.d.ts", + "/node_modules/@reduxjs/toolkit/dist/getDefaultEnhancers.d.ts", + "/node_modules/@reduxjs/toolkit/dist/configureStore.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createAction.d.ts", + "/node_modules/@reduxjs/toolkit/dist/mapBuilders.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createReducer.d.ts", + "/node_modules/@reduxjs/toolkit/dist/combineSlices.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createAsyncThunk.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createSlice.d.ts", + "/node_modules/@reduxjs/toolkit/dist/uncheckedindexed.ts", + "/node_modules/@reduxjs/toolkit/dist/entities/state_selectors.d.ts", + "/node_modules/@reduxjs/toolkit/dist/entities/models.d.ts", + "/node_modules/@reduxjs/toolkit/dist/entities/create_adapter.d.ts", + "/node_modules/@reduxjs/toolkit/dist/matchers.d.ts", + "/node_modules/@reduxjs/toolkit/dist/nanoid.d.ts", + "/node_modules/@reduxjs/toolkit/dist/isPlainObject.d.ts", + "/node_modules/@reduxjs/toolkit/dist/listenerMiddleware/exceptions.d.ts", + "/node_modules/@reduxjs/toolkit/dist/listenerMiddleware/types.d.ts", + "/node_modules/@reduxjs/toolkit/dist/listenerMiddleware/index.d.ts", + "/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/types.d.ts", + "/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/index.d.ts", + "/node_modules/@reduxjs/toolkit/dist/index.d.ts" + ] + }, + "node16-esm": { + "name": ".", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/@reduxjs/toolkit/dist/index.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/@reduxjs/toolkit/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@reduxjs/toolkit' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@reduxjs/toolkit' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Matched 'exports' condition 'types'.", + "Using 'exports' subpath '.' with target './dist/index.d.ts'.", + "File '/node_modules/@reduxjs/toolkit/dist/index.d.ts' exists - use it as a name resolution result.", + "Resolved under condition 'types'.", + "Exiting conditional exports.", + "======== Module name '@reduxjs/toolkit' was successfully resolved to '/node_modules/@reduxjs/toolkit/dist/index.d.ts' with Package ID '@reduxjs/toolkit/dist/index.d.ts@2.0.0-beta.0'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@reduxjs/toolkit/dist/redux-toolkit.modern.mjs", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "extension", + "reasonFileName": "/node_modules/@reduxjs/toolkit/dist/redux-toolkit.modern.mjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@reduxjs/toolkit' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@reduxjs/toolkit' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Matched 'exports' condition 'import'.", + "Using 'exports' subpath '.' with target './dist/redux-toolkit.modern.mjs'.", + "File name '/node_modules/@reduxjs/toolkit/dist/redux-toolkit.modern.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/@reduxjs/toolkit/dist/redux-toolkit.modern.mts' does not exist.", + "Failed to resolve under condition 'import'.", + "Matched 'exports' condition 'default'.", + "Using 'exports' subpath '.' with target './dist/cjs/index.js'.", + "File name '/node_modules/@reduxjs/toolkit/dist/cjs/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/@reduxjs/toolkit/dist/cjs/index.ts' does not exist.", + "File '/node_modules/@reduxjs/toolkit/dist/cjs/index.tsx' does not exist.", + "Failed to resolve under condition 'default'.", + "Exiting conditional exports.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Matched 'exports' condition 'import'.", + "Using 'exports' subpath '.' with target './dist/redux-toolkit.modern.mjs'.", + "File name '/node_modules/@reduxjs/toolkit/dist/redux-toolkit.modern.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/@reduxjs/toolkit/dist/redux-toolkit.modern.mjs' exists - use it as a name resolution result.", + "Resolved under condition 'import'.", + "Exiting conditional exports.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@reduxjs/toolkit' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'dist/cjs/index.js' that references '/node_modules/@reduxjs/toolkit/dist/cjs/index.js'.", + "File '/node_modules/@reduxjs/toolkit/dist/cjs/index.js' exists - use it as a name resolution result.", + "File '/node_modules/@reduxjs/toolkit/dist/cjs/index.js' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@reduxjs/toolkit/dist/cjs/index.js', target file types: TypeScript.", + "File name '/node_modules/@reduxjs/toolkit/dist/cjs/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/@reduxjs/toolkit/dist/cjs/index.ts' does not exist.", + "File '/node_modules/@reduxjs/toolkit/dist/cjs/index.tsx' does not exist.", + "File '/node_modules/@reduxjs/toolkit/dist/cjs/index.js.ts' does not exist.", + "File '/node_modules/@reduxjs/toolkit/dist/cjs/index.js.tsx' does not exist.", + "Directory '/node_modules/@reduxjs/toolkit/dist/cjs/index.js' does not exist, skipping all lookups in it.", + "======== Module name '@reduxjs/toolkit' was successfully resolved to '/node_modules/@reduxjs/toolkit/dist/redux-toolkit.modern.mjs' with Package ID '@reduxjs/toolkit/dist/redux-toolkit.modern.mjs@2.0.0-beta.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createDraftSafeSelector.d.ts", + "/node_modules/@reduxjs/toolkit/dist/devtoolsExtension.d.ts", + "/node_modules/@reduxjs/toolkit/dist/actionCreatorInvariantMiddleware.d.ts", + "/node_modules/@reduxjs/toolkit/dist/immutableStateInvariantMiddleware.d.ts", + "/node_modules/@reduxjs/toolkit/dist/serializableStateInvariantMiddleware.d.ts", + "/node_modules/@reduxjs/toolkit/dist/utils.d.ts", + "/node_modules/@reduxjs/toolkit/dist/tsHelpers.d.ts", + "/node_modules/@reduxjs/toolkit/dist/getDefaultMiddleware.d.ts", + "/node_modules/@reduxjs/toolkit/dist/autoBatchEnhancer.d.ts", + "/node_modules/@reduxjs/toolkit/dist/getDefaultEnhancers.d.ts", + "/node_modules/@reduxjs/toolkit/dist/configureStore.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createAction.d.ts", + "/node_modules/@reduxjs/toolkit/dist/mapBuilders.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createReducer.d.ts", + "/node_modules/@reduxjs/toolkit/dist/combineSlices.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createAsyncThunk.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createSlice.d.ts", + "/node_modules/@reduxjs/toolkit/dist/uncheckedindexed.ts", + "/node_modules/@reduxjs/toolkit/dist/entities/state_selectors.d.ts", + "/node_modules/@reduxjs/toolkit/dist/entities/models.d.ts", + "/node_modules/@reduxjs/toolkit/dist/entities/create_adapter.d.ts", + "/node_modules/@reduxjs/toolkit/dist/matchers.d.ts", + "/node_modules/@reduxjs/toolkit/dist/nanoid.d.ts", + "/node_modules/@reduxjs/toolkit/dist/isPlainObject.d.ts", + "/node_modules/@reduxjs/toolkit/dist/listenerMiddleware/exceptions.d.ts", + "/node_modules/@reduxjs/toolkit/dist/listenerMiddleware/types.d.ts", + "/node_modules/@reduxjs/toolkit/dist/listenerMiddleware/index.d.ts", + "/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/types.d.ts", + "/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/index.d.ts", + "/node_modules/@reduxjs/toolkit/dist/index.d.ts" + ] + }, + "bundler": { + "name": ".", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/@reduxjs/toolkit/dist/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@reduxjs/toolkit' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@reduxjs/toolkit' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Matched 'exports' condition 'types'.", + "Using 'exports' subpath '.' with target './dist/index.d.ts'.", + "File '/node_modules/@reduxjs/toolkit/dist/index.d.ts' exists - use it as a name resolution result.", + "Resolved under condition 'types'.", + "Exiting conditional exports.", + "======== Module name '@reduxjs/toolkit' was successfully resolved to '/node_modules/@reduxjs/toolkit/dist/index.d.ts' with Package ID '@reduxjs/toolkit/dist/index.d.ts@2.0.0-beta.0'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@reduxjs/toolkit/dist/redux-toolkit.modern.mjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@reduxjs/toolkit' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist.", + "Loading module '@reduxjs/toolkit' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@reduxjs/toolkit/package.json'.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Matched 'exports' condition 'import'.", + "Using 'exports' subpath '.' with target './dist/redux-toolkit.modern.mjs'.", + "File name '/node_modules/@reduxjs/toolkit/dist/redux-toolkit.modern.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/@reduxjs/toolkit/dist/redux-toolkit.modern.mts' does not exist.", + "Failed to resolve under condition 'import'.", + "Matched 'exports' condition 'default'.", + "Using 'exports' subpath '.' with target './dist/cjs/index.js'.", + "File name '/node_modules/@reduxjs/toolkit/dist/cjs/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/@reduxjs/toolkit/dist/cjs/index.ts' does not exist.", + "File '/node_modules/@reduxjs/toolkit/dist/cjs/index.tsx' does not exist.", + "Failed to resolve under condition 'default'.", + "Exiting conditional exports.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Matched 'exports' condition 'import'.", + "Using 'exports' subpath '.' with target './dist/redux-toolkit.modern.mjs'.", + "File name '/node_modules/@reduxjs/toolkit/dist/redux-toolkit.modern.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/@reduxjs/toolkit/dist/redux-toolkit.modern.mjs' exists - use it as a name resolution result.", + "Resolved under condition 'import'.", + "Exiting conditional exports.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@reduxjs/toolkit' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit.ts' does not exist.", + "File '/node_modules/@reduxjs/toolkit.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'dist/cjs/index.js' that references '/node_modules/@reduxjs/toolkit/dist/cjs/index.js'.", + "File '/node_modules/@reduxjs/toolkit/dist/cjs/index.js' exists - use it as a name resolution result.", + "File '/node_modules/@reduxjs/toolkit/dist/cjs/index.js' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@reduxjs/toolkit/dist/cjs/index.js', target file types: TypeScript.", + "File name '/node_modules/@reduxjs/toolkit/dist/cjs/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/@reduxjs/toolkit/dist/cjs/index.ts' does not exist.", + "File '/node_modules/@reduxjs/toolkit/dist/cjs/index.tsx' does not exist.", + "File '/node_modules/@reduxjs/toolkit/dist/cjs/index.js.ts' does not exist.", + "File '/node_modules/@reduxjs/toolkit/dist/cjs/index.js.tsx' does not exist.", + "Directory '/node_modules/@reduxjs/toolkit/dist/cjs/index.js' does not exist, skipping all lookups in it.", + "File '/node_modules/@reduxjs/toolkit/index.ts' does not exist.", + "File '/node_modules/@reduxjs/toolkit/index.tsx' does not exist.", + "======== Module name '@reduxjs/toolkit' was successfully resolved to '/node_modules/@reduxjs/toolkit/dist/redux-toolkit.modern.mjs' with Package ID '@reduxjs/toolkit/dist/redux-toolkit.modern.mjs@2.0.0-beta.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createDraftSafeSelector.d.ts", + "/node_modules/@reduxjs/toolkit/dist/devtoolsExtension.d.ts", + "/node_modules/@reduxjs/toolkit/dist/actionCreatorInvariantMiddleware.d.ts", + "/node_modules/@reduxjs/toolkit/dist/immutableStateInvariantMiddleware.d.ts", + "/node_modules/@reduxjs/toolkit/dist/serializableStateInvariantMiddleware.d.ts", + "/node_modules/@reduxjs/toolkit/dist/utils.d.ts", + "/node_modules/@reduxjs/toolkit/dist/tsHelpers.d.ts", + "/node_modules/@reduxjs/toolkit/dist/getDefaultMiddleware.d.ts", + "/node_modules/@reduxjs/toolkit/dist/autoBatchEnhancer.d.ts", + "/node_modules/@reduxjs/toolkit/dist/getDefaultEnhancers.d.ts", + "/node_modules/@reduxjs/toolkit/dist/configureStore.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createAction.d.ts", + "/node_modules/@reduxjs/toolkit/dist/mapBuilders.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createReducer.d.ts", + "/node_modules/@reduxjs/toolkit/dist/combineSlices.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createAsyncThunk.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createSlice.d.ts", + "/node_modules/@reduxjs/toolkit/dist/uncheckedindexed.ts", + "/node_modules/@reduxjs/toolkit/dist/entities/state_selectors.d.ts", + "/node_modules/@reduxjs/toolkit/dist/entities/models.d.ts", + "/node_modules/@reduxjs/toolkit/dist/entities/create_adapter.d.ts", + "/node_modules/@reduxjs/toolkit/dist/matchers.d.ts", + "/node_modules/@reduxjs/toolkit/dist/nanoid.d.ts", + "/node_modules/@reduxjs/toolkit/dist/isPlainObject.d.ts", + "/node_modules/@reduxjs/toolkit/dist/listenerMiddleware/exceptions.d.ts", + "/node_modules/@reduxjs/toolkit/dist/listenerMiddleware/types.d.ts", + "/node_modules/@reduxjs/toolkit/dist/listenerMiddleware/index.d.ts", + "/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/types.d.ts", + "/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/index.d.ts", + "/node_modules/@reduxjs/toolkit/dist/index.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + }, + "./react": { + "subpath": "./react", + "resolutions": { + "node10": { + "name": "./react", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/@reduxjs/toolkit/dist/react/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/react' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module '@reduxjs/toolkit/react' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/@reduxjs/toolkit/react/package.json'.", + "File '/node_modules/@reduxjs/toolkit/react.ts' does not exist.", + "File '/node_modules/@reduxjs/toolkit/react.tsx' does not exist.", + "File '/node_modules/@reduxjs/toolkit/react.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field './../dist/react/index.d.ts' that references '/node_modules/@reduxjs/toolkit/dist/react/index.d.ts'.", + "File '/node_modules/@reduxjs/toolkit/dist/react/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@reduxjs/toolkit/react' was successfully resolved to '/node_modules/@reduxjs/toolkit/dist/react/index.d.ts' with Package ID '@reduxjs/toolkit-react/eact/index.d.ts@1.0.0'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@reduxjs/toolkit/dist/react/cjs/index.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/react' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module '@reduxjs/toolkit/react' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@reduxjs/toolkit/react/package.json'.", + "File '/node_modules/@reduxjs/toolkit/react.ts' does not exist.", + "File '/node_modules/@reduxjs/toolkit/react.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field '../dist/react/cjs/index.js' that references '/node_modules/@reduxjs/toolkit/dist/react/cjs/index.js'.", + "File '/node_modules/@reduxjs/toolkit/dist/react/cjs/index.js' exists - use it as a name resolution result.", + "File '/node_modules/@reduxjs/toolkit/dist/react/cjs/index.js' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@reduxjs/toolkit/dist/react/cjs/index.js', target file types: TypeScript.", + "File name '/node_modules/@reduxjs/toolkit/dist/react/cjs/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/@reduxjs/toolkit/dist/react/cjs/index.ts' does not exist.", + "File '/node_modules/@reduxjs/toolkit/dist/react/cjs/index.tsx' does not exist.", + "File '/node_modules/@reduxjs/toolkit/dist/react/cjs/index.js.ts' does not exist.", + "File '/node_modules/@reduxjs/toolkit/dist/react/cjs/index.js.tsx' does not exist.", + "Directory '/node_modules/@reduxjs/toolkit/dist/react/cjs/index.js' does not exist, skipping all lookups in it.", + "File '/node_modules/@reduxjs/toolkit/react/index.ts' does not exist.", + "File '/node_modules/@reduxjs/toolkit/react/index.tsx' does not exist.", + "Loading module '@reduxjs/toolkit/react' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@reduxjs/toolkit/react/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/react.js' does not exist.", + "File '/node_modules/@reduxjs/toolkit/react.jsx' does not exist.", + "'package.json' has 'main' field '../dist/react/cjs/index.js' that references '/node_modules/@reduxjs/toolkit/dist/react/cjs/index.js'.", + "File '/node_modules/@reduxjs/toolkit/dist/react/cjs/index.js' exists - use it as a name resolution result.", + "======== Module name '@reduxjs/toolkit/react' was successfully resolved to '/node_modules/@reduxjs/toolkit/dist/react/cjs/index.js' with Package ID '@reduxjs/toolkit-react/eact/cjs/index.js@1.0.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createDraftSafeSelector.d.ts", + "/node_modules/@reduxjs/toolkit/dist/devtoolsExtension.d.ts", + "/node_modules/@reduxjs/toolkit/dist/actionCreatorInvariantMiddleware.d.ts", + "/node_modules/@reduxjs/toolkit/dist/immutableStateInvariantMiddleware.d.ts", + "/node_modules/@reduxjs/toolkit/dist/serializableStateInvariantMiddleware.d.ts", + "/node_modules/@reduxjs/toolkit/dist/utils.d.ts", + "/node_modules/@reduxjs/toolkit/dist/tsHelpers.d.ts", + "/node_modules/@reduxjs/toolkit/dist/getDefaultMiddleware.d.ts", + "/node_modules/@reduxjs/toolkit/dist/autoBatchEnhancer.d.ts", + "/node_modules/@reduxjs/toolkit/dist/getDefaultEnhancers.d.ts", + "/node_modules/@reduxjs/toolkit/dist/configureStore.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createAction.d.ts", + "/node_modules/@reduxjs/toolkit/dist/mapBuilders.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createReducer.d.ts", + "/node_modules/@reduxjs/toolkit/dist/combineSlices.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createAsyncThunk.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createSlice.d.ts", + "/node_modules/@reduxjs/toolkit/dist/uncheckedindexed.ts", + "/node_modules/@reduxjs/toolkit/dist/entities/state_selectors.d.ts", + "/node_modules/@reduxjs/toolkit/dist/entities/models.d.ts", + "/node_modules/@reduxjs/toolkit/dist/entities/create_adapter.d.ts", + "/node_modules/@reduxjs/toolkit/dist/matchers.d.ts", + "/node_modules/@reduxjs/toolkit/dist/nanoid.d.ts", + "/node_modules/@reduxjs/toolkit/dist/isPlainObject.d.ts", + "/node_modules/@reduxjs/toolkit/dist/listenerMiddleware/exceptions.d.ts", + "/node_modules/@reduxjs/toolkit/dist/listenerMiddleware/types.d.ts", + "/node_modules/@reduxjs/toolkit/dist/listenerMiddleware/index.d.ts", + "/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/types.d.ts", + "/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/index.d.ts", + "/node_modules/@reduxjs/toolkit/dist/index.d.ts", + "/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/react/index.d.ts", + "/node_modules/@reduxjs/toolkit/dist/react/index.d.ts" + ] + }, + "node16-cjs": { + "name": "./react", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/@reduxjs/toolkit/dist/react/index.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/@reduxjs/toolkit/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/react' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@reduxjs/toolkit/react' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/@reduxjs/toolkit/react/package.json'.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Matched 'exports' condition 'types'.", + "Using 'exports' subpath './react' with target './dist/react/index.d.ts'.", + "File '/node_modules/@reduxjs/toolkit/dist/react/index.d.ts' exists - use it as a name resolution result.", + "Resolved under condition 'types'.", + "Exiting conditional exports.", + "======== Module name '@reduxjs/toolkit/react' was successfully resolved to '/node_modules/@reduxjs/toolkit/dist/react/index.d.ts' with Package ID '@reduxjs/toolkit/dist/react/index.d.ts@2.0.0-beta.0'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@reduxjs/toolkit/dist/react/cjs/index.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/@reduxjs/toolkit/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/react' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@reduxjs/toolkit/react' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@reduxjs/toolkit/react/package.json'.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Saw non-matching condition 'import'.", + "Matched 'exports' condition 'default'.", + "Using 'exports' subpath './react' with target './dist/react/cjs/index.js'.", + "File name '/node_modules/@reduxjs/toolkit/dist/react/cjs/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/@reduxjs/toolkit/dist/react/cjs/index.ts' does not exist.", + "File '/node_modules/@reduxjs/toolkit/dist/react/cjs/index.tsx' does not exist.", + "Failed to resolve under condition 'default'.", + "Exiting conditional exports.", + "Export specifier './react' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@reduxjs/toolkit/react/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Saw non-matching condition 'import'.", + "Matched 'exports' condition 'default'.", + "Using 'exports' subpath './react' with target './dist/react/cjs/index.js'.", + "File name '/node_modules/@reduxjs/toolkit/dist/react/cjs/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/@reduxjs/toolkit/dist/react/cjs/index.js' exists - use it as a name resolution result.", + "Resolved under condition 'default'.", + "Exiting conditional exports.", + "======== Module name '@reduxjs/toolkit/react' was successfully resolved to '/node_modules/@reduxjs/toolkit/dist/react/cjs/index.js' with Package ID '@reduxjs/toolkit/dist/react/cjs/index.js@2.0.0-beta.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createDraftSafeSelector.d.ts", + "/node_modules/@reduxjs/toolkit/dist/devtoolsExtension.d.ts", + "/node_modules/@reduxjs/toolkit/dist/actionCreatorInvariantMiddleware.d.ts", + "/node_modules/@reduxjs/toolkit/dist/immutableStateInvariantMiddleware.d.ts", + "/node_modules/@reduxjs/toolkit/dist/serializableStateInvariantMiddleware.d.ts", + "/node_modules/@reduxjs/toolkit/dist/utils.d.ts", + "/node_modules/@reduxjs/toolkit/dist/tsHelpers.d.ts", + "/node_modules/@reduxjs/toolkit/dist/getDefaultMiddleware.d.ts", + "/node_modules/@reduxjs/toolkit/dist/autoBatchEnhancer.d.ts", + "/node_modules/@reduxjs/toolkit/dist/getDefaultEnhancers.d.ts", + "/node_modules/@reduxjs/toolkit/dist/configureStore.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createAction.d.ts", + "/node_modules/@reduxjs/toolkit/dist/mapBuilders.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createReducer.d.ts", + "/node_modules/@reduxjs/toolkit/dist/combineSlices.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createAsyncThunk.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createSlice.d.ts", + "/node_modules/@reduxjs/toolkit/dist/uncheckedindexed.ts", + "/node_modules/@reduxjs/toolkit/dist/entities/state_selectors.d.ts", + "/node_modules/@reduxjs/toolkit/dist/entities/models.d.ts", + "/node_modules/@reduxjs/toolkit/dist/entities/create_adapter.d.ts", + "/node_modules/@reduxjs/toolkit/dist/matchers.d.ts", + "/node_modules/@reduxjs/toolkit/dist/nanoid.d.ts", + "/node_modules/@reduxjs/toolkit/dist/isPlainObject.d.ts", + "/node_modules/@reduxjs/toolkit/dist/listenerMiddleware/exceptions.d.ts", + "/node_modules/@reduxjs/toolkit/dist/listenerMiddleware/types.d.ts", + "/node_modules/@reduxjs/toolkit/dist/listenerMiddleware/index.d.ts", + "/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/types.d.ts", + "/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/index.d.ts", + "/node_modules/@reduxjs/toolkit/dist/index.d.ts", + "/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/react/index.d.ts", + "/node_modules/@reduxjs/toolkit/dist/react/index.d.ts" + ] + }, + "node16-esm": { + "name": "./react", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/@reduxjs/toolkit/dist/react/index.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/@reduxjs/toolkit/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/react' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@reduxjs/toolkit/react' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/@reduxjs/toolkit/react/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Matched 'exports' condition 'types'.", + "Using 'exports' subpath './react' with target './dist/react/index.d.ts'.", + "File '/node_modules/@reduxjs/toolkit/dist/react/index.d.ts' exists - use it as a name resolution result.", + "Resolved under condition 'types'.", + "Exiting conditional exports.", + "======== Module name '@reduxjs/toolkit/react' was successfully resolved to '/node_modules/@reduxjs/toolkit/dist/react/index.d.ts' with Package ID '@reduxjs/toolkit/dist/react/index.d.ts@2.0.0-beta.0'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@reduxjs/toolkit/dist/react/redux-toolkit-react.modern.mjs", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "extension", + "reasonFileName": "/node_modules/@reduxjs/toolkit/dist/react/redux-toolkit-react.modern.mjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/react' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@reduxjs/toolkit/react' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@reduxjs/toolkit/react/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Matched 'exports' condition 'import'.", + "Using 'exports' subpath './react' with target './dist/react/redux-toolkit-react.modern.mjs'.", + "File name '/node_modules/@reduxjs/toolkit/dist/react/redux-toolkit-react.modern.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/@reduxjs/toolkit/dist/react/redux-toolkit-react.modern.mts' does not exist.", + "Failed to resolve under condition 'import'.", + "Matched 'exports' condition 'default'.", + "Using 'exports' subpath './react' with target './dist/react/cjs/index.js'.", + "File name '/node_modules/@reduxjs/toolkit/dist/react/cjs/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/@reduxjs/toolkit/dist/react/cjs/index.ts' does not exist.", + "File '/node_modules/@reduxjs/toolkit/dist/react/cjs/index.tsx' does not exist.", + "Failed to resolve under condition 'default'.", + "Exiting conditional exports.", + "Export specifier './react' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@reduxjs/toolkit/react/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Matched 'exports' condition 'import'.", + "Using 'exports' subpath './react' with target './dist/react/redux-toolkit-react.modern.mjs'.", + "File name '/node_modules/@reduxjs/toolkit/dist/react/redux-toolkit-react.modern.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/@reduxjs/toolkit/dist/react/redux-toolkit-react.modern.mjs' exists - use it as a name resolution result.", + "Resolved under condition 'import'.", + "Exiting conditional exports.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@reduxjs/toolkit/react' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@reduxjs/toolkit/react/package.json' exists according to earlier cached lookups.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field '../dist/react/cjs/index.js' that references '/node_modules/@reduxjs/toolkit/dist/react/cjs/index.js'.", + "File '/node_modules/@reduxjs/toolkit/dist/react/cjs/index.js' exists - use it as a name resolution result.", + "File '/node_modules/@reduxjs/toolkit/dist/react/cjs/index.js' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@reduxjs/toolkit/dist/react/cjs/index.js', target file types: TypeScript.", + "File name '/node_modules/@reduxjs/toolkit/dist/react/cjs/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/@reduxjs/toolkit/dist/react/cjs/index.ts' does not exist.", + "File '/node_modules/@reduxjs/toolkit/dist/react/cjs/index.tsx' does not exist.", + "Directory '/node_modules/@reduxjs/toolkit/dist/react/cjs/index.js' does not exist, skipping all lookups in it.", + "======== Module name '@reduxjs/toolkit/react' was successfully resolved to '/node_modules/@reduxjs/toolkit/dist/react/redux-toolkit-react.modern.mjs' with Package ID '@reduxjs/toolkit/dist/react/redux-toolkit-react.modern.mjs@2.0.0-beta.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createDraftSafeSelector.d.ts", + "/node_modules/@reduxjs/toolkit/dist/devtoolsExtension.d.ts", + "/node_modules/@reduxjs/toolkit/dist/actionCreatorInvariantMiddleware.d.ts", + "/node_modules/@reduxjs/toolkit/dist/immutableStateInvariantMiddleware.d.ts", + "/node_modules/@reduxjs/toolkit/dist/serializableStateInvariantMiddleware.d.ts", + "/node_modules/@reduxjs/toolkit/dist/utils.d.ts", + "/node_modules/@reduxjs/toolkit/dist/tsHelpers.d.ts", + "/node_modules/@reduxjs/toolkit/dist/getDefaultMiddleware.d.ts", + "/node_modules/@reduxjs/toolkit/dist/autoBatchEnhancer.d.ts", + "/node_modules/@reduxjs/toolkit/dist/getDefaultEnhancers.d.ts", + "/node_modules/@reduxjs/toolkit/dist/configureStore.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createAction.d.ts", + "/node_modules/@reduxjs/toolkit/dist/mapBuilders.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createReducer.d.ts", + "/node_modules/@reduxjs/toolkit/dist/combineSlices.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createAsyncThunk.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createSlice.d.ts", + "/node_modules/@reduxjs/toolkit/dist/uncheckedindexed.ts", + "/node_modules/@reduxjs/toolkit/dist/entities/state_selectors.d.ts", + "/node_modules/@reduxjs/toolkit/dist/entities/models.d.ts", + "/node_modules/@reduxjs/toolkit/dist/entities/create_adapter.d.ts", + "/node_modules/@reduxjs/toolkit/dist/matchers.d.ts", + "/node_modules/@reduxjs/toolkit/dist/nanoid.d.ts", + "/node_modules/@reduxjs/toolkit/dist/isPlainObject.d.ts", + "/node_modules/@reduxjs/toolkit/dist/listenerMiddleware/exceptions.d.ts", + "/node_modules/@reduxjs/toolkit/dist/listenerMiddleware/types.d.ts", + "/node_modules/@reduxjs/toolkit/dist/listenerMiddleware/index.d.ts", + "/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/types.d.ts", + "/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/index.d.ts", + "/node_modules/@reduxjs/toolkit/dist/index.d.ts", + "/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/react/index.d.ts", + "/node_modules/@reduxjs/toolkit/dist/react/index.d.ts" + ] + }, + "bundler": { + "name": "./react", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/@reduxjs/toolkit/dist/react/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/react' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@reduxjs/toolkit/react' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/@reduxjs/toolkit/react/package.json'.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Matched 'exports' condition 'types'.", + "Using 'exports' subpath './react' with target './dist/react/index.d.ts'.", + "File '/node_modules/@reduxjs/toolkit/dist/react/index.d.ts' exists - use it as a name resolution result.", + "Resolved under condition 'types'.", + "Exiting conditional exports.", + "======== Module name '@reduxjs/toolkit/react' was successfully resolved to '/node_modules/@reduxjs/toolkit/dist/react/index.d.ts' with Package ID '@reduxjs/toolkit/dist/react/index.d.ts@2.0.0-beta.0'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@reduxjs/toolkit/dist/react/redux-toolkit-react.modern.mjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/react' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@reduxjs/toolkit/react' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@reduxjs/toolkit/react/package.json'.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Matched 'exports' condition 'import'.", + "Using 'exports' subpath './react' with target './dist/react/redux-toolkit-react.modern.mjs'.", + "File name '/node_modules/@reduxjs/toolkit/dist/react/redux-toolkit-react.modern.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/@reduxjs/toolkit/dist/react/redux-toolkit-react.modern.mts' does not exist.", + "Failed to resolve under condition 'import'.", + "Matched 'exports' condition 'default'.", + "Using 'exports' subpath './react' with target './dist/react/cjs/index.js'.", + "File name '/node_modules/@reduxjs/toolkit/dist/react/cjs/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/@reduxjs/toolkit/dist/react/cjs/index.ts' does not exist.", + "File '/node_modules/@reduxjs/toolkit/dist/react/cjs/index.tsx' does not exist.", + "Failed to resolve under condition 'default'.", + "Exiting conditional exports.", + "Export specifier './react' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@reduxjs/toolkit/react/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Matched 'exports' condition 'import'.", + "Using 'exports' subpath './react' with target './dist/react/redux-toolkit-react.modern.mjs'.", + "File name '/node_modules/@reduxjs/toolkit/dist/react/redux-toolkit-react.modern.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/@reduxjs/toolkit/dist/react/redux-toolkit-react.modern.mjs' exists - use it as a name resolution result.", + "Resolved under condition 'import'.", + "Exiting conditional exports.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@reduxjs/toolkit/react' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@reduxjs/toolkit/react/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/react.ts' does not exist.", + "File '/node_modules/@reduxjs/toolkit/react.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field '../dist/react/cjs/index.js' that references '/node_modules/@reduxjs/toolkit/dist/react/cjs/index.js'.", + "File '/node_modules/@reduxjs/toolkit/dist/react/cjs/index.js' exists - use it as a name resolution result.", + "File '/node_modules/@reduxjs/toolkit/dist/react/cjs/index.js' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@reduxjs/toolkit/dist/react/cjs/index.js', target file types: TypeScript.", + "File name '/node_modules/@reduxjs/toolkit/dist/react/cjs/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/@reduxjs/toolkit/dist/react/cjs/index.ts' does not exist.", + "File '/node_modules/@reduxjs/toolkit/dist/react/cjs/index.tsx' does not exist.", + "File '/node_modules/@reduxjs/toolkit/dist/react/cjs/index.js.ts' does not exist.", + "File '/node_modules/@reduxjs/toolkit/dist/react/cjs/index.js.tsx' does not exist.", + "Directory '/node_modules/@reduxjs/toolkit/dist/react/cjs/index.js' does not exist, skipping all lookups in it.", + "File '/node_modules/@reduxjs/toolkit/react/index.ts' does not exist.", + "File '/node_modules/@reduxjs/toolkit/react/index.tsx' does not exist.", + "======== Module name '@reduxjs/toolkit/react' was successfully resolved to '/node_modules/@reduxjs/toolkit/dist/react/redux-toolkit-react.modern.mjs' with Package ID '@reduxjs/toolkit/dist/react/redux-toolkit-react.modern.mjs@2.0.0-beta.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createDraftSafeSelector.d.ts", + "/node_modules/@reduxjs/toolkit/dist/devtoolsExtension.d.ts", + "/node_modules/@reduxjs/toolkit/dist/actionCreatorInvariantMiddleware.d.ts", + "/node_modules/@reduxjs/toolkit/dist/immutableStateInvariantMiddleware.d.ts", + "/node_modules/@reduxjs/toolkit/dist/serializableStateInvariantMiddleware.d.ts", + "/node_modules/@reduxjs/toolkit/dist/utils.d.ts", + "/node_modules/@reduxjs/toolkit/dist/tsHelpers.d.ts", + "/node_modules/@reduxjs/toolkit/dist/getDefaultMiddleware.d.ts", + "/node_modules/@reduxjs/toolkit/dist/autoBatchEnhancer.d.ts", + "/node_modules/@reduxjs/toolkit/dist/getDefaultEnhancers.d.ts", + "/node_modules/@reduxjs/toolkit/dist/configureStore.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createAction.d.ts", + "/node_modules/@reduxjs/toolkit/dist/mapBuilders.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createReducer.d.ts", + "/node_modules/@reduxjs/toolkit/dist/combineSlices.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createAsyncThunk.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createSlice.d.ts", + "/node_modules/@reduxjs/toolkit/dist/uncheckedindexed.ts", + "/node_modules/@reduxjs/toolkit/dist/entities/state_selectors.d.ts", + "/node_modules/@reduxjs/toolkit/dist/entities/models.d.ts", + "/node_modules/@reduxjs/toolkit/dist/entities/create_adapter.d.ts", + "/node_modules/@reduxjs/toolkit/dist/matchers.d.ts", + "/node_modules/@reduxjs/toolkit/dist/nanoid.d.ts", + "/node_modules/@reduxjs/toolkit/dist/isPlainObject.d.ts", + "/node_modules/@reduxjs/toolkit/dist/listenerMiddleware/exceptions.d.ts", + "/node_modules/@reduxjs/toolkit/dist/listenerMiddleware/types.d.ts", + "/node_modules/@reduxjs/toolkit/dist/listenerMiddleware/index.d.ts", + "/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/types.d.ts", + "/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/index.d.ts", + "/node_modules/@reduxjs/toolkit/dist/index.d.ts", + "/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/react/index.d.ts", + "/node_modules/@reduxjs/toolkit/dist/react/index.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + }, + "./query": { + "subpath": "./query", + "resolutions": { + "node10": { + "name": "./query", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/@reduxjs/toolkit/dist/query/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/query' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module '@reduxjs/toolkit/query' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/@reduxjs/toolkit/query/package.json'.", + "File '/node_modules/@reduxjs/toolkit/query.ts' does not exist.", + "File '/node_modules/@reduxjs/toolkit/query.tsx' does not exist.", + "File '/node_modules/@reduxjs/toolkit/query.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field './../dist/query/index.d.ts' that references '/node_modules/@reduxjs/toolkit/dist/query/index.d.ts'.", + "File '/node_modules/@reduxjs/toolkit/dist/query/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@reduxjs/toolkit/query' was successfully resolved to '/node_modules/@reduxjs/toolkit/dist/query/index.d.ts' with Package ID '@reduxjs/toolkit-query/uery/index.d.ts@1.0.0'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@reduxjs/toolkit/dist/query/cjs/index.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/query' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module '@reduxjs/toolkit/query' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@reduxjs/toolkit/query/package.json'.", + "File '/node_modules/@reduxjs/toolkit/query.ts' does not exist.", + "File '/node_modules/@reduxjs/toolkit/query.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field '../dist/query/cjs/index.js' that references '/node_modules/@reduxjs/toolkit/dist/query/cjs/index.js'.", + "File '/node_modules/@reduxjs/toolkit/dist/query/cjs/index.js' exists - use it as a name resolution result.", + "File '/node_modules/@reduxjs/toolkit/dist/query/cjs/index.js' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@reduxjs/toolkit/dist/query/cjs/index.js', target file types: TypeScript.", + "File name '/node_modules/@reduxjs/toolkit/dist/query/cjs/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/@reduxjs/toolkit/dist/query/cjs/index.ts' does not exist.", + "File '/node_modules/@reduxjs/toolkit/dist/query/cjs/index.tsx' does not exist.", + "File '/node_modules/@reduxjs/toolkit/dist/query/cjs/index.js.ts' does not exist.", + "File '/node_modules/@reduxjs/toolkit/dist/query/cjs/index.js.tsx' does not exist.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/cjs/index.js' does not exist, skipping all lookups in it.", + "File '/node_modules/@reduxjs/toolkit/query/index.ts' does not exist.", + "File '/node_modules/@reduxjs/toolkit/query/index.tsx' does not exist.", + "Loading module '@reduxjs/toolkit/query' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@reduxjs/toolkit/query/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/query.js' does not exist.", + "File '/node_modules/@reduxjs/toolkit/query.jsx' does not exist.", + "'package.json' has 'main' field '../dist/query/cjs/index.js' that references '/node_modules/@reduxjs/toolkit/dist/query/cjs/index.js'.", + "File '/node_modules/@reduxjs/toolkit/dist/query/cjs/index.js' exists - use it as a name resolution result.", + "======== Module name '@reduxjs/toolkit/query' was successfully resolved to '/node_modules/@reduxjs/toolkit/dist/query/cjs/index.js' with Package ID '@reduxjs/toolkit-query/uery/cjs/index.js@1.0.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createDraftSafeSelector.d.ts", + "/node_modules/@reduxjs/toolkit/dist/devtoolsExtension.d.ts", + "/node_modules/@reduxjs/toolkit/dist/actionCreatorInvariantMiddleware.d.ts", + "/node_modules/@reduxjs/toolkit/dist/immutableStateInvariantMiddleware.d.ts", + "/node_modules/@reduxjs/toolkit/dist/serializableStateInvariantMiddleware.d.ts", + "/node_modules/@reduxjs/toolkit/dist/utils.d.ts", + "/node_modules/@reduxjs/toolkit/dist/tsHelpers.d.ts", + "/node_modules/@reduxjs/toolkit/dist/getDefaultMiddleware.d.ts", + "/node_modules/@reduxjs/toolkit/dist/autoBatchEnhancer.d.ts", + "/node_modules/@reduxjs/toolkit/dist/getDefaultEnhancers.d.ts", + "/node_modules/@reduxjs/toolkit/dist/configureStore.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createAction.d.ts", + "/node_modules/@reduxjs/toolkit/dist/mapBuilders.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createReducer.d.ts", + "/node_modules/@reduxjs/toolkit/dist/combineSlices.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createAsyncThunk.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createSlice.d.ts", + "/node_modules/@reduxjs/toolkit/dist/uncheckedindexed.ts", + "/node_modules/@reduxjs/toolkit/dist/entities/state_selectors.d.ts", + "/node_modules/@reduxjs/toolkit/dist/entities/models.d.ts", + "/node_modules/@reduxjs/toolkit/dist/entities/create_adapter.d.ts", + "/node_modules/@reduxjs/toolkit/dist/matchers.d.ts", + "/node_modules/@reduxjs/toolkit/dist/nanoid.d.ts", + "/node_modules/@reduxjs/toolkit/dist/isPlainObject.d.ts", + "/node_modules/@reduxjs/toolkit/dist/listenerMiddleware/exceptions.d.ts", + "/node_modules/@reduxjs/toolkit/dist/listenerMiddleware/types.d.ts", + "/node_modules/@reduxjs/toolkit/dist/listenerMiddleware/index.d.ts", + "/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/types.d.ts", + "/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/index.d.ts", + "/node_modules/@reduxjs/toolkit/dist/index.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/tsHelpers.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/baseQueryTypes.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/defaultSerializeQueryArgs.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/fakeBaseQuery.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/endpointDefinitions.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/apiState.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/buildSelectors.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/buildInitiate.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/buildThunks.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/setupListeners.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/buildSlice.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/buildMiddleware/types.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/buildMiddleware/cacheLifecycle.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/buildMiddleware/queryLifecycle.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/buildMiddleware/cacheCollection.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/module.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/createApi.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/apiTypes.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/fetchBaseQuery.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/retry.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/utils/copyWithStructuralSharing.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/index.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/index.d.ts" + ] + }, + "node16-cjs": { + "name": "./query", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/@reduxjs/toolkit/dist/query/index.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/@reduxjs/toolkit/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/query' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@reduxjs/toolkit/query' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/@reduxjs/toolkit/query/package.json'.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Matched 'exports' condition 'types'.", + "Using 'exports' subpath './query' with target './dist/query/index.d.ts'.", + "File '/node_modules/@reduxjs/toolkit/dist/query/index.d.ts' exists - use it as a name resolution result.", + "Resolved under condition 'types'.", + "Exiting conditional exports.", + "======== Module name '@reduxjs/toolkit/query' was successfully resolved to '/node_modules/@reduxjs/toolkit/dist/query/index.d.ts' with Package ID '@reduxjs/toolkit/dist/query/index.d.ts@2.0.0-beta.0'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@reduxjs/toolkit/dist/query/cjs/index.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/@reduxjs/toolkit/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/query' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@reduxjs/toolkit/query' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@reduxjs/toolkit/query/package.json'.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Saw non-matching condition 'import'.", + "Matched 'exports' condition 'default'.", + "Using 'exports' subpath './query' with target './dist/query/cjs/index.js'.", + "File name '/node_modules/@reduxjs/toolkit/dist/query/cjs/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/@reduxjs/toolkit/dist/query/cjs/index.ts' does not exist.", + "File '/node_modules/@reduxjs/toolkit/dist/query/cjs/index.tsx' does not exist.", + "Failed to resolve under condition 'default'.", + "Exiting conditional exports.", + "Export specifier './query' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@reduxjs/toolkit/query/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Saw non-matching condition 'import'.", + "Matched 'exports' condition 'default'.", + "Using 'exports' subpath './query' with target './dist/query/cjs/index.js'.", + "File name '/node_modules/@reduxjs/toolkit/dist/query/cjs/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/@reduxjs/toolkit/dist/query/cjs/index.js' exists - use it as a name resolution result.", + "Resolved under condition 'default'.", + "Exiting conditional exports.", + "======== Module name '@reduxjs/toolkit/query' was successfully resolved to '/node_modules/@reduxjs/toolkit/dist/query/cjs/index.js' with Package ID '@reduxjs/toolkit/dist/query/cjs/index.js@2.0.0-beta.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createDraftSafeSelector.d.ts", + "/node_modules/@reduxjs/toolkit/dist/devtoolsExtension.d.ts", + "/node_modules/@reduxjs/toolkit/dist/actionCreatorInvariantMiddleware.d.ts", + "/node_modules/@reduxjs/toolkit/dist/immutableStateInvariantMiddleware.d.ts", + "/node_modules/@reduxjs/toolkit/dist/serializableStateInvariantMiddleware.d.ts", + "/node_modules/@reduxjs/toolkit/dist/utils.d.ts", + "/node_modules/@reduxjs/toolkit/dist/tsHelpers.d.ts", + "/node_modules/@reduxjs/toolkit/dist/getDefaultMiddleware.d.ts", + "/node_modules/@reduxjs/toolkit/dist/autoBatchEnhancer.d.ts", + "/node_modules/@reduxjs/toolkit/dist/getDefaultEnhancers.d.ts", + "/node_modules/@reduxjs/toolkit/dist/configureStore.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createAction.d.ts", + "/node_modules/@reduxjs/toolkit/dist/mapBuilders.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createReducer.d.ts", + "/node_modules/@reduxjs/toolkit/dist/combineSlices.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createAsyncThunk.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createSlice.d.ts", + "/node_modules/@reduxjs/toolkit/dist/uncheckedindexed.ts", + "/node_modules/@reduxjs/toolkit/dist/entities/state_selectors.d.ts", + "/node_modules/@reduxjs/toolkit/dist/entities/models.d.ts", + "/node_modules/@reduxjs/toolkit/dist/entities/create_adapter.d.ts", + "/node_modules/@reduxjs/toolkit/dist/matchers.d.ts", + "/node_modules/@reduxjs/toolkit/dist/nanoid.d.ts", + "/node_modules/@reduxjs/toolkit/dist/isPlainObject.d.ts", + "/node_modules/@reduxjs/toolkit/dist/listenerMiddleware/exceptions.d.ts", + "/node_modules/@reduxjs/toolkit/dist/listenerMiddleware/types.d.ts", + "/node_modules/@reduxjs/toolkit/dist/listenerMiddleware/index.d.ts", + "/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/types.d.ts", + "/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/index.d.ts", + "/node_modules/@reduxjs/toolkit/dist/index.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/tsHelpers.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/baseQueryTypes.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/defaultSerializeQueryArgs.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/fakeBaseQuery.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/endpointDefinitions.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/apiState.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/buildSelectors.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/buildInitiate.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/buildThunks.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/setupListeners.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/buildSlice.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/buildMiddleware/types.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/buildMiddleware/cacheLifecycle.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/buildMiddleware/queryLifecycle.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/buildMiddleware/cacheCollection.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/module.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/createApi.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/apiTypes.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/fetchBaseQuery.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/retry.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/utils/copyWithStructuralSharing.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/index.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/index.d.ts" + ] + }, + "node16-esm": { + "name": "./query", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/@reduxjs/toolkit/dist/query/index.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/@reduxjs/toolkit/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/query' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@reduxjs/toolkit/query' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/@reduxjs/toolkit/query/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Matched 'exports' condition 'types'.", + "Using 'exports' subpath './query' with target './dist/query/index.d.ts'.", + "File '/node_modules/@reduxjs/toolkit/dist/query/index.d.ts' exists - use it as a name resolution result.", + "Resolved under condition 'types'.", + "Exiting conditional exports.", + "======== Module name '@reduxjs/toolkit/query' was successfully resolved to '/node_modules/@reduxjs/toolkit/dist/query/index.d.ts' with Package ID '@reduxjs/toolkit/dist/query/index.d.ts@2.0.0-beta.0'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@reduxjs/toolkit/dist/query/rtk-query.modern.mjs", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "extension", + "reasonFileName": "/node_modules/@reduxjs/toolkit/dist/query/rtk-query.modern.mjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/query' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@reduxjs/toolkit/query' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@reduxjs/toolkit/query/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Matched 'exports' condition 'import'.", + "Using 'exports' subpath './query' with target './dist/query/rtk-query.modern.mjs'.", + "File name '/node_modules/@reduxjs/toolkit/dist/query/rtk-query.modern.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/@reduxjs/toolkit/dist/query/rtk-query.modern.mts' does not exist.", + "Failed to resolve under condition 'import'.", + "Matched 'exports' condition 'default'.", + "Using 'exports' subpath './query' with target './dist/query/cjs/index.js'.", + "File name '/node_modules/@reduxjs/toolkit/dist/query/cjs/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/@reduxjs/toolkit/dist/query/cjs/index.ts' does not exist.", + "File '/node_modules/@reduxjs/toolkit/dist/query/cjs/index.tsx' does not exist.", + "Failed to resolve under condition 'default'.", + "Exiting conditional exports.", + "Export specifier './query' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@reduxjs/toolkit/query/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Matched 'exports' condition 'import'.", + "Using 'exports' subpath './query' with target './dist/query/rtk-query.modern.mjs'.", + "File name '/node_modules/@reduxjs/toolkit/dist/query/rtk-query.modern.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/@reduxjs/toolkit/dist/query/rtk-query.modern.mjs' exists - use it as a name resolution result.", + "Resolved under condition 'import'.", + "Exiting conditional exports.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@reduxjs/toolkit/query' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@reduxjs/toolkit/query/package.json' exists according to earlier cached lookups.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field '../dist/query/cjs/index.js' that references '/node_modules/@reduxjs/toolkit/dist/query/cjs/index.js'.", + "File '/node_modules/@reduxjs/toolkit/dist/query/cjs/index.js' exists - use it as a name resolution result.", + "File '/node_modules/@reduxjs/toolkit/dist/query/cjs/index.js' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@reduxjs/toolkit/dist/query/cjs/index.js', target file types: TypeScript.", + "File name '/node_modules/@reduxjs/toolkit/dist/query/cjs/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/@reduxjs/toolkit/dist/query/cjs/index.ts' does not exist.", + "File '/node_modules/@reduxjs/toolkit/dist/query/cjs/index.tsx' does not exist.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/cjs/index.js' does not exist, skipping all lookups in it.", + "======== Module name '@reduxjs/toolkit/query' was successfully resolved to '/node_modules/@reduxjs/toolkit/dist/query/rtk-query.modern.mjs' with Package ID '@reduxjs/toolkit/dist/query/rtk-query.modern.mjs@2.0.0-beta.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createDraftSafeSelector.d.ts", + "/node_modules/@reduxjs/toolkit/dist/devtoolsExtension.d.ts", + "/node_modules/@reduxjs/toolkit/dist/actionCreatorInvariantMiddleware.d.ts", + "/node_modules/@reduxjs/toolkit/dist/immutableStateInvariantMiddleware.d.ts", + "/node_modules/@reduxjs/toolkit/dist/serializableStateInvariantMiddleware.d.ts", + "/node_modules/@reduxjs/toolkit/dist/utils.d.ts", + "/node_modules/@reduxjs/toolkit/dist/tsHelpers.d.ts", + "/node_modules/@reduxjs/toolkit/dist/getDefaultMiddleware.d.ts", + "/node_modules/@reduxjs/toolkit/dist/autoBatchEnhancer.d.ts", + "/node_modules/@reduxjs/toolkit/dist/getDefaultEnhancers.d.ts", + "/node_modules/@reduxjs/toolkit/dist/configureStore.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createAction.d.ts", + "/node_modules/@reduxjs/toolkit/dist/mapBuilders.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createReducer.d.ts", + "/node_modules/@reduxjs/toolkit/dist/combineSlices.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createAsyncThunk.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createSlice.d.ts", + "/node_modules/@reduxjs/toolkit/dist/uncheckedindexed.ts", + "/node_modules/@reduxjs/toolkit/dist/entities/state_selectors.d.ts", + "/node_modules/@reduxjs/toolkit/dist/entities/models.d.ts", + "/node_modules/@reduxjs/toolkit/dist/entities/create_adapter.d.ts", + "/node_modules/@reduxjs/toolkit/dist/matchers.d.ts", + "/node_modules/@reduxjs/toolkit/dist/nanoid.d.ts", + "/node_modules/@reduxjs/toolkit/dist/isPlainObject.d.ts", + "/node_modules/@reduxjs/toolkit/dist/listenerMiddleware/exceptions.d.ts", + "/node_modules/@reduxjs/toolkit/dist/listenerMiddleware/types.d.ts", + "/node_modules/@reduxjs/toolkit/dist/listenerMiddleware/index.d.ts", + "/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/types.d.ts", + "/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/index.d.ts", + "/node_modules/@reduxjs/toolkit/dist/index.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/tsHelpers.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/baseQueryTypes.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/defaultSerializeQueryArgs.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/fakeBaseQuery.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/endpointDefinitions.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/apiState.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/buildSelectors.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/buildInitiate.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/buildThunks.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/setupListeners.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/buildSlice.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/buildMiddleware/types.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/buildMiddleware/cacheLifecycle.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/buildMiddleware/queryLifecycle.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/buildMiddleware/cacheCollection.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/module.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/createApi.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/apiTypes.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/fetchBaseQuery.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/retry.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/utils/copyWithStructuralSharing.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/index.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/index.d.ts" + ] + }, + "bundler": { + "name": "./query", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/@reduxjs/toolkit/dist/query/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/query' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@reduxjs/toolkit/query' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/@reduxjs/toolkit/query/package.json'.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Matched 'exports' condition 'types'.", + "Using 'exports' subpath './query' with target './dist/query/index.d.ts'.", + "File '/node_modules/@reduxjs/toolkit/dist/query/index.d.ts' exists - use it as a name resolution result.", + "Resolved under condition 'types'.", + "Exiting conditional exports.", + "======== Module name '@reduxjs/toolkit/query' was successfully resolved to '/node_modules/@reduxjs/toolkit/dist/query/index.d.ts' with Package ID '@reduxjs/toolkit/dist/query/index.d.ts@2.0.0-beta.0'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@reduxjs/toolkit/dist/query/rtk-query.modern.mjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/query' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@reduxjs/toolkit/query' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@reduxjs/toolkit/query/package.json'.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Matched 'exports' condition 'import'.", + "Using 'exports' subpath './query' with target './dist/query/rtk-query.modern.mjs'.", + "File name '/node_modules/@reduxjs/toolkit/dist/query/rtk-query.modern.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/@reduxjs/toolkit/dist/query/rtk-query.modern.mts' does not exist.", + "Failed to resolve under condition 'import'.", + "Matched 'exports' condition 'default'.", + "Using 'exports' subpath './query' with target './dist/query/cjs/index.js'.", + "File name '/node_modules/@reduxjs/toolkit/dist/query/cjs/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/@reduxjs/toolkit/dist/query/cjs/index.ts' does not exist.", + "File '/node_modules/@reduxjs/toolkit/dist/query/cjs/index.tsx' does not exist.", + "Failed to resolve under condition 'default'.", + "Exiting conditional exports.", + "Export specifier './query' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@reduxjs/toolkit/query/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Matched 'exports' condition 'import'.", + "Using 'exports' subpath './query' with target './dist/query/rtk-query.modern.mjs'.", + "File name '/node_modules/@reduxjs/toolkit/dist/query/rtk-query.modern.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/@reduxjs/toolkit/dist/query/rtk-query.modern.mjs' exists - use it as a name resolution result.", + "Resolved under condition 'import'.", + "Exiting conditional exports.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@reduxjs/toolkit/query' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@reduxjs/toolkit/query/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/query.ts' does not exist.", + "File '/node_modules/@reduxjs/toolkit/query.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field '../dist/query/cjs/index.js' that references '/node_modules/@reduxjs/toolkit/dist/query/cjs/index.js'.", + "File '/node_modules/@reduxjs/toolkit/dist/query/cjs/index.js' exists - use it as a name resolution result.", + "File '/node_modules/@reduxjs/toolkit/dist/query/cjs/index.js' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@reduxjs/toolkit/dist/query/cjs/index.js', target file types: TypeScript.", + "File name '/node_modules/@reduxjs/toolkit/dist/query/cjs/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/@reduxjs/toolkit/dist/query/cjs/index.ts' does not exist.", + "File '/node_modules/@reduxjs/toolkit/dist/query/cjs/index.tsx' does not exist.", + "File '/node_modules/@reduxjs/toolkit/dist/query/cjs/index.js.ts' does not exist.", + "File '/node_modules/@reduxjs/toolkit/dist/query/cjs/index.js.tsx' does not exist.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/cjs/index.js' does not exist, skipping all lookups in it.", + "File '/node_modules/@reduxjs/toolkit/query/index.ts' does not exist.", + "File '/node_modules/@reduxjs/toolkit/query/index.tsx' does not exist.", + "======== Module name '@reduxjs/toolkit/query' was successfully resolved to '/node_modules/@reduxjs/toolkit/dist/query/rtk-query.modern.mjs' with Package ID '@reduxjs/toolkit/dist/query/rtk-query.modern.mjs@2.0.0-beta.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createDraftSafeSelector.d.ts", + "/node_modules/@reduxjs/toolkit/dist/devtoolsExtension.d.ts", + "/node_modules/@reduxjs/toolkit/dist/actionCreatorInvariantMiddleware.d.ts", + "/node_modules/@reduxjs/toolkit/dist/immutableStateInvariantMiddleware.d.ts", + "/node_modules/@reduxjs/toolkit/dist/serializableStateInvariantMiddleware.d.ts", + "/node_modules/@reduxjs/toolkit/dist/utils.d.ts", + "/node_modules/@reduxjs/toolkit/dist/tsHelpers.d.ts", + "/node_modules/@reduxjs/toolkit/dist/getDefaultMiddleware.d.ts", + "/node_modules/@reduxjs/toolkit/dist/autoBatchEnhancer.d.ts", + "/node_modules/@reduxjs/toolkit/dist/getDefaultEnhancers.d.ts", + "/node_modules/@reduxjs/toolkit/dist/configureStore.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createAction.d.ts", + "/node_modules/@reduxjs/toolkit/dist/mapBuilders.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createReducer.d.ts", + "/node_modules/@reduxjs/toolkit/dist/combineSlices.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createAsyncThunk.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createSlice.d.ts", + "/node_modules/@reduxjs/toolkit/dist/uncheckedindexed.ts", + "/node_modules/@reduxjs/toolkit/dist/entities/state_selectors.d.ts", + "/node_modules/@reduxjs/toolkit/dist/entities/models.d.ts", + "/node_modules/@reduxjs/toolkit/dist/entities/create_adapter.d.ts", + "/node_modules/@reduxjs/toolkit/dist/matchers.d.ts", + "/node_modules/@reduxjs/toolkit/dist/nanoid.d.ts", + "/node_modules/@reduxjs/toolkit/dist/isPlainObject.d.ts", + "/node_modules/@reduxjs/toolkit/dist/listenerMiddleware/exceptions.d.ts", + "/node_modules/@reduxjs/toolkit/dist/listenerMiddleware/types.d.ts", + "/node_modules/@reduxjs/toolkit/dist/listenerMiddleware/index.d.ts", + "/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/types.d.ts", + "/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/index.d.ts", + "/node_modules/@reduxjs/toolkit/dist/index.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/tsHelpers.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/baseQueryTypes.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/defaultSerializeQueryArgs.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/fakeBaseQuery.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/endpointDefinitions.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/apiState.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/buildSelectors.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/buildInitiate.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/buildThunks.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/setupListeners.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/buildSlice.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/buildMiddleware/types.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/buildMiddleware/cacheLifecycle.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/buildMiddleware/queryLifecycle.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/buildMiddleware/cacheCollection.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/module.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/createApi.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/apiTypes.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/fetchBaseQuery.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/retry.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/utils/copyWithStructuralSharing.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/index.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/index.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + }, + "./query/react": { + "subpath": "./query/react", + "resolutions": { + "node10": { + "name": "./query/react", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/@reduxjs/toolkit/dist/query/react/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/query/react' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module '@reduxjs/toolkit/query/react' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/@reduxjs/toolkit/query/react/package.json'.", + "File '/node_modules/@reduxjs/toolkit/query/react.ts' does not exist.", + "File '/node_modules/@reduxjs/toolkit/query/react.tsx' does not exist.", + "File '/node_modules/@reduxjs/toolkit/query/react.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field './../../dist/query/react/index.d.ts' that references '/node_modules/@reduxjs/toolkit/dist/query/react/index.d.ts'.", + "File '/node_modules/@reduxjs/toolkit/dist/query/react/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@reduxjs/toolkit/query/react' was successfully resolved to '/node_modules/@reduxjs/toolkit/dist/query/react/index.d.ts' with Package ID '@reduxjs/toolkit-query-react/eact/index.d.ts@1.0.0'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@reduxjs/toolkit/dist/query/react/cjs/index.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/query/react' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module '@reduxjs/toolkit/query/react' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@reduxjs/toolkit/query/react/package.json'.", + "File '/node_modules/@reduxjs/toolkit/query/react.ts' does not exist.", + "File '/node_modules/@reduxjs/toolkit/query/react.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field '../../dist/query/react/cjs/index.js' that references '/node_modules/@reduxjs/toolkit/dist/query/react/cjs/index.js'.", + "File '/node_modules/@reduxjs/toolkit/dist/query/react/cjs/index.js' exists - use it as a name resolution result.", + "File '/node_modules/@reduxjs/toolkit/dist/query/react/cjs/index.js' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@reduxjs/toolkit/dist/query/react/cjs/index.js', target file types: TypeScript.", + "File name '/node_modules/@reduxjs/toolkit/dist/query/react/cjs/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/@reduxjs/toolkit/dist/query/react/cjs/index.ts' does not exist.", + "File '/node_modules/@reduxjs/toolkit/dist/query/react/cjs/index.tsx' does not exist.", + "File '/node_modules/@reduxjs/toolkit/dist/query/react/cjs/index.js.ts' does not exist.", + "File '/node_modules/@reduxjs/toolkit/dist/query/react/cjs/index.js.tsx' does not exist.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/cjs/index.js' does not exist, skipping all lookups in it.", + "File '/node_modules/@reduxjs/toolkit/query/react/index.ts' does not exist.", + "File '/node_modules/@reduxjs/toolkit/query/react/index.tsx' does not exist.", + "Loading module '@reduxjs/toolkit/query/react' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@reduxjs/toolkit/query/react/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/query/react.js' does not exist.", + "File '/node_modules/@reduxjs/toolkit/query/react.jsx' does not exist.", + "'package.json' has 'main' field '../../dist/query/react/cjs/index.js' that references '/node_modules/@reduxjs/toolkit/dist/query/react/cjs/index.js'.", + "File '/node_modules/@reduxjs/toolkit/dist/query/react/cjs/index.js' exists - use it as a name resolution result.", + "======== Module name '@reduxjs/toolkit/query/react' was successfully resolved to '/node_modules/@reduxjs/toolkit/dist/query/react/cjs/index.js' with Package ID '@reduxjs/toolkit-query-react/eact/cjs/index.js@1.0.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createDraftSafeSelector.d.ts", + "/node_modules/@reduxjs/toolkit/dist/devtoolsExtension.d.ts", + "/node_modules/@reduxjs/toolkit/dist/actionCreatorInvariantMiddleware.d.ts", + "/node_modules/@reduxjs/toolkit/dist/immutableStateInvariantMiddleware.d.ts", + "/node_modules/@reduxjs/toolkit/dist/serializableStateInvariantMiddleware.d.ts", + "/node_modules/@reduxjs/toolkit/dist/utils.d.ts", + "/node_modules/@reduxjs/toolkit/dist/tsHelpers.d.ts", + "/node_modules/@reduxjs/toolkit/dist/getDefaultMiddleware.d.ts", + "/node_modules/@reduxjs/toolkit/dist/autoBatchEnhancer.d.ts", + "/node_modules/@reduxjs/toolkit/dist/getDefaultEnhancers.d.ts", + "/node_modules/@reduxjs/toolkit/dist/configureStore.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createAction.d.ts", + "/node_modules/@reduxjs/toolkit/dist/mapBuilders.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createReducer.d.ts", + "/node_modules/@reduxjs/toolkit/dist/combineSlices.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createAsyncThunk.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createSlice.d.ts", + "/node_modules/@reduxjs/toolkit/dist/uncheckedindexed.ts", + "/node_modules/@reduxjs/toolkit/dist/entities/state_selectors.d.ts", + "/node_modules/@reduxjs/toolkit/dist/entities/models.d.ts", + "/node_modules/@reduxjs/toolkit/dist/entities/create_adapter.d.ts", + "/node_modules/@reduxjs/toolkit/dist/matchers.d.ts", + "/node_modules/@reduxjs/toolkit/dist/nanoid.d.ts", + "/node_modules/@reduxjs/toolkit/dist/isPlainObject.d.ts", + "/node_modules/@reduxjs/toolkit/dist/listenerMiddleware/exceptions.d.ts", + "/node_modules/@reduxjs/toolkit/dist/listenerMiddleware/types.d.ts", + "/node_modules/@reduxjs/toolkit/dist/listenerMiddleware/index.d.ts", + "/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/types.d.ts", + "/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/index.d.ts", + "/node_modules/@reduxjs/toolkit/dist/index.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/tsHelpers.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/baseQueryTypes.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/defaultSerializeQueryArgs.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/fakeBaseQuery.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/endpointDefinitions.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/apiState.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/buildSelectors.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/buildInitiate.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/buildThunks.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/setupListeners.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/buildSlice.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/buildMiddleware/types.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/buildMiddleware/cacheLifecycle.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/buildMiddleware/queryLifecycle.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/buildMiddleware/cacheCollection.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/module.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/createApi.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/apiTypes.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/fetchBaseQuery.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/retry.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/utils/copyWithStructuralSharing.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/index.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/index.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/react/constants.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/react/namedHooks.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/react/module.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/react/ApiProvider.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/react/index.d.ts" + ] + }, + "node16-cjs": { + "name": "./query/react", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/@reduxjs/toolkit/dist/query/react/index.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/@reduxjs/toolkit/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/query/react' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@reduxjs/toolkit/query/react' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/@reduxjs/toolkit/query/react/package.json'.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Matched 'exports' condition 'types'.", + "Using 'exports' subpath './query/react' with target './dist/query/react/index.d.ts'.", + "File '/node_modules/@reduxjs/toolkit/dist/query/react/index.d.ts' exists - use it as a name resolution result.", + "Resolved under condition 'types'.", + "Exiting conditional exports.", + "======== Module name '@reduxjs/toolkit/query/react' was successfully resolved to '/node_modules/@reduxjs/toolkit/dist/query/react/index.d.ts' with Package ID '@reduxjs/toolkit/dist/query/react/index.d.ts@2.0.0-beta.0'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@reduxjs/toolkit/dist/query/react/cjs/index.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/@reduxjs/toolkit/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/query/react' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@reduxjs/toolkit/query/react' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@reduxjs/toolkit/query/react/package.json'.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Saw non-matching condition 'import'.", + "Matched 'exports' condition 'default'.", + "Using 'exports' subpath './query/react' with target './dist/query/react/cjs/index.js'.", + "File name '/node_modules/@reduxjs/toolkit/dist/query/react/cjs/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/@reduxjs/toolkit/dist/query/react/cjs/index.ts' does not exist.", + "File '/node_modules/@reduxjs/toolkit/dist/query/react/cjs/index.tsx' does not exist.", + "Failed to resolve under condition 'default'.", + "Exiting conditional exports.", + "Export specifier './query/react' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@reduxjs/toolkit/query/react/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Saw non-matching condition 'import'.", + "Matched 'exports' condition 'default'.", + "Using 'exports' subpath './query/react' with target './dist/query/react/cjs/index.js'.", + "File name '/node_modules/@reduxjs/toolkit/dist/query/react/cjs/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/@reduxjs/toolkit/dist/query/react/cjs/index.js' exists - use it as a name resolution result.", + "Resolved under condition 'default'.", + "Exiting conditional exports.", + "======== Module name '@reduxjs/toolkit/query/react' was successfully resolved to '/node_modules/@reduxjs/toolkit/dist/query/react/cjs/index.js' with Package ID '@reduxjs/toolkit/dist/query/react/cjs/index.js@2.0.0-beta.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createDraftSafeSelector.d.ts", + "/node_modules/@reduxjs/toolkit/dist/devtoolsExtension.d.ts", + "/node_modules/@reduxjs/toolkit/dist/actionCreatorInvariantMiddleware.d.ts", + "/node_modules/@reduxjs/toolkit/dist/immutableStateInvariantMiddleware.d.ts", + "/node_modules/@reduxjs/toolkit/dist/serializableStateInvariantMiddleware.d.ts", + "/node_modules/@reduxjs/toolkit/dist/utils.d.ts", + "/node_modules/@reduxjs/toolkit/dist/tsHelpers.d.ts", + "/node_modules/@reduxjs/toolkit/dist/getDefaultMiddleware.d.ts", + "/node_modules/@reduxjs/toolkit/dist/autoBatchEnhancer.d.ts", + "/node_modules/@reduxjs/toolkit/dist/getDefaultEnhancers.d.ts", + "/node_modules/@reduxjs/toolkit/dist/configureStore.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createAction.d.ts", + "/node_modules/@reduxjs/toolkit/dist/mapBuilders.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createReducer.d.ts", + "/node_modules/@reduxjs/toolkit/dist/combineSlices.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createAsyncThunk.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createSlice.d.ts", + "/node_modules/@reduxjs/toolkit/dist/uncheckedindexed.ts", + "/node_modules/@reduxjs/toolkit/dist/entities/state_selectors.d.ts", + "/node_modules/@reduxjs/toolkit/dist/entities/models.d.ts", + "/node_modules/@reduxjs/toolkit/dist/entities/create_adapter.d.ts", + "/node_modules/@reduxjs/toolkit/dist/matchers.d.ts", + "/node_modules/@reduxjs/toolkit/dist/nanoid.d.ts", + "/node_modules/@reduxjs/toolkit/dist/isPlainObject.d.ts", + "/node_modules/@reduxjs/toolkit/dist/listenerMiddleware/exceptions.d.ts", + "/node_modules/@reduxjs/toolkit/dist/listenerMiddleware/types.d.ts", + "/node_modules/@reduxjs/toolkit/dist/listenerMiddleware/index.d.ts", + "/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/types.d.ts", + "/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/index.d.ts", + "/node_modules/@reduxjs/toolkit/dist/index.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/tsHelpers.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/baseQueryTypes.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/defaultSerializeQueryArgs.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/fakeBaseQuery.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/endpointDefinitions.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/apiState.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/buildSelectors.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/buildInitiate.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/buildThunks.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/setupListeners.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/buildSlice.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/buildMiddleware/types.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/buildMiddleware/cacheLifecycle.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/buildMiddleware/queryLifecycle.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/buildMiddleware/cacheCollection.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/module.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/createApi.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/apiTypes.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/fetchBaseQuery.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/retry.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/utils/copyWithStructuralSharing.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/index.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/index.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/react/constants.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/react/namedHooks.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/react/module.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/react/ApiProvider.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/react/index.d.ts" + ] + }, + "node16-esm": { + "name": "./query/react", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/@reduxjs/toolkit/dist/query/react/index.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/@reduxjs/toolkit/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/query/react' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@reduxjs/toolkit/query/react' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/@reduxjs/toolkit/query/react/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Matched 'exports' condition 'types'.", + "Using 'exports' subpath './query/react' with target './dist/query/react/index.d.ts'.", + "File '/node_modules/@reduxjs/toolkit/dist/query/react/index.d.ts' exists - use it as a name resolution result.", + "Resolved under condition 'types'.", + "Exiting conditional exports.", + "======== Module name '@reduxjs/toolkit/query/react' was successfully resolved to '/node_modules/@reduxjs/toolkit/dist/query/react/index.d.ts' with Package ID '@reduxjs/toolkit/dist/query/react/index.d.ts@2.0.0-beta.0'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@reduxjs/toolkit/dist/query/react/rtk-query-react.modern.mjs", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "extension", + "reasonFileName": "/node_modules/@reduxjs/toolkit/dist/query/react/rtk-query-react.modern.mjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/query/react' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@reduxjs/toolkit/query/react' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@reduxjs/toolkit/query/react/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Matched 'exports' condition 'import'.", + "Using 'exports' subpath './query/react' with target './dist/query/react/rtk-query-react.modern.mjs'.", + "File name '/node_modules/@reduxjs/toolkit/dist/query/react/rtk-query-react.modern.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/@reduxjs/toolkit/dist/query/react/rtk-query-react.modern.mts' does not exist.", + "Failed to resolve under condition 'import'.", + "Matched 'exports' condition 'default'.", + "Using 'exports' subpath './query/react' with target './dist/query/react/cjs/index.js'.", + "File name '/node_modules/@reduxjs/toolkit/dist/query/react/cjs/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/@reduxjs/toolkit/dist/query/react/cjs/index.ts' does not exist.", + "File '/node_modules/@reduxjs/toolkit/dist/query/react/cjs/index.tsx' does not exist.", + "Failed to resolve under condition 'default'.", + "Exiting conditional exports.", + "Export specifier './query/react' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@reduxjs/toolkit/query/react/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Matched 'exports' condition 'import'.", + "Using 'exports' subpath './query/react' with target './dist/query/react/rtk-query-react.modern.mjs'.", + "File name '/node_modules/@reduxjs/toolkit/dist/query/react/rtk-query-react.modern.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/@reduxjs/toolkit/dist/query/react/rtk-query-react.modern.mjs' exists - use it as a name resolution result.", + "Resolved under condition 'import'.", + "Exiting conditional exports.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@reduxjs/toolkit/query/react' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@reduxjs/toolkit/query/react/package.json' exists according to earlier cached lookups.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field '../../dist/query/react/cjs/index.js' that references '/node_modules/@reduxjs/toolkit/dist/query/react/cjs/index.js'.", + "File '/node_modules/@reduxjs/toolkit/dist/query/react/cjs/index.js' exists - use it as a name resolution result.", + "File '/node_modules/@reduxjs/toolkit/dist/query/react/cjs/index.js' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@reduxjs/toolkit/dist/query/react/cjs/index.js', target file types: TypeScript.", + "File name '/node_modules/@reduxjs/toolkit/dist/query/react/cjs/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/@reduxjs/toolkit/dist/query/react/cjs/index.ts' does not exist.", + "File '/node_modules/@reduxjs/toolkit/dist/query/react/cjs/index.tsx' does not exist.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/cjs/index.js' does not exist, skipping all lookups in it.", + "======== Module name '@reduxjs/toolkit/query/react' was successfully resolved to '/node_modules/@reduxjs/toolkit/dist/query/react/rtk-query-react.modern.mjs' with Package ID '@reduxjs/toolkit/dist/query/react/rtk-query-react.modern.mjs@2.0.0-beta.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createDraftSafeSelector.d.ts", + "/node_modules/@reduxjs/toolkit/dist/devtoolsExtension.d.ts", + "/node_modules/@reduxjs/toolkit/dist/actionCreatorInvariantMiddleware.d.ts", + "/node_modules/@reduxjs/toolkit/dist/immutableStateInvariantMiddleware.d.ts", + "/node_modules/@reduxjs/toolkit/dist/serializableStateInvariantMiddleware.d.ts", + "/node_modules/@reduxjs/toolkit/dist/utils.d.ts", + "/node_modules/@reduxjs/toolkit/dist/tsHelpers.d.ts", + "/node_modules/@reduxjs/toolkit/dist/getDefaultMiddleware.d.ts", + "/node_modules/@reduxjs/toolkit/dist/autoBatchEnhancer.d.ts", + "/node_modules/@reduxjs/toolkit/dist/getDefaultEnhancers.d.ts", + "/node_modules/@reduxjs/toolkit/dist/configureStore.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createAction.d.ts", + "/node_modules/@reduxjs/toolkit/dist/mapBuilders.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createReducer.d.ts", + "/node_modules/@reduxjs/toolkit/dist/combineSlices.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createAsyncThunk.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createSlice.d.ts", + "/node_modules/@reduxjs/toolkit/dist/uncheckedindexed.ts", + "/node_modules/@reduxjs/toolkit/dist/entities/state_selectors.d.ts", + "/node_modules/@reduxjs/toolkit/dist/entities/models.d.ts", + "/node_modules/@reduxjs/toolkit/dist/entities/create_adapter.d.ts", + "/node_modules/@reduxjs/toolkit/dist/matchers.d.ts", + "/node_modules/@reduxjs/toolkit/dist/nanoid.d.ts", + "/node_modules/@reduxjs/toolkit/dist/isPlainObject.d.ts", + "/node_modules/@reduxjs/toolkit/dist/listenerMiddleware/exceptions.d.ts", + "/node_modules/@reduxjs/toolkit/dist/listenerMiddleware/types.d.ts", + "/node_modules/@reduxjs/toolkit/dist/listenerMiddleware/index.d.ts", + "/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/types.d.ts", + "/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/index.d.ts", + "/node_modules/@reduxjs/toolkit/dist/index.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/tsHelpers.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/baseQueryTypes.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/defaultSerializeQueryArgs.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/fakeBaseQuery.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/endpointDefinitions.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/apiState.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/buildSelectors.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/buildInitiate.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/buildThunks.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/setupListeners.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/buildSlice.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/buildMiddleware/types.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/buildMiddleware/cacheLifecycle.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/buildMiddleware/queryLifecycle.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/buildMiddleware/cacheCollection.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/module.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/createApi.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/apiTypes.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/fetchBaseQuery.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/retry.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/utils/copyWithStructuralSharing.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/index.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/index.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/react/constants.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/react/namedHooks.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/react/module.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/react/ApiProvider.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/react/index.d.ts" + ] + }, + "bundler": { + "name": "./query/react", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/@reduxjs/toolkit/dist/query/react/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/query/react' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@reduxjs/toolkit/query/react' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/@reduxjs/toolkit/query/react/package.json'.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Matched 'exports' condition 'types'.", + "Using 'exports' subpath './query/react' with target './dist/query/react/index.d.ts'.", + "File '/node_modules/@reduxjs/toolkit/dist/query/react/index.d.ts' exists - use it as a name resolution result.", + "Resolved under condition 'types'.", + "Exiting conditional exports.", + "======== Module name '@reduxjs/toolkit/query/react' was successfully resolved to '/node_modules/@reduxjs/toolkit/dist/query/react/index.d.ts' with Package ID '@reduxjs/toolkit/dist/query/react/index.d.ts@2.0.0-beta.0'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@reduxjs/toolkit/dist/query/react/rtk-query-react.modern.mjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/query/react' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@reduxjs/toolkit/query/react' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@reduxjs/toolkit/query/react/package.json'.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Matched 'exports' condition 'import'.", + "Using 'exports' subpath './query/react' with target './dist/query/react/rtk-query-react.modern.mjs'.", + "File name '/node_modules/@reduxjs/toolkit/dist/query/react/rtk-query-react.modern.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/@reduxjs/toolkit/dist/query/react/rtk-query-react.modern.mts' does not exist.", + "Failed to resolve under condition 'import'.", + "Matched 'exports' condition 'default'.", + "Using 'exports' subpath './query/react' with target './dist/query/react/cjs/index.js'.", + "File name '/node_modules/@reduxjs/toolkit/dist/query/react/cjs/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/@reduxjs/toolkit/dist/query/react/cjs/index.ts' does not exist.", + "File '/node_modules/@reduxjs/toolkit/dist/query/react/cjs/index.tsx' does not exist.", + "Failed to resolve under condition 'default'.", + "Exiting conditional exports.", + "Export specifier './query/react' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@reduxjs/toolkit/query/react/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Matched 'exports' condition 'import'.", + "Using 'exports' subpath './query/react' with target './dist/query/react/rtk-query-react.modern.mjs'.", + "File name '/node_modules/@reduxjs/toolkit/dist/query/react/rtk-query-react.modern.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/@reduxjs/toolkit/dist/query/react/rtk-query-react.modern.mjs' exists - use it as a name resolution result.", + "Resolved under condition 'import'.", + "Exiting conditional exports.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@reduxjs/toolkit/query/react' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@reduxjs/toolkit/query/react/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/query/react.ts' does not exist.", + "File '/node_modules/@reduxjs/toolkit/query/react.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field '../../dist/query/react/cjs/index.js' that references '/node_modules/@reduxjs/toolkit/dist/query/react/cjs/index.js'.", + "File '/node_modules/@reduxjs/toolkit/dist/query/react/cjs/index.js' exists - use it as a name resolution result.", + "File '/node_modules/@reduxjs/toolkit/dist/query/react/cjs/index.js' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@reduxjs/toolkit/dist/query/react/cjs/index.js', target file types: TypeScript.", + "File name '/node_modules/@reduxjs/toolkit/dist/query/react/cjs/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/@reduxjs/toolkit/dist/query/react/cjs/index.ts' does not exist.", + "File '/node_modules/@reduxjs/toolkit/dist/query/react/cjs/index.tsx' does not exist.", + "File '/node_modules/@reduxjs/toolkit/dist/query/react/cjs/index.js.ts' does not exist.", + "File '/node_modules/@reduxjs/toolkit/dist/query/react/cjs/index.js.tsx' does not exist.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/cjs/index.js' does not exist, skipping all lookups in it.", + "File '/node_modules/@reduxjs/toolkit/query/react/index.ts' does not exist.", + "File '/node_modules/@reduxjs/toolkit/query/react/index.tsx' does not exist.", + "======== Module name '@reduxjs/toolkit/query/react' was successfully resolved to '/node_modules/@reduxjs/toolkit/dist/query/react/rtk-query-react.modern.mjs' with Package ID '@reduxjs/toolkit/dist/query/react/rtk-query-react.modern.mjs@2.0.0-beta.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createDraftSafeSelector.d.ts", + "/node_modules/@reduxjs/toolkit/dist/devtoolsExtension.d.ts", + "/node_modules/@reduxjs/toolkit/dist/actionCreatorInvariantMiddleware.d.ts", + "/node_modules/@reduxjs/toolkit/dist/immutableStateInvariantMiddleware.d.ts", + "/node_modules/@reduxjs/toolkit/dist/serializableStateInvariantMiddleware.d.ts", + "/node_modules/@reduxjs/toolkit/dist/utils.d.ts", + "/node_modules/@reduxjs/toolkit/dist/tsHelpers.d.ts", + "/node_modules/@reduxjs/toolkit/dist/getDefaultMiddleware.d.ts", + "/node_modules/@reduxjs/toolkit/dist/autoBatchEnhancer.d.ts", + "/node_modules/@reduxjs/toolkit/dist/getDefaultEnhancers.d.ts", + "/node_modules/@reduxjs/toolkit/dist/configureStore.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createAction.d.ts", + "/node_modules/@reduxjs/toolkit/dist/mapBuilders.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createReducer.d.ts", + "/node_modules/@reduxjs/toolkit/dist/combineSlices.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createAsyncThunk.d.ts", + "/node_modules/@reduxjs/toolkit/dist/createSlice.d.ts", + "/node_modules/@reduxjs/toolkit/dist/uncheckedindexed.ts", + "/node_modules/@reduxjs/toolkit/dist/entities/state_selectors.d.ts", + "/node_modules/@reduxjs/toolkit/dist/entities/models.d.ts", + "/node_modules/@reduxjs/toolkit/dist/entities/create_adapter.d.ts", + "/node_modules/@reduxjs/toolkit/dist/matchers.d.ts", + "/node_modules/@reduxjs/toolkit/dist/nanoid.d.ts", + "/node_modules/@reduxjs/toolkit/dist/isPlainObject.d.ts", + "/node_modules/@reduxjs/toolkit/dist/listenerMiddleware/exceptions.d.ts", + "/node_modules/@reduxjs/toolkit/dist/listenerMiddleware/types.d.ts", + "/node_modules/@reduxjs/toolkit/dist/listenerMiddleware/index.d.ts", + "/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/types.d.ts", + "/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/index.d.ts", + "/node_modules/@reduxjs/toolkit/dist/index.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/tsHelpers.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/baseQueryTypes.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/defaultSerializeQueryArgs.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/fakeBaseQuery.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/endpointDefinitions.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/apiState.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/buildSelectors.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/buildInitiate.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/buildThunks.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/setupListeners.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/buildSlice.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/buildMiddleware/types.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/buildMiddleware/cacheLifecycle.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/buildMiddleware/queryLifecycle.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/buildMiddleware/cacheCollection.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/module.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/createApi.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/apiTypes.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/fetchBaseQuery.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/retry.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/utils/copyWithStructuralSharing.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/core/index.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/index.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/react/constants.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/react/namedHooks.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/react/module.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/react/ApiProvider.d.ts", + "/node_modules/@reduxjs/toolkit/dist/query/react/index.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + } + }, + "problems": [ + { + "kind": "FalseCJS", + "entrypoint": ".", + "resolutionKind": "node16-esm" + }, + { + "kind": "FalseCJS", + "entrypoint": "./react", + "resolutionKind": "node16-esm" + }, + { + "kind": "FalseCJS", + "entrypoint": "./query", + "resolutionKind": "node16-esm" + }, + { + "kind": "FalseCJS", + "entrypoint": "./query/react", + "resolutionKind": "node16-esm" + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/react/index.d.ts", + "moduleSpecifier": "@reduxjs/toolkit/dist/tsHelpers", + "pos": 153, + "end": 187, + "resolutionMode": 1, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/dist/tsHelpers' from '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/react/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/react/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/tsHelpers' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Export specifier './dist/tsHelpers' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Loading module '@reduxjs/toolkit/dist/tsHelpers' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Directory '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/react/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/tsHelpers'", + "Directory '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/tsHelpers'", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/tsHelpers'", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/tsHelpers'", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/tsHelpers'", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/tsHelpers' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/tsHelpers'", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "Directory '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/react/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/tsHelpers' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "======== Module name '@reduxjs/toolkit/dist/tsHelpers' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/react/index.d.ts", + "moduleSpecifier": "@reduxjs/toolkit/dist/dynamicMiddleware/types", + "pos": 379, + "end": 427, + "resolutionMode": 1, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/dist/dynamicMiddleware/types' from '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/react/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/react/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/dynamicMiddleware/types' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Export specifier './dist/dynamicMiddleware/types' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Loading module '@reduxjs/toolkit/dist/dynamicMiddleware/types' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Directory '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/react/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/dynamicMiddleware/types'", + "Directory '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/dynamicMiddleware/types'", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/dynamicMiddleware/types'", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/dynamicMiddleware/types'", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/dynamicMiddleware/types'", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/dynamicMiddleware/types' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/dynamicMiddleware/types'", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "Directory '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/react/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/dynamicMiddleware/types' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "======== Module name '@reduxjs/toolkit/dist/dynamicMiddleware/types' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts", + "moduleSpecifier": "@reduxjs/toolkit/dist/query/core/apiState", + "pos": 157, + "end": 201, + "resolutionMode": 1, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/dist/query/core/apiState' from '/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/node_modules/@reduxjs/toolkit/dist/query/react/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/query/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/core/apiState' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Export specifier './dist/query/core/apiState' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Loading module '@reduxjs/toolkit/dist/query/core/apiState' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/apiState'", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/apiState'", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/apiState'", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/apiState'", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/apiState'", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/core/apiState' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/apiState'", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/core/apiState' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "======== Module name '@reduxjs/toolkit/dist/query/core/apiState' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts", + "moduleSpecifier": "@reduxjs/toolkit/dist/query/endpointDefinitions", + "pos": 311, + "end": 361, + "resolutionMode": 1, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/dist/query/endpointDefinitions' from '/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts'. ========", + "Resolution for module '@reduxjs/toolkit/dist/query/endpointDefinitions' was found in cache from location '/node_modules/@reduxjs/toolkit/dist/query/react'.", + "======== Module name '@reduxjs/toolkit/dist/query/endpointDefinitions' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts", + "moduleSpecifier": "@reduxjs/toolkit/dist/query/core/buildSelectors", + "pos": 424, + "end": 474, + "resolutionMode": 1, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/dist/query/core/buildSelectors' from '/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/node_modules/@reduxjs/toolkit/dist/query/react/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/query/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/core/buildSelectors' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Export specifier './dist/query/core/buildSelectors' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Loading module '@reduxjs/toolkit/dist/query/core/buildSelectors' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/buildSelectors'", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/buildSelectors'", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/buildSelectors'", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/buildSelectors'", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/buildSelectors'", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/core/buildSelectors' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/buildSelectors'", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/core/buildSelectors' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "======== Module name '@reduxjs/toolkit/dist/query/core/buildSelectors' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts", + "moduleSpecifier": "@reduxjs/toolkit/dist/query/core/buildInitiate", + "pos": 551, + "end": 600, + "resolutionMode": 1, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/dist/query/core/buildInitiate' from '/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/node_modules/@reduxjs/toolkit/dist/query/react/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/query/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/core/buildInitiate' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Export specifier './dist/query/core/buildInitiate' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Loading module '@reduxjs/toolkit/dist/query/core/buildInitiate' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/buildInitiate'", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/buildInitiate'", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/buildInitiate'", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/buildInitiate'", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/buildInitiate'", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/core/buildInitiate' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/buildInitiate'", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/core/buildInitiate' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "======== Module name '@reduxjs/toolkit/dist/query/core/buildInitiate' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts", + "moduleSpecifier": "@reduxjs/toolkit/dist/query/defaultSerializeQueryArgs", + "pos": 642, + "end": 698, + "resolutionMode": 1, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/dist/query/defaultSerializeQueryArgs' from '/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/node_modules/@reduxjs/toolkit/dist/query/react/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/query/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/defaultSerializeQueryArgs' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Export specifier './dist/query/defaultSerializeQueryArgs' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Loading module '@reduxjs/toolkit/dist/query/defaultSerializeQueryArgs' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/defaultSerializeQueryArgs'", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/defaultSerializeQueryArgs'", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/defaultSerializeQueryArgs'", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/defaultSerializeQueryArgs'", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/defaultSerializeQueryArgs'", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/defaultSerializeQueryArgs' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/defaultSerializeQueryArgs'", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/defaultSerializeQueryArgs' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "======== Module name '@reduxjs/toolkit/dist/query/defaultSerializeQueryArgs' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts", + "moduleSpecifier": "@reduxjs/toolkit/dist/query/apiTypes", + "pos": 737, + "end": 776, + "resolutionMode": 1, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/dist/query/apiTypes' from '/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts'. ========", + "Resolution for module '@reduxjs/toolkit/dist/query/apiTypes' was found in cache from location '/node_modules/@reduxjs/toolkit/dist/query/react'.", + "======== Module name '@reduxjs/toolkit/dist/query/apiTypes' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts", + "moduleSpecifier": "@reduxjs/toolkit/dist/query/tsHelpers", + "pos": 821, + "end": 861, + "resolutionMode": 1, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/dist/query/tsHelpers' from '/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/node_modules/@reduxjs/toolkit/dist/query/react/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/query/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/tsHelpers' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Export specifier './dist/query/tsHelpers' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Loading module '@reduxjs/toolkit/dist/query/tsHelpers' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/tsHelpers'", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/tsHelpers'", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/tsHelpers'", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/tsHelpers'", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/tsHelpers'", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/tsHelpers' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/tsHelpers'", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/tsHelpers' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "======== Module name '@reduxjs/toolkit/dist/query/tsHelpers' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts", + "moduleSpecifier": "@reduxjs/toolkit/dist/query/core/module", + "pos": 912, + "end": 954, + "resolutionMode": 1, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/dist/query/core/module' from '/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts'. ========", + "Resolution for module '@reduxjs/toolkit/dist/query/core/module' was found in cache from location '/node_modules/@reduxjs/toolkit/dist/query/react'.", + "======== Module name '@reduxjs/toolkit/dist/query/core/module' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@reduxjs/toolkit/dist/query/react/namedHooks.d.ts", + "moduleSpecifier": "@reduxjs/toolkit/dist/query/endpointDefinitions", + "pos": 167, + "end": 217, + "resolutionMode": 1, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/dist/query/endpointDefinitions' from '/node_modules/@reduxjs/toolkit/dist/query/react/namedHooks.d.ts'. ========", + "Resolution for module '@reduxjs/toolkit/dist/query/endpointDefinitions' was found in cache from location '/node_modules/@reduxjs/toolkit/dist/query/react'.", + "======== Module name '@reduxjs/toolkit/dist/query/endpointDefinitions' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@reduxjs/toolkit/dist/query/react/module.d.ts", + "moduleSpecifier": "@reduxjs/toolkit/dist/query/endpointDefinitions", + "pos": 155, + "end": 205, + "resolutionMode": 1, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/dist/query/endpointDefinitions' from '/node_modules/@reduxjs/toolkit/dist/query/react/module.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/node_modules/@reduxjs/toolkit/dist/query/react/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/query/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/endpointDefinitions' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Export specifier './dist/query/endpointDefinitions' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Loading module '@reduxjs/toolkit/dist/query/endpointDefinitions' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/endpointDefinitions'", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/endpointDefinitions'", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/endpointDefinitions'", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/endpointDefinitions'", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/endpointDefinitions'", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/endpointDefinitions' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/endpointDefinitions'", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/endpointDefinitions' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "======== Module name '@reduxjs/toolkit/dist/query/endpointDefinitions' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@reduxjs/toolkit/dist/query/react/module.d.ts", + "moduleSpecifier": "@reduxjs/toolkit/dist/query/baseQueryTypes", + "pos": 284, + "end": 329, + "resolutionMode": 1, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/dist/query/baseQueryTypes' from '/node_modules/@reduxjs/toolkit/dist/query/react/module.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/node_modules/@reduxjs/toolkit/dist/query/react/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/query/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/baseQueryTypes' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Export specifier './dist/query/baseQueryTypes' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Loading module '@reduxjs/toolkit/dist/query/baseQueryTypes' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/baseQueryTypes'", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/baseQueryTypes'", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/baseQueryTypes'", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/baseQueryTypes'", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/baseQueryTypes'", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/baseQueryTypes' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/baseQueryTypes'", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/baseQueryTypes' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "======== Module name '@reduxjs/toolkit/dist/query/baseQueryTypes' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@reduxjs/toolkit/dist/query/react/ApiProvider.d.ts", + "moduleSpecifier": "@reduxjs/toolkit/dist/query/apiTypes", + "pos": 181, + "end": 220, + "resolutionMode": 1, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/dist/query/apiTypes' from '/node_modules/@reduxjs/toolkit/dist/query/react/ApiProvider.d.ts'. ========", + "Resolution for module '@reduxjs/toolkit/dist/query/apiTypes' was found in cache from location '/node_modules/@reduxjs/toolkit/dist/query/react'.", + "======== Module name '@reduxjs/toolkit/dist/query/apiTypes' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/@reduxjs/toolkit/dist/query/react/index.d.ts", + "moduleSpecifier": "@reduxjs/toolkit/dist/query/core/module", + "pos": 257, + "end": 298, + "resolutionMode": 1, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/dist/query/core/module' from '/node_modules/@reduxjs/toolkit/dist/query/react/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/node_modules/@reduxjs/toolkit/dist/query/react/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/query/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/core/module' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Export specifier './dist/query/core/module' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Loading module '@reduxjs/toolkit/dist/query/core/module' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/module'", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/module'", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/module'", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/module'", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/module'", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/core/module' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/module'", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/core/module' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "======== Module name '@reduxjs/toolkit/dist/query/core/module' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "bundler", + "fileName": "/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/react/index.d.ts", + "moduleSpecifier": "@reduxjs/toolkit/dist/tsHelpers", + "pos": 153, + "end": 187, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/dist/tsHelpers' from '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/react/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/react/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/tsHelpers' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Export specifier './dist/tsHelpers' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Loading module '@reduxjs/toolkit/dist/tsHelpers' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Directory '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/react/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/tsHelpers'", + "Directory '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/tsHelpers'", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/tsHelpers'", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/tsHelpers'", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/tsHelpers'", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/tsHelpers' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/tsHelpers'", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "Directory '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/react/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/tsHelpers' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "======== Module name '@reduxjs/toolkit/dist/tsHelpers' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "bundler", + "fileName": "/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/react/index.d.ts", + "moduleSpecifier": "@reduxjs/toolkit/dist/dynamicMiddleware/types", + "pos": 379, + "end": 427, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/dist/dynamicMiddleware/types' from '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/react/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/react/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/dynamicMiddleware/types' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Export specifier './dist/dynamicMiddleware/types' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Loading module '@reduxjs/toolkit/dist/dynamicMiddleware/types' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Directory '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/react/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/dynamicMiddleware/types'", + "Directory '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/dynamicMiddleware/types'", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/dynamicMiddleware/types'", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/dynamicMiddleware/types'", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/dynamicMiddleware/types'", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/dynamicMiddleware/types' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/dynamicMiddleware/types'", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "Directory '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/react/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/dynamicMiddleware/types' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "======== Module name '@reduxjs/toolkit/dist/dynamicMiddleware/types' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "bundler", + "fileName": "/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts", + "moduleSpecifier": "@reduxjs/toolkit/dist/query/core/apiState", + "pos": 157, + "end": 201, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/dist/query/core/apiState' from '/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/node_modules/@reduxjs/toolkit/dist/query/react/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/query/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/core/apiState' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Export specifier './dist/query/core/apiState' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Loading module '@reduxjs/toolkit/dist/query/core/apiState' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/apiState'", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/apiState'", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/apiState'", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/apiState'", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/apiState'", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/core/apiState' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/apiState'", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/core/apiState' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "======== Module name '@reduxjs/toolkit/dist/query/core/apiState' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "bundler", + "fileName": "/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts", + "moduleSpecifier": "@reduxjs/toolkit/dist/query/endpointDefinitions", + "pos": 311, + "end": 361, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/dist/query/endpointDefinitions' from '/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts'. ========", + "Resolution for module '@reduxjs/toolkit/dist/query/endpointDefinitions' was found in cache from location '/node_modules/@reduxjs/toolkit/dist/query/react'.", + "======== Module name '@reduxjs/toolkit/dist/query/endpointDefinitions' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "bundler", + "fileName": "/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts", + "moduleSpecifier": "@reduxjs/toolkit/dist/query/core/buildSelectors", + "pos": 424, + "end": 474, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/dist/query/core/buildSelectors' from '/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/node_modules/@reduxjs/toolkit/dist/query/react/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/query/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/core/buildSelectors' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Export specifier './dist/query/core/buildSelectors' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Loading module '@reduxjs/toolkit/dist/query/core/buildSelectors' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/buildSelectors'", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/buildSelectors'", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/buildSelectors'", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/buildSelectors'", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/buildSelectors'", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/core/buildSelectors' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/buildSelectors'", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/core/buildSelectors' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "======== Module name '@reduxjs/toolkit/dist/query/core/buildSelectors' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "bundler", + "fileName": "/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts", + "moduleSpecifier": "@reduxjs/toolkit/dist/query/core/buildInitiate", + "pos": 551, + "end": 600, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/dist/query/core/buildInitiate' from '/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/node_modules/@reduxjs/toolkit/dist/query/react/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/query/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/core/buildInitiate' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Export specifier './dist/query/core/buildInitiate' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Loading module '@reduxjs/toolkit/dist/query/core/buildInitiate' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/buildInitiate'", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/buildInitiate'", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/buildInitiate'", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/buildInitiate'", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/buildInitiate'", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/core/buildInitiate' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/buildInitiate'", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/core/buildInitiate' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "======== Module name '@reduxjs/toolkit/dist/query/core/buildInitiate' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "bundler", + "fileName": "/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts", + "moduleSpecifier": "@reduxjs/toolkit/dist/query/defaultSerializeQueryArgs", + "pos": 642, + "end": 698, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/dist/query/defaultSerializeQueryArgs' from '/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/node_modules/@reduxjs/toolkit/dist/query/react/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/query/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/defaultSerializeQueryArgs' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Export specifier './dist/query/defaultSerializeQueryArgs' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Loading module '@reduxjs/toolkit/dist/query/defaultSerializeQueryArgs' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/defaultSerializeQueryArgs'", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/defaultSerializeQueryArgs'", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/defaultSerializeQueryArgs'", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/defaultSerializeQueryArgs'", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/defaultSerializeQueryArgs'", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/defaultSerializeQueryArgs' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/defaultSerializeQueryArgs'", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/defaultSerializeQueryArgs' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "======== Module name '@reduxjs/toolkit/dist/query/defaultSerializeQueryArgs' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "bundler", + "fileName": "/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts", + "moduleSpecifier": "@reduxjs/toolkit/dist/query/apiTypes", + "pos": 737, + "end": 776, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/dist/query/apiTypes' from '/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts'. ========", + "Resolution for module '@reduxjs/toolkit/dist/query/apiTypes' was found in cache from location '/node_modules/@reduxjs/toolkit/dist/query/react'.", + "======== Module name '@reduxjs/toolkit/dist/query/apiTypes' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "bundler", + "fileName": "/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts", + "moduleSpecifier": "@reduxjs/toolkit/dist/query/tsHelpers", + "pos": 821, + "end": 861, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/dist/query/tsHelpers' from '/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/node_modules/@reduxjs/toolkit/dist/query/react/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/query/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/tsHelpers' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Export specifier './dist/query/tsHelpers' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Loading module '@reduxjs/toolkit/dist/query/tsHelpers' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/tsHelpers'", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/tsHelpers'", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/tsHelpers'", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/tsHelpers'", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/tsHelpers'", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/tsHelpers' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/tsHelpers'", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/tsHelpers' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "======== Module name '@reduxjs/toolkit/dist/query/tsHelpers' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "bundler", + "fileName": "/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts", + "moduleSpecifier": "@reduxjs/toolkit/dist/query/core/module", + "pos": 912, + "end": 954, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/dist/query/core/module' from '/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts'. ========", + "Resolution for module '@reduxjs/toolkit/dist/query/core/module' was found in cache from location '/node_modules/@reduxjs/toolkit/dist/query/react'.", + "======== Module name '@reduxjs/toolkit/dist/query/core/module' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "bundler", + "fileName": "/node_modules/@reduxjs/toolkit/dist/query/react/namedHooks.d.ts", + "moduleSpecifier": "@reduxjs/toolkit/dist/query/endpointDefinitions", + "pos": 167, + "end": 217, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/dist/query/endpointDefinitions' from '/node_modules/@reduxjs/toolkit/dist/query/react/namedHooks.d.ts'. ========", + "Resolution for module '@reduxjs/toolkit/dist/query/endpointDefinitions' was found in cache from location '/node_modules/@reduxjs/toolkit/dist/query/react'.", + "======== Module name '@reduxjs/toolkit/dist/query/endpointDefinitions' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "bundler", + "fileName": "/node_modules/@reduxjs/toolkit/dist/query/react/module.d.ts", + "moduleSpecifier": "@reduxjs/toolkit/dist/query/endpointDefinitions", + "pos": 155, + "end": 205, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/dist/query/endpointDefinitions' from '/node_modules/@reduxjs/toolkit/dist/query/react/module.d.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/node_modules/@reduxjs/toolkit/dist/query/react/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/query/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/endpointDefinitions' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Export specifier './dist/query/endpointDefinitions' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Loading module '@reduxjs/toolkit/dist/query/endpointDefinitions' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/endpointDefinitions'", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/endpointDefinitions'", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/endpointDefinitions'", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/endpointDefinitions'", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/endpointDefinitions'", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/endpointDefinitions' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/endpointDefinitions'", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/endpointDefinitions' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "======== Module name '@reduxjs/toolkit/dist/query/endpointDefinitions' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "bundler", + "fileName": "/node_modules/@reduxjs/toolkit/dist/query/react/module.d.ts", + "moduleSpecifier": "@reduxjs/toolkit/dist/query/baseQueryTypes", + "pos": 284, + "end": 329, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/dist/query/baseQueryTypes' from '/node_modules/@reduxjs/toolkit/dist/query/react/module.d.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/node_modules/@reduxjs/toolkit/dist/query/react/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/query/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/baseQueryTypes' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Export specifier './dist/query/baseQueryTypes' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Loading module '@reduxjs/toolkit/dist/query/baseQueryTypes' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/baseQueryTypes'", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/baseQueryTypes'", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/baseQueryTypes'", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/baseQueryTypes'", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/baseQueryTypes'", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/baseQueryTypes' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/baseQueryTypes'", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/baseQueryTypes' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "======== Module name '@reduxjs/toolkit/dist/query/baseQueryTypes' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "bundler", + "fileName": "/node_modules/@reduxjs/toolkit/dist/query/react/ApiProvider.d.ts", + "moduleSpecifier": "@reduxjs/toolkit/dist/query/apiTypes", + "pos": 181, + "end": 220, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/dist/query/apiTypes' from '/node_modules/@reduxjs/toolkit/dist/query/react/ApiProvider.d.ts'. ========", + "Resolution for module '@reduxjs/toolkit/dist/query/apiTypes' was found in cache from location '/node_modules/@reduxjs/toolkit/dist/query/react'.", + "======== Module name '@reduxjs/toolkit/dist/query/apiTypes' was not resolved. ========" + ] + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "bundler", + "fileName": "/node_modules/@reduxjs/toolkit/dist/query/react/index.d.ts", + "moduleSpecifier": "@reduxjs/toolkit/dist/query/core/module", + "pos": 257, + "end": 298, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/dist/query/core/module' from '/node_modules/@reduxjs/toolkit/dist/query/react/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/node_modules/@reduxjs/toolkit/dist/query/react/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/query/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/core/module' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Export specifier './dist/query/core/module' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Loading module '@reduxjs/toolkit/dist/query/core/module' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/module'", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/module'", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/module'", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/module'", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/module'", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/core/module' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/module'", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/core/module' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "======== Module name '@reduxjs/toolkit/dist/query/core/module' was not resolved. ========" + ] + } + ] +} diff --git a/packages/core/test/snapshots/@reduxjs__toolkit@2.0.0-beta.0.tgz.md b/packages/core/test/snapshots/@reduxjs__toolkit@2.0.0-beta.0.tgz.md deleted file mode 100644 index ab66caf..0000000 --- a/packages/core/test/snapshots/@reduxjs__toolkit@2.0.0-beta.0.tgz.md +++ /dev/null @@ -1,1051 +0,0 @@ -# @reduxjs__toolkit@2.0.0-beta.0.tgz - -## Problems - -```json -[ - { - "kind": "FalseCJS", - "entrypoint": ".", - "resolutionKind": "node16-esm" - }, - { - "kind": "FalseCJS", - "entrypoint": "./react", - "resolutionKind": "node16-esm" - }, - { - "kind": "FalseCJS", - "entrypoint": "./query", - "resolutionKind": "node16-esm" - }, - { - "kind": "FalseCJS", - "entrypoint": "./query/react", - "resolutionKind": "node16-esm" - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/react/index.d.ts", - "moduleSpecifier": "@reduxjs/toolkit/dist/tsHelpers", - "pos": 153, - "end": 187, - "resolutionMode": 1, - "trace": [ - "======== Resolving module '@reduxjs/toolkit/dist/tsHelpers' from '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/react/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in CJS mode with conditions 'require', 'types', 'node'.", - "File '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/react/package.json' does not exist according to earlier cached lookups.", - "File '/node_modules/@reduxjs/toolkit/dist/package.json' does not exist according to earlier cached lookups.", - "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", - "Export specifier './dist/tsHelpers' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "Export specifier './dist/tsHelpers' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "Loading module '@reduxjs/toolkit/dist/tsHelpers' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", - "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", - "Directory '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/react/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/tsHelpers'", - "Directory '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/tsHelpers'", - "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/tsHelpers'", - "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/tsHelpers'", - "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/tsHelpers'", - "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", - "Export specifier './dist/tsHelpers' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/tsHelpers'", - "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", - "Directory '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/react/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", - "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", - "Export specifier './dist/tsHelpers' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "======== Module name '@reduxjs/toolkit/dist/tsHelpers' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/react/index.d.ts", - "moduleSpecifier": "@reduxjs/toolkit/dist/dynamicMiddleware/types", - "pos": 379, - "end": 427, - "resolutionMode": 1, - "trace": [ - "======== Resolving module '@reduxjs/toolkit/dist/dynamicMiddleware/types' from '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/react/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in CJS mode with conditions 'require', 'types', 'node'.", - "File '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/react/package.json' does not exist according to earlier cached lookups.", - "File '/node_modules/@reduxjs/toolkit/dist/package.json' does not exist according to earlier cached lookups.", - "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", - "Export specifier './dist/dynamicMiddleware/types' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "Export specifier './dist/dynamicMiddleware/types' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "Loading module '@reduxjs/toolkit/dist/dynamicMiddleware/types' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", - "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", - "Directory '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/react/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/dynamicMiddleware/types'", - "Directory '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/dynamicMiddleware/types'", - "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/dynamicMiddleware/types'", - "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/dynamicMiddleware/types'", - "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/dynamicMiddleware/types'", - "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", - "Export specifier './dist/dynamicMiddleware/types' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/dynamicMiddleware/types'", - "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", - "Directory '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/react/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", - "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", - "Export specifier './dist/dynamicMiddleware/types' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "======== Module name '@reduxjs/toolkit/dist/dynamicMiddleware/types' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts", - "moduleSpecifier": "@reduxjs/toolkit/dist/query/core/apiState", - "pos": 157, - "end": 201, - "resolutionMode": 1, - "trace": [ - "======== Resolving module '@reduxjs/toolkit/dist/query/core/apiState' from '/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in CJS mode with conditions 'require', 'types', 'node'.", - "File '/node_modules/@reduxjs/toolkit/dist/query/react/package.json' does not exist according to earlier cached lookups.", - "File '/node_modules/@reduxjs/toolkit/dist/query/package.json' does not exist according to earlier cached lookups.", - "File '/node_modules/@reduxjs/toolkit/dist/package.json' does not exist according to earlier cached lookups.", - "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", - "Export specifier './dist/query/core/apiState' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "Export specifier './dist/query/core/apiState' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "Loading module '@reduxjs/toolkit/dist/query/core/apiState' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", - "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", - "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/apiState'", - "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/apiState'", - "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/apiState'", - "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/apiState'", - "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/apiState'", - "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", - "Export specifier './dist/query/core/apiState' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/apiState'", - "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", - "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", - "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", - "Export specifier './dist/query/core/apiState' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "======== Module name '@reduxjs/toolkit/dist/query/core/apiState' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts", - "moduleSpecifier": "@reduxjs/toolkit/dist/query/endpointDefinitions", - "pos": 311, - "end": 361, - "resolutionMode": 1, - "trace": [ - "======== Resolving module '@reduxjs/toolkit/dist/query/endpointDefinitions' from '/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts'. ========", - "Resolution for module '@reduxjs/toolkit/dist/query/endpointDefinitions' was found in cache from location '/node_modules/@reduxjs/toolkit/dist/query/react'.", - "======== Module name '@reduxjs/toolkit/dist/query/endpointDefinitions' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts", - "moduleSpecifier": "@reduxjs/toolkit/dist/query/core/buildSelectors", - "pos": 424, - "end": 474, - "resolutionMode": 1, - "trace": [ - "======== Resolving module '@reduxjs/toolkit/dist/query/core/buildSelectors' from '/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in CJS mode with conditions 'require', 'types', 'node'.", - "File '/node_modules/@reduxjs/toolkit/dist/query/react/package.json' does not exist according to earlier cached lookups.", - "File '/node_modules/@reduxjs/toolkit/dist/query/package.json' does not exist according to earlier cached lookups.", - "File '/node_modules/@reduxjs/toolkit/dist/package.json' does not exist according to earlier cached lookups.", - "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", - "Export specifier './dist/query/core/buildSelectors' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "Export specifier './dist/query/core/buildSelectors' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "Loading module '@reduxjs/toolkit/dist/query/core/buildSelectors' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", - "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", - "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/buildSelectors'", - "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/buildSelectors'", - "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/buildSelectors'", - "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/buildSelectors'", - "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/buildSelectors'", - "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", - "Export specifier './dist/query/core/buildSelectors' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/buildSelectors'", - "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", - "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", - "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", - "Export specifier './dist/query/core/buildSelectors' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "======== Module name '@reduxjs/toolkit/dist/query/core/buildSelectors' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts", - "moduleSpecifier": "@reduxjs/toolkit/dist/query/core/buildInitiate", - "pos": 551, - "end": 600, - "resolutionMode": 1, - "trace": [ - "======== Resolving module '@reduxjs/toolkit/dist/query/core/buildInitiate' from '/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in CJS mode with conditions 'require', 'types', 'node'.", - "File '/node_modules/@reduxjs/toolkit/dist/query/react/package.json' does not exist according to earlier cached lookups.", - "File '/node_modules/@reduxjs/toolkit/dist/query/package.json' does not exist according to earlier cached lookups.", - "File '/node_modules/@reduxjs/toolkit/dist/package.json' does not exist according to earlier cached lookups.", - "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", - "Export specifier './dist/query/core/buildInitiate' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "Export specifier './dist/query/core/buildInitiate' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "Loading module '@reduxjs/toolkit/dist/query/core/buildInitiate' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", - "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", - "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/buildInitiate'", - "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/buildInitiate'", - "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/buildInitiate'", - "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/buildInitiate'", - "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/buildInitiate'", - "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", - "Export specifier './dist/query/core/buildInitiate' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/buildInitiate'", - "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", - "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", - "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", - "Export specifier './dist/query/core/buildInitiate' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "======== Module name '@reduxjs/toolkit/dist/query/core/buildInitiate' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts", - "moduleSpecifier": "@reduxjs/toolkit/dist/query/defaultSerializeQueryArgs", - "pos": 642, - "end": 698, - "resolutionMode": 1, - "trace": [ - "======== Resolving module '@reduxjs/toolkit/dist/query/defaultSerializeQueryArgs' from '/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in CJS mode with conditions 'require', 'types', 'node'.", - "File '/node_modules/@reduxjs/toolkit/dist/query/react/package.json' does not exist according to earlier cached lookups.", - "File '/node_modules/@reduxjs/toolkit/dist/query/package.json' does not exist according to earlier cached lookups.", - "File '/node_modules/@reduxjs/toolkit/dist/package.json' does not exist according to earlier cached lookups.", - "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", - "Export specifier './dist/query/defaultSerializeQueryArgs' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "Export specifier './dist/query/defaultSerializeQueryArgs' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "Loading module '@reduxjs/toolkit/dist/query/defaultSerializeQueryArgs' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", - "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", - "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/defaultSerializeQueryArgs'", - "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/defaultSerializeQueryArgs'", - "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/defaultSerializeQueryArgs'", - "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/defaultSerializeQueryArgs'", - "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/defaultSerializeQueryArgs'", - "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", - "Export specifier './dist/query/defaultSerializeQueryArgs' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/defaultSerializeQueryArgs'", - "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", - "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", - "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", - "Export specifier './dist/query/defaultSerializeQueryArgs' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "======== Module name '@reduxjs/toolkit/dist/query/defaultSerializeQueryArgs' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts", - "moduleSpecifier": "@reduxjs/toolkit/dist/query/apiTypes", - "pos": 737, - "end": 776, - "resolutionMode": 1, - "trace": [ - "======== Resolving module '@reduxjs/toolkit/dist/query/apiTypes' from '/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts'. ========", - "Resolution for module '@reduxjs/toolkit/dist/query/apiTypes' was found in cache from location '/node_modules/@reduxjs/toolkit/dist/query/react'.", - "======== Module name '@reduxjs/toolkit/dist/query/apiTypes' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts", - "moduleSpecifier": "@reduxjs/toolkit/dist/query/tsHelpers", - "pos": 821, - "end": 861, - "resolutionMode": 1, - "trace": [ - "======== Resolving module '@reduxjs/toolkit/dist/query/tsHelpers' from '/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in CJS mode with conditions 'require', 'types', 'node'.", - "File '/node_modules/@reduxjs/toolkit/dist/query/react/package.json' does not exist according to earlier cached lookups.", - "File '/node_modules/@reduxjs/toolkit/dist/query/package.json' does not exist according to earlier cached lookups.", - "File '/node_modules/@reduxjs/toolkit/dist/package.json' does not exist according to earlier cached lookups.", - "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", - "Export specifier './dist/query/tsHelpers' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "Export specifier './dist/query/tsHelpers' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "Loading module '@reduxjs/toolkit/dist/query/tsHelpers' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", - "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", - "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/tsHelpers'", - "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/tsHelpers'", - "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/tsHelpers'", - "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/tsHelpers'", - "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/tsHelpers'", - "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", - "Export specifier './dist/query/tsHelpers' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/tsHelpers'", - "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", - "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", - "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", - "Export specifier './dist/query/tsHelpers' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "======== Module name '@reduxjs/toolkit/dist/query/tsHelpers' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts", - "moduleSpecifier": "@reduxjs/toolkit/dist/query/core/module", - "pos": 912, - "end": 954, - "resolutionMode": 1, - "trace": [ - "======== Resolving module '@reduxjs/toolkit/dist/query/core/module' from '/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts'. ========", - "Resolution for module '@reduxjs/toolkit/dist/query/core/module' was found in cache from location '/node_modules/@reduxjs/toolkit/dist/query/react'.", - "======== Module name '@reduxjs/toolkit/dist/query/core/module' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@reduxjs/toolkit/dist/query/react/namedHooks.d.ts", - "moduleSpecifier": "@reduxjs/toolkit/dist/query/endpointDefinitions", - "pos": 167, - "end": 217, - "resolutionMode": 1, - "trace": [ - "======== Resolving module '@reduxjs/toolkit/dist/query/endpointDefinitions' from '/node_modules/@reduxjs/toolkit/dist/query/react/namedHooks.d.ts'. ========", - "Resolution for module '@reduxjs/toolkit/dist/query/endpointDefinitions' was found in cache from location '/node_modules/@reduxjs/toolkit/dist/query/react'.", - "======== Module name '@reduxjs/toolkit/dist/query/endpointDefinitions' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@reduxjs/toolkit/dist/query/react/module.d.ts", - "moduleSpecifier": "@reduxjs/toolkit/dist/query/endpointDefinitions", - "pos": 155, - "end": 205, - "resolutionMode": 1, - "trace": [ - "======== Resolving module '@reduxjs/toolkit/dist/query/endpointDefinitions' from '/node_modules/@reduxjs/toolkit/dist/query/react/module.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in CJS mode with conditions 'require', 'types', 'node'.", - "File '/node_modules/@reduxjs/toolkit/dist/query/react/package.json' does not exist according to earlier cached lookups.", - "File '/node_modules/@reduxjs/toolkit/dist/query/package.json' does not exist according to earlier cached lookups.", - "File '/node_modules/@reduxjs/toolkit/dist/package.json' does not exist according to earlier cached lookups.", - "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", - "Export specifier './dist/query/endpointDefinitions' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "Export specifier './dist/query/endpointDefinitions' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "Loading module '@reduxjs/toolkit/dist/query/endpointDefinitions' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", - "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", - "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/endpointDefinitions'", - "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/endpointDefinitions'", - "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/endpointDefinitions'", - "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/endpointDefinitions'", - "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/endpointDefinitions'", - "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", - "Export specifier './dist/query/endpointDefinitions' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/endpointDefinitions'", - "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", - "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", - "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", - "Export specifier './dist/query/endpointDefinitions' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "======== Module name '@reduxjs/toolkit/dist/query/endpointDefinitions' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@reduxjs/toolkit/dist/query/react/module.d.ts", - "moduleSpecifier": "@reduxjs/toolkit/dist/query/baseQueryTypes", - "pos": 284, - "end": 329, - "resolutionMode": 1, - "trace": [ - "======== Resolving module '@reduxjs/toolkit/dist/query/baseQueryTypes' from '/node_modules/@reduxjs/toolkit/dist/query/react/module.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in CJS mode with conditions 'require', 'types', 'node'.", - "File '/node_modules/@reduxjs/toolkit/dist/query/react/package.json' does not exist according to earlier cached lookups.", - "File '/node_modules/@reduxjs/toolkit/dist/query/package.json' does not exist according to earlier cached lookups.", - "File '/node_modules/@reduxjs/toolkit/dist/package.json' does not exist according to earlier cached lookups.", - "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", - "Export specifier './dist/query/baseQueryTypes' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "Export specifier './dist/query/baseQueryTypes' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "Loading module '@reduxjs/toolkit/dist/query/baseQueryTypes' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", - "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", - "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/baseQueryTypes'", - "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/baseQueryTypes'", - "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/baseQueryTypes'", - "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/baseQueryTypes'", - "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/baseQueryTypes'", - "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", - "Export specifier './dist/query/baseQueryTypes' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/baseQueryTypes'", - "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", - "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", - "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", - "Export specifier './dist/query/baseQueryTypes' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "======== Module name '@reduxjs/toolkit/dist/query/baseQueryTypes' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@reduxjs/toolkit/dist/query/react/ApiProvider.d.ts", - "moduleSpecifier": "@reduxjs/toolkit/dist/query/apiTypes", - "pos": 181, - "end": 220, - "resolutionMode": 1, - "trace": [ - "======== Resolving module '@reduxjs/toolkit/dist/query/apiTypes' from '/node_modules/@reduxjs/toolkit/dist/query/react/ApiProvider.d.ts'. ========", - "Resolution for module '@reduxjs/toolkit/dist/query/apiTypes' was found in cache from location '/node_modules/@reduxjs/toolkit/dist/query/react'.", - "======== Module name '@reduxjs/toolkit/dist/query/apiTypes' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/@reduxjs/toolkit/dist/query/react/index.d.ts", - "moduleSpecifier": "@reduxjs/toolkit/dist/query/core/module", - "pos": 257, - "end": 298, - "resolutionMode": 1, - "trace": [ - "======== Resolving module '@reduxjs/toolkit/dist/query/core/module' from '/node_modules/@reduxjs/toolkit/dist/query/react/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in CJS mode with conditions 'require', 'types', 'node'.", - "File '/node_modules/@reduxjs/toolkit/dist/query/react/package.json' does not exist according to earlier cached lookups.", - "File '/node_modules/@reduxjs/toolkit/dist/query/package.json' does not exist according to earlier cached lookups.", - "File '/node_modules/@reduxjs/toolkit/dist/package.json' does not exist according to earlier cached lookups.", - "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", - "Export specifier './dist/query/core/module' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "Export specifier './dist/query/core/module' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "Loading module '@reduxjs/toolkit/dist/query/core/module' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", - "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", - "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/module'", - "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/module'", - "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/module'", - "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/module'", - "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/module'", - "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", - "Export specifier './dist/query/core/module' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/module'", - "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", - "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", - "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", - "Export specifier './dist/query/core/module' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "======== Module name '@reduxjs/toolkit/dist/query/core/module' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "bundler", - "fileName": "/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/react/index.d.ts", - "moduleSpecifier": "@reduxjs/toolkit/dist/tsHelpers", - "pos": 153, - "end": 187, - "trace": [ - "======== Resolving module '@reduxjs/toolkit/dist/tsHelpers' from '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/react/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Bundler'.", - "Resolving in CJS mode with conditions 'import', 'types'.", - "File '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/react/package.json' does not exist according to earlier cached lookups.", - "File '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/package.json' does not exist according to earlier cached lookups.", - "File '/node_modules/@reduxjs/toolkit/dist/package.json' does not exist according to earlier cached lookups.", - "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", - "Export specifier './dist/tsHelpers' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "Export specifier './dist/tsHelpers' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "Loading module '@reduxjs/toolkit/dist/tsHelpers' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", - "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", - "Directory '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/react/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/tsHelpers'", - "Directory '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/tsHelpers'", - "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/tsHelpers'", - "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/tsHelpers'", - "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/tsHelpers'", - "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", - "Export specifier './dist/tsHelpers' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/tsHelpers'", - "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", - "Directory '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/react/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", - "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", - "Export specifier './dist/tsHelpers' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "======== Module name '@reduxjs/toolkit/dist/tsHelpers' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "bundler", - "fileName": "/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/react/index.d.ts", - "moduleSpecifier": "@reduxjs/toolkit/dist/dynamicMiddleware/types", - "pos": 379, - "end": 427, - "trace": [ - "======== Resolving module '@reduxjs/toolkit/dist/dynamicMiddleware/types' from '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/react/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Bundler'.", - "Resolving in CJS mode with conditions 'import', 'types'.", - "File '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/react/package.json' does not exist according to earlier cached lookups.", - "File '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/package.json' does not exist according to earlier cached lookups.", - "File '/node_modules/@reduxjs/toolkit/dist/package.json' does not exist according to earlier cached lookups.", - "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", - "Export specifier './dist/dynamicMiddleware/types' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "Export specifier './dist/dynamicMiddleware/types' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "Loading module '@reduxjs/toolkit/dist/dynamicMiddleware/types' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", - "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", - "Directory '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/react/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/dynamicMiddleware/types'", - "Directory '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/dynamicMiddleware/types'", - "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/dynamicMiddleware/types'", - "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/dynamicMiddleware/types'", - "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/dynamicMiddleware/types'", - "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", - "Export specifier './dist/dynamicMiddleware/types' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/dynamicMiddleware/types'", - "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", - "Directory '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/react/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", - "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", - "Export specifier './dist/dynamicMiddleware/types' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "======== Module name '@reduxjs/toolkit/dist/dynamicMiddleware/types' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "bundler", - "fileName": "/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts", - "moduleSpecifier": "@reduxjs/toolkit/dist/query/core/apiState", - "pos": 157, - "end": 201, - "trace": [ - "======== Resolving module '@reduxjs/toolkit/dist/query/core/apiState' from '/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts'. ========", - "Explicitly specified module resolution kind: 'Bundler'.", - "Resolving in CJS mode with conditions 'import', 'types'.", - "File '/node_modules/@reduxjs/toolkit/dist/query/react/package.json' does not exist according to earlier cached lookups.", - "File '/node_modules/@reduxjs/toolkit/dist/query/package.json' does not exist according to earlier cached lookups.", - "File '/node_modules/@reduxjs/toolkit/dist/package.json' does not exist according to earlier cached lookups.", - "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", - "Export specifier './dist/query/core/apiState' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "Export specifier './dist/query/core/apiState' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "Loading module '@reduxjs/toolkit/dist/query/core/apiState' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", - "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", - "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/apiState'", - "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/apiState'", - "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/apiState'", - "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/apiState'", - "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/apiState'", - "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", - "Export specifier './dist/query/core/apiState' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/apiState'", - "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", - "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", - "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", - "Export specifier './dist/query/core/apiState' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "======== Module name '@reduxjs/toolkit/dist/query/core/apiState' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "bundler", - "fileName": "/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts", - "moduleSpecifier": "@reduxjs/toolkit/dist/query/endpointDefinitions", - "pos": 311, - "end": 361, - "trace": [ - "======== Resolving module '@reduxjs/toolkit/dist/query/endpointDefinitions' from '/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts'. ========", - "Resolution for module '@reduxjs/toolkit/dist/query/endpointDefinitions' was found in cache from location '/node_modules/@reduxjs/toolkit/dist/query/react'.", - "======== Module name '@reduxjs/toolkit/dist/query/endpointDefinitions' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "bundler", - "fileName": "/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts", - "moduleSpecifier": "@reduxjs/toolkit/dist/query/core/buildSelectors", - "pos": 424, - "end": 474, - "trace": [ - "======== Resolving module '@reduxjs/toolkit/dist/query/core/buildSelectors' from '/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts'. ========", - "Explicitly specified module resolution kind: 'Bundler'.", - "Resolving in CJS mode with conditions 'import', 'types'.", - "File '/node_modules/@reduxjs/toolkit/dist/query/react/package.json' does not exist according to earlier cached lookups.", - "File '/node_modules/@reduxjs/toolkit/dist/query/package.json' does not exist according to earlier cached lookups.", - "File '/node_modules/@reduxjs/toolkit/dist/package.json' does not exist according to earlier cached lookups.", - "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", - "Export specifier './dist/query/core/buildSelectors' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "Export specifier './dist/query/core/buildSelectors' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "Loading module '@reduxjs/toolkit/dist/query/core/buildSelectors' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", - "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", - "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/buildSelectors'", - "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/buildSelectors'", - "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/buildSelectors'", - "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/buildSelectors'", - "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/buildSelectors'", - "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", - "Export specifier './dist/query/core/buildSelectors' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/buildSelectors'", - "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", - "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", - "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", - "Export specifier './dist/query/core/buildSelectors' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "======== Module name '@reduxjs/toolkit/dist/query/core/buildSelectors' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "bundler", - "fileName": "/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts", - "moduleSpecifier": "@reduxjs/toolkit/dist/query/core/buildInitiate", - "pos": 551, - "end": 600, - "trace": [ - "======== Resolving module '@reduxjs/toolkit/dist/query/core/buildInitiate' from '/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts'. ========", - "Explicitly specified module resolution kind: 'Bundler'.", - "Resolving in CJS mode with conditions 'import', 'types'.", - "File '/node_modules/@reduxjs/toolkit/dist/query/react/package.json' does not exist according to earlier cached lookups.", - "File '/node_modules/@reduxjs/toolkit/dist/query/package.json' does not exist according to earlier cached lookups.", - "File '/node_modules/@reduxjs/toolkit/dist/package.json' does not exist according to earlier cached lookups.", - "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", - "Export specifier './dist/query/core/buildInitiate' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "Export specifier './dist/query/core/buildInitiate' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "Loading module '@reduxjs/toolkit/dist/query/core/buildInitiate' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", - "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", - "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/buildInitiate'", - "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/buildInitiate'", - "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/buildInitiate'", - "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/buildInitiate'", - "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/buildInitiate'", - "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", - "Export specifier './dist/query/core/buildInitiate' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/buildInitiate'", - "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", - "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", - "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", - "Export specifier './dist/query/core/buildInitiate' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "======== Module name '@reduxjs/toolkit/dist/query/core/buildInitiate' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "bundler", - "fileName": "/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts", - "moduleSpecifier": "@reduxjs/toolkit/dist/query/defaultSerializeQueryArgs", - "pos": 642, - "end": 698, - "trace": [ - "======== Resolving module '@reduxjs/toolkit/dist/query/defaultSerializeQueryArgs' from '/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts'. ========", - "Explicitly specified module resolution kind: 'Bundler'.", - "Resolving in CJS mode with conditions 'import', 'types'.", - "File '/node_modules/@reduxjs/toolkit/dist/query/react/package.json' does not exist according to earlier cached lookups.", - "File '/node_modules/@reduxjs/toolkit/dist/query/package.json' does not exist according to earlier cached lookups.", - "File '/node_modules/@reduxjs/toolkit/dist/package.json' does not exist according to earlier cached lookups.", - "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", - "Export specifier './dist/query/defaultSerializeQueryArgs' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "Export specifier './dist/query/defaultSerializeQueryArgs' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "Loading module '@reduxjs/toolkit/dist/query/defaultSerializeQueryArgs' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", - "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", - "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/defaultSerializeQueryArgs'", - "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/defaultSerializeQueryArgs'", - "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/defaultSerializeQueryArgs'", - "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/defaultSerializeQueryArgs'", - "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/defaultSerializeQueryArgs'", - "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", - "Export specifier './dist/query/defaultSerializeQueryArgs' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/defaultSerializeQueryArgs'", - "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", - "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", - "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", - "Export specifier './dist/query/defaultSerializeQueryArgs' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "======== Module name '@reduxjs/toolkit/dist/query/defaultSerializeQueryArgs' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "bundler", - "fileName": "/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts", - "moduleSpecifier": "@reduxjs/toolkit/dist/query/apiTypes", - "pos": 737, - "end": 776, - "trace": [ - "======== Resolving module '@reduxjs/toolkit/dist/query/apiTypes' from '/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts'. ========", - "Resolution for module '@reduxjs/toolkit/dist/query/apiTypes' was found in cache from location '/node_modules/@reduxjs/toolkit/dist/query/react'.", - "======== Module name '@reduxjs/toolkit/dist/query/apiTypes' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "bundler", - "fileName": "/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts", - "moduleSpecifier": "@reduxjs/toolkit/dist/query/tsHelpers", - "pos": 821, - "end": 861, - "trace": [ - "======== Resolving module '@reduxjs/toolkit/dist/query/tsHelpers' from '/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts'. ========", - "Explicitly specified module resolution kind: 'Bundler'.", - "Resolving in CJS mode with conditions 'import', 'types'.", - "File '/node_modules/@reduxjs/toolkit/dist/query/react/package.json' does not exist according to earlier cached lookups.", - "File '/node_modules/@reduxjs/toolkit/dist/query/package.json' does not exist according to earlier cached lookups.", - "File '/node_modules/@reduxjs/toolkit/dist/package.json' does not exist according to earlier cached lookups.", - "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", - "Export specifier './dist/query/tsHelpers' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "Export specifier './dist/query/tsHelpers' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "Loading module '@reduxjs/toolkit/dist/query/tsHelpers' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", - "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", - "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/tsHelpers'", - "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/tsHelpers'", - "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/tsHelpers'", - "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/tsHelpers'", - "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/tsHelpers'", - "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", - "Export specifier './dist/query/tsHelpers' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/tsHelpers'", - "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", - "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", - "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", - "Export specifier './dist/query/tsHelpers' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "======== Module name '@reduxjs/toolkit/dist/query/tsHelpers' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "bundler", - "fileName": "/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts", - "moduleSpecifier": "@reduxjs/toolkit/dist/query/core/module", - "pos": 912, - "end": 954, - "trace": [ - "======== Resolving module '@reduxjs/toolkit/dist/query/core/module' from '/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts'. ========", - "Resolution for module '@reduxjs/toolkit/dist/query/core/module' was found in cache from location '/node_modules/@reduxjs/toolkit/dist/query/react'.", - "======== Module name '@reduxjs/toolkit/dist/query/core/module' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "bundler", - "fileName": "/node_modules/@reduxjs/toolkit/dist/query/react/namedHooks.d.ts", - "moduleSpecifier": "@reduxjs/toolkit/dist/query/endpointDefinitions", - "pos": 167, - "end": 217, - "trace": [ - "======== Resolving module '@reduxjs/toolkit/dist/query/endpointDefinitions' from '/node_modules/@reduxjs/toolkit/dist/query/react/namedHooks.d.ts'. ========", - "Resolution for module '@reduxjs/toolkit/dist/query/endpointDefinitions' was found in cache from location '/node_modules/@reduxjs/toolkit/dist/query/react'.", - "======== Module name '@reduxjs/toolkit/dist/query/endpointDefinitions' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "bundler", - "fileName": "/node_modules/@reduxjs/toolkit/dist/query/react/module.d.ts", - "moduleSpecifier": "@reduxjs/toolkit/dist/query/endpointDefinitions", - "pos": 155, - "end": 205, - "trace": [ - "======== Resolving module '@reduxjs/toolkit/dist/query/endpointDefinitions' from '/node_modules/@reduxjs/toolkit/dist/query/react/module.d.ts'. ========", - "Explicitly specified module resolution kind: 'Bundler'.", - "Resolving in CJS mode with conditions 'import', 'types'.", - "File '/node_modules/@reduxjs/toolkit/dist/query/react/package.json' does not exist according to earlier cached lookups.", - "File '/node_modules/@reduxjs/toolkit/dist/query/package.json' does not exist according to earlier cached lookups.", - "File '/node_modules/@reduxjs/toolkit/dist/package.json' does not exist according to earlier cached lookups.", - "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", - "Export specifier './dist/query/endpointDefinitions' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "Export specifier './dist/query/endpointDefinitions' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "Loading module '@reduxjs/toolkit/dist/query/endpointDefinitions' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", - "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", - "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/endpointDefinitions'", - "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/endpointDefinitions'", - "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/endpointDefinitions'", - "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/endpointDefinitions'", - "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/endpointDefinitions'", - "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", - "Export specifier './dist/query/endpointDefinitions' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/endpointDefinitions'", - "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", - "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", - "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", - "Export specifier './dist/query/endpointDefinitions' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "======== Module name '@reduxjs/toolkit/dist/query/endpointDefinitions' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "bundler", - "fileName": "/node_modules/@reduxjs/toolkit/dist/query/react/module.d.ts", - "moduleSpecifier": "@reduxjs/toolkit/dist/query/baseQueryTypes", - "pos": 284, - "end": 329, - "trace": [ - "======== Resolving module '@reduxjs/toolkit/dist/query/baseQueryTypes' from '/node_modules/@reduxjs/toolkit/dist/query/react/module.d.ts'. ========", - "Explicitly specified module resolution kind: 'Bundler'.", - "Resolving in CJS mode with conditions 'import', 'types'.", - "File '/node_modules/@reduxjs/toolkit/dist/query/react/package.json' does not exist according to earlier cached lookups.", - "File '/node_modules/@reduxjs/toolkit/dist/query/package.json' does not exist according to earlier cached lookups.", - "File '/node_modules/@reduxjs/toolkit/dist/package.json' does not exist according to earlier cached lookups.", - "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", - "Export specifier './dist/query/baseQueryTypes' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "Export specifier './dist/query/baseQueryTypes' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "Loading module '@reduxjs/toolkit/dist/query/baseQueryTypes' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", - "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", - "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/baseQueryTypes'", - "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/baseQueryTypes'", - "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/baseQueryTypes'", - "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/baseQueryTypes'", - "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/baseQueryTypes'", - "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", - "Export specifier './dist/query/baseQueryTypes' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/baseQueryTypes'", - "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", - "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", - "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", - "Export specifier './dist/query/baseQueryTypes' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "======== Module name '@reduxjs/toolkit/dist/query/baseQueryTypes' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "bundler", - "fileName": "/node_modules/@reduxjs/toolkit/dist/query/react/ApiProvider.d.ts", - "moduleSpecifier": "@reduxjs/toolkit/dist/query/apiTypes", - "pos": 181, - "end": 220, - "trace": [ - "======== Resolving module '@reduxjs/toolkit/dist/query/apiTypes' from '/node_modules/@reduxjs/toolkit/dist/query/react/ApiProvider.d.ts'. ========", - "Resolution for module '@reduxjs/toolkit/dist/query/apiTypes' was found in cache from location '/node_modules/@reduxjs/toolkit/dist/query/react'.", - "======== Module name '@reduxjs/toolkit/dist/query/apiTypes' was not resolved. ========" - ] - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "bundler", - "fileName": "/node_modules/@reduxjs/toolkit/dist/query/react/index.d.ts", - "moduleSpecifier": "@reduxjs/toolkit/dist/query/core/module", - "pos": 257, - "end": 298, - "trace": [ - "======== Resolving module '@reduxjs/toolkit/dist/query/core/module' from '/node_modules/@reduxjs/toolkit/dist/query/react/index.d.ts'. ========", - "Explicitly specified module resolution kind: 'Bundler'.", - "Resolving in CJS mode with conditions 'import', 'types'.", - "File '/node_modules/@reduxjs/toolkit/dist/query/react/package.json' does not exist according to earlier cached lookups.", - "File '/node_modules/@reduxjs/toolkit/dist/query/package.json' does not exist according to earlier cached lookups.", - "File '/node_modules/@reduxjs/toolkit/dist/package.json' does not exist according to earlier cached lookups.", - "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", - "Export specifier './dist/query/core/module' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "Export specifier './dist/query/core/module' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "Loading module '@reduxjs/toolkit/dist/query/core/module' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", - "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", - "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/module'", - "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/module'", - "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/module'", - "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/module'", - "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/module'", - "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", - "Export specifier './dist/query/core/module' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", - "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/module'", - "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", - "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", - "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", - "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", - "Export specifier './dist/query/core/module' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", - "======== Module name '@reduxjs/toolkit/dist/query/core/module' was not resolved. ========" - ] - } -] -``` \ No newline at end of file diff --git a/packages/core/test/snapshots/@vitejs__plugin-react@3.1.0.tgz.json b/packages/core/test/snapshots/@vitejs__plugin-react@3.1.0.tgz.json new file mode 100644 index 0000000..bc9ff54 --- /dev/null +++ b/packages/core/test/snapshots/@vitejs__plugin-react@3.1.0.tgz.json @@ -0,0 +1,330 @@ +{ + "packageName": "@vitejs/plugin-react", + "packageVersion": "3.1.0", + "types": { + "kind": "included" + }, + "buildTools": {}, + "entrypoints": { + ".": { + "subpath": ".", + "resolutions": { + "node10": { + "name": ".", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/@vitejs/plugin-react/dist/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@vitejs/plugin-react' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module '@vitejs/plugin-react' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/@vitejs/plugin-react/package.json'.", + "File '/node_modules/@vitejs/plugin-react.ts' does not exist.", + "File '/node_modules/@vitejs/plugin-react.tsx' does not exist.", + "File '/node_modules/@vitejs/plugin-react.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field './dist/index.d.ts' that references '/node_modules/@vitejs/plugin-react/dist/index.d.ts'.", + "File '/node_modules/@vitejs/plugin-react/dist/index.d.ts' exists - use it as a name resolution result.", + "======== Module name '@vitejs/plugin-react' was successfully resolved to '/node_modules/@vitejs/plugin-react/dist/index.d.ts' with Package ID '@vitejs/plugin-react/dist/index.d.ts@3.1.0'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@vitejs/plugin-react/dist/index.cjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@vitejs/plugin-react' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module '@vitejs/plugin-react' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@vitejs/plugin-react/package.json'.", + "File '/node_modules/@vitejs/plugin-react.ts' does not exist.", + "File '/node_modules/@vitejs/plugin-react.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field './dist/index.cjs' that references '/node_modules/@vitejs/plugin-react/dist/index.cjs'.", + "File '/node_modules/@vitejs/plugin-react/dist/index.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@vitejs/plugin-react/dist/index.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@vitejs/plugin-react/dist/index.cjs', target file types: TypeScript.", + "File name '/node_modules/@vitejs/plugin-react/dist/index.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@vitejs/plugin-react/dist/index.cts' does not exist.", + "File '/node_modules/@vitejs/plugin-react/dist/index.cjs.ts' does not exist.", + "File '/node_modules/@vitejs/plugin-react/dist/index.cjs.tsx' does not exist.", + "Directory '/node_modules/@vitejs/plugin-react/dist/index.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@vitejs/plugin-react/index.ts' does not exist.", + "File '/node_modules/@vitejs/plugin-react/index.tsx' does not exist.", + "Loading module '@vitejs/plugin-react' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@vitejs/plugin-react/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@vitejs/plugin-react.js' does not exist.", + "File '/node_modules/@vitejs/plugin-react.jsx' does not exist.", + "'package.json' has 'main' field './dist/index.cjs' that references '/node_modules/@vitejs/plugin-react/dist/index.cjs'.", + "File '/node_modules/@vitejs/plugin-react/dist/index.cjs' exists - use it as a name resolution result.", + "======== Module name '@vitejs/plugin-react' was successfully resolved to '/node_modules/@vitejs/plugin-react/dist/index.cjs' with Package ID '@vitejs/plugin-react/dist/index.cjs@3.1.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@vitejs/plugin-react/dist/index.d.ts" + ] + }, + "node16-cjs": { + "name": ".", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/@vitejs/plugin-react/dist/index.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/@vitejs/plugin-react/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@vitejs/plugin-react' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist.", + "Loading module '@vitejs/plugin-react' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/@vitejs/plugin-react/package.json'.", + "Entering conditional exports.", + "Matched 'exports' condition 'types'.", + "Using 'exports' subpath '.' with target './dist/index.d.ts'.", + "File '/node_modules/@vitejs/plugin-react/dist/index.d.ts' exists - use it as a name resolution result.", + "Resolved under condition 'types'.", + "Exiting conditional exports.", + "======== Module name '@vitejs/plugin-react' was successfully resolved to '/node_modules/@vitejs/plugin-react/dist/index.d.ts' with Package ID '@vitejs/plugin-react/dist/index.d.ts@3.1.0'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@vitejs/plugin-react/dist/index.cjs", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "extension", + "reasonFileName": "/node_modules/@vitejs/plugin-react/dist/index.cjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@vitejs/plugin-react' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist.", + "Loading module '@vitejs/plugin-react' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@vitejs/plugin-react/package.json'.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Saw non-matching condition 'import'.", + "Matched 'exports' condition 'require'.", + "Using 'exports' subpath '.' with target './dist/index.cjs'.", + "File name '/node_modules/@vitejs/plugin-react/dist/index.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@vitejs/plugin-react/dist/index.cts' does not exist.", + "Failed to resolve under condition 'require'.", + "Exiting conditional exports.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@vitejs/plugin-react/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Saw non-matching condition 'import'.", + "Matched 'exports' condition 'require'.", + "Using 'exports' subpath '.' with target './dist/index.cjs'.", + "File name '/node_modules/@vitejs/plugin-react/dist/index.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@vitejs/plugin-react/dist/index.cjs' exists - use it as a name resolution result.", + "Resolved under condition 'require'.", + "Exiting conditional exports.", + "======== Module name '@vitejs/plugin-react' was successfully resolved to '/node_modules/@vitejs/plugin-react/dist/index.cjs' with Package ID '@vitejs/plugin-react/dist/index.cjs@3.1.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@vitejs/plugin-react/dist/index.d.ts" + ] + }, + "node16-esm": { + "name": ".", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/@vitejs/plugin-react/dist/index.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/@vitejs/plugin-react/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@vitejs/plugin-react' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@vitejs/plugin-react' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/@vitejs/plugin-react/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Matched 'exports' condition 'types'.", + "Using 'exports' subpath '.' with target './dist/index.d.ts'.", + "File '/node_modules/@vitejs/plugin-react/dist/index.d.ts' exists - use it as a name resolution result.", + "Resolved under condition 'types'.", + "Exiting conditional exports.", + "======== Module name '@vitejs/plugin-react' was successfully resolved to '/node_modules/@vitejs/plugin-react/dist/index.d.ts' with Package ID '@vitejs/plugin-react/dist/index.d.ts@3.1.0'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@vitejs/plugin-react/dist/index.mjs", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "extension", + "reasonFileName": "/node_modules/@vitejs/plugin-react/dist/index.mjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@vitejs/plugin-react' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@vitejs/plugin-react' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@vitejs/plugin-react/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Matched 'exports' condition 'import'.", + "Using 'exports' subpath '.' with target './dist/index.mjs'.", + "File name '/node_modules/@vitejs/plugin-react/dist/index.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/@vitejs/plugin-react/dist/index.mts' does not exist.", + "Failed to resolve under condition 'import'.", + "Saw non-matching condition 'require'.", + "Exiting conditional exports.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@vitejs/plugin-react/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Matched 'exports' condition 'import'.", + "Using 'exports' subpath '.' with target './dist/index.mjs'.", + "File name '/node_modules/@vitejs/plugin-react/dist/index.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/@vitejs/plugin-react/dist/index.mjs' exists - use it as a name resolution result.", + "Resolved under condition 'import'.", + "Exiting conditional exports.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@vitejs/plugin-react' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@vitejs/plugin-react/package.json' exists according to earlier cached lookups.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field './dist/index.cjs' that references '/node_modules/@vitejs/plugin-react/dist/index.cjs'.", + "File '/node_modules/@vitejs/plugin-react/dist/index.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@vitejs/plugin-react/dist/index.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@vitejs/plugin-react/dist/index.cjs', target file types: TypeScript.", + "File name '/node_modules/@vitejs/plugin-react/dist/index.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@vitejs/plugin-react/dist/index.cts' does not exist.", + "File '/node_modules/@vitejs/plugin-react/dist/index.cjs.ts' does not exist.", + "File '/node_modules/@vitejs/plugin-react/dist/index.cjs.tsx' does not exist.", + "Directory '/node_modules/@vitejs/plugin-react/dist/index.cjs' does not exist, skipping all lookups in it.", + "======== Module name '@vitejs/plugin-react' was successfully resolved to '/node_modules/@vitejs/plugin-react/dist/index.mjs' with Package ID '@vitejs/plugin-react/dist/index.mjs@3.1.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@vitejs/plugin-react/dist/index.d.ts" + ] + }, + "bundler": { + "name": ".", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/@vitejs/plugin-react/dist/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module '@vitejs/plugin-react' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist.", + "Loading module '@vitejs/plugin-react' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/@vitejs/plugin-react/package.json'.", + "Entering conditional exports.", + "Matched 'exports' condition 'types'.", + "Using 'exports' subpath '.' with target './dist/index.d.ts'.", + "File '/node_modules/@vitejs/plugin-react/dist/index.d.ts' exists - use it as a name resolution result.", + "Resolved under condition 'types'.", + "Exiting conditional exports.", + "======== Module name '@vitejs/plugin-react' was successfully resolved to '/node_modules/@vitejs/plugin-react/dist/index.d.ts' with Package ID '@vitejs/plugin-react/dist/index.d.ts@3.1.0'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/@vitejs/plugin-react/dist/index.mjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module '@vitejs/plugin-react' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist.", + "Loading module '@vitejs/plugin-react' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/@vitejs/plugin-react/package.json'.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Matched 'exports' condition 'import'.", + "Using 'exports' subpath '.' with target './dist/index.mjs'.", + "File name '/node_modules/@vitejs/plugin-react/dist/index.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/@vitejs/plugin-react/dist/index.mts' does not exist.", + "Failed to resolve under condition 'import'.", + "Saw non-matching condition 'require'.", + "Exiting conditional exports.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/@vitejs/plugin-react/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Matched 'exports' condition 'import'.", + "Using 'exports' subpath '.' with target './dist/index.mjs'.", + "File name '/node_modules/@vitejs/plugin-react/dist/index.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/@vitejs/plugin-react/dist/index.mjs' exists - use it as a name resolution result.", + "Resolved under condition 'import'.", + "Exiting conditional exports.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module '@vitejs/plugin-react' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/@vitejs/plugin-react/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@vitejs/plugin-react.ts' does not exist.", + "File '/node_modules/@vitejs/plugin-react.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field './dist/index.cjs' that references '/node_modules/@vitejs/plugin-react/dist/index.cjs'.", + "File '/node_modules/@vitejs/plugin-react/dist/index.cjs' exists - use it as a name resolution result.", + "File '/node_modules/@vitejs/plugin-react/dist/index.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/@vitejs/plugin-react/dist/index.cjs', target file types: TypeScript.", + "File name '/node_modules/@vitejs/plugin-react/dist/index.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/@vitejs/plugin-react/dist/index.cts' does not exist.", + "File '/node_modules/@vitejs/plugin-react/dist/index.cjs.ts' does not exist.", + "File '/node_modules/@vitejs/plugin-react/dist/index.cjs.tsx' does not exist.", + "Directory '/node_modules/@vitejs/plugin-react/dist/index.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/@vitejs/plugin-react/index.ts' does not exist.", + "File '/node_modules/@vitejs/plugin-react/index.tsx' does not exist.", + "======== Module name '@vitejs/plugin-react' was successfully resolved to '/node_modules/@vitejs/plugin-react/dist/index.mjs' with Package ID '@vitejs/plugin-react/dist/index.mjs@3.1.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@vitejs/plugin-react/dist/index.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + } + }, + "problems": [ + { + "kind": "FalseCJS", + "entrypoint": ".", + "resolutionKind": "node16-esm" + } + ] +} diff --git a/packages/core/test/snapshots/@vitejs__plugin-react@3.1.0.tgz.md b/packages/core/test/snapshots/@vitejs__plugin-react@3.1.0.tgz.md deleted file mode 100644 index 51999ca..0000000 --- a/packages/core/test/snapshots/@vitejs__plugin-react@3.1.0.tgz.md +++ /dev/null @@ -1,13 +0,0 @@ -# @vitejs__plugin-react@3.1.0.tgz - -## Problems - -```json -[ - { - "kind": "FalseCJS", - "entrypoint": ".", - "resolutionKind": "node16-esm" - } -] -``` \ No newline at end of file diff --git a/packages/core/test/snapshots/ajv@8.12.0.tgz.json b/packages/core/test/snapshots/ajv@8.12.0.tgz.json new file mode 100644 index 0000000..009179a --- /dev/null +++ b/packages/core/test/snapshots/ajv@8.12.0.tgz.json @@ -0,0 +1,504 @@ +{ + "packageName": "ajv", + "packageVersion": "8.12.0", + "types": { + "kind": "included" + }, + "buildTools": { + "typescript": "^4.8.0", + "rollup": "^2.44.0", + "@rollup/plugin-typescript": "^10.0.1" + }, + "entrypoints": { + ".": { + "subpath": ".", + "resolutions": { + "node10": { + "name": ".", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/ajv/dist/ajv.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'ajv' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'ajv' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/ajv/package.json'.", + "File '/node_modules/ajv.ts' does not exist.", + "File '/node_modules/ajv.tsx' does not exist.", + "File '/node_modules/ajv.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'dist/ajv.d.ts' that references '/node_modules/ajv/dist/ajv.d.ts'.", + "File '/node_modules/ajv/dist/ajv.d.ts' exists - use it as a name resolution result.", + "======== Module name 'ajv' was successfully resolved to '/node_modules/ajv/dist/ajv.d.ts' with Package ID 'ajv/dist/ajv.d.ts@8.12.0'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/ajv/dist/ajv.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'ajv' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'ajv' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/ajv/package.json'.", + "File '/node_modules/ajv.ts' does not exist.", + "File '/node_modules/ajv.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'dist/ajv.js' that references '/node_modules/ajv/dist/ajv.js'.", + "File '/node_modules/ajv/dist/ajv.js' exists - use it as a name resolution result.", + "File '/node_modules/ajv/dist/ajv.js' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/ajv/dist/ajv.js', target file types: TypeScript.", + "File name '/node_modules/ajv/dist/ajv.js' has a '.js' extension - stripping it.", + "File '/node_modules/ajv/dist/ajv.ts' does not exist.", + "File '/node_modules/ajv/dist/ajv.tsx' does not exist.", + "File '/node_modules/ajv/dist/ajv.js.ts' does not exist.", + "File '/node_modules/ajv/dist/ajv.js.tsx' does not exist.", + "Directory '/node_modules/ajv/dist/ajv.js' does not exist, skipping all lookups in it.", + "File '/node_modules/ajv/index.ts' does not exist.", + "File '/node_modules/ajv/index.tsx' does not exist.", + "Loading module 'ajv' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/ajv/package.json' exists according to earlier cached lookups.", + "File '/node_modules/ajv.js' does not exist.", + "File '/node_modules/ajv.jsx' does not exist.", + "'package.json' has 'main' field 'dist/ajv.js' that references '/node_modules/ajv/dist/ajv.js'.", + "File '/node_modules/ajv/dist/ajv.js' exists - use it as a name resolution result.", + "======== Module name 'ajv' was successfully resolved to '/node_modules/ajv/dist/ajv.js' with Package ID 'ajv/dist/ajv.js@8.12.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/ajv/dist/compile/codegen/code.d.ts", + "/node_modules/ajv/dist/compile/codegen/scope.d.ts", + "/node_modules/ajv/dist/compile/codegen/index.d.ts", + "/node_modules/ajv/dist/compile/rules.d.ts", + "/node_modules/ajv/dist/compile/util.d.ts", + "/node_modules/ajv/dist/compile/validate/subschema.d.ts", + "/node_modules/ajv/dist/compile/errors.d.ts", + "/node_modules/ajv/dist/compile/validate/index.d.ts", + "/node_modules/ajv/dist/compile/validate/dataType.d.ts", + "/node_modules/ajv/dist/vocabularies/applicator/additionalItems.d.ts", + "/node_modules/ajv/dist/vocabularies/applicator/items2020.d.ts", + "/node_modules/ajv/dist/vocabularies/applicator/contains.d.ts", + "/node_modules/ajv/dist/vocabularies/applicator/dependencies.d.ts", + "/node_modules/ajv/dist/vocabularies/applicator/propertyNames.d.ts", + "/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.d.ts", + "/node_modules/ajv/dist/vocabularies/applicator/not.d.ts", + "/node_modules/ajv/dist/vocabularies/applicator/anyOf.d.ts", + "/node_modules/ajv/dist/vocabularies/applicator/oneOf.d.ts", + "/node_modules/ajv/dist/vocabularies/applicator/if.d.ts", + "/node_modules/ajv/dist/vocabularies/applicator/index.d.ts", + "/node_modules/ajv/dist/vocabularies/validation/limitNumber.d.ts", + "/node_modules/ajv/dist/vocabularies/validation/multipleOf.d.ts", + "/node_modules/ajv/dist/vocabularies/validation/pattern.d.ts", + "/node_modules/ajv/dist/vocabularies/validation/required.d.ts", + "/node_modules/ajv/dist/vocabularies/validation/uniqueItems.d.ts", + "/node_modules/ajv/dist/vocabularies/validation/const.d.ts", + "/node_modules/ajv/dist/vocabularies/validation/enum.d.ts", + "/node_modules/ajv/dist/vocabularies/validation/index.d.ts", + "/node_modules/ajv/dist/vocabularies/format/format.d.ts", + "/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.d.ts", + "/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.d.ts", + "/node_modules/ajv/dist/vocabularies/validation/dependentRequired.d.ts", + "/node_modules/ajv/dist/vocabularies/discriminator/types.d.ts", + "/node_modules/ajv/dist/vocabularies/discriminator/index.d.ts", + "/node_modules/ajv/dist/vocabularies/errors.d.ts", + "/node_modules/ajv/dist/types/json-schema.d.ts", + "/node_modules/ajv/dist/types/jtd-schema.d.ts", + "/node_modules/ajv/dist/runtime/validation_error.d.ts", + "/node_modules/ajv/dist/compile/ref_error.d.ts", + "/node_modules/ajv/dist/core.d.ts", + "/node_modules/ajv/dist/compile/resolve.d.ts", + "/node_modules/ajv/dist/compile/index.d.ts", + "/node_modules/ajv/dist/types/index.d.ts", + "/node_modules/ajv/dist/ajv.d.ts" + ] + }, + "node16-cjs": { + "name": ".", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/ajv/dist/ajv.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/ajv/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'ajv' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist.", + "Loading module 'ajv' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/ajv/package.json'.", + "File '/node_modules/ajv.ts' does not exist.", + "File '/node_modules/ajv.tsx' does not exist.", + "File '/node_modules/ajv.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'dist/ajv.d.ts' that references '/node_modules/ajv/dist/ajv.d.ts'.", + "File '/node_modules/ajv/dist/ajv.d.ts' exists - use it as a name resolution result.", + "======== Module name 'ajv' was successfully resolved to '/node_modules/ajv/dist/ajv.d.ts' with Package ID 'ajv/dist/ajv.d.ts@8.12.0'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/ajv/dist/ajv.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/ajv/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'ajv' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist.", + "Loading module 'ajv' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/ajv/package.json'.", + "File '/node_modules/ajv.ts' does not exist.", + "File '/node_modules/ajv.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'dist/ajv.js' that references '/node_modules/ajv/dist/ajv.js'.", + "File '/node_modules/ajv/dist/ajv.js' exists - use it as a name resolution result.", + "File '/node_modules/ajv/dist/ajv.js' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/ajv/dist/ajv.js', target file types: TypeScript.", + "File name '/node_modules/ajv/dist/ajv.js' has a '.js' extension - stripping it.", + "File '/node_modules/ajv/dist/ajv.ts' does not exist.", + "File '/node_modules/ajv/dist/ajv.tsx' does not exist.", + "File '/node_modules/ajv/dist/ajv.js.ts' does not exist.", + "File '/node_modules/ajv/dist/ajv.js.tsx' does not exist.", + "Directory '/node_modules/ajv/dist/ajv.js' does not exist, skipping all lookups in it.", + "File '/node_modules/ajv/index.ts' does not exist.", + "File '/node_modules/ajv/index.tsx' does not exist.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/ajv/package.json' exists according to earlier cached lookups.", + "File '/node_modules/ajv.js' does not exist.", + "File '/node_modules/ajv.jsx' does not exist.", + "'package.json' has 'main' field 'dist/ajv.js' that references '/node_modules/ajv/dist/ajv.js'.", + "File '/node_modules/ajv/dist/ajv.js' exists - use it as a name resolution result.", + "======== Module name 'ajv' was successfully resolved to '/node_modules/ajv/dist/ajv.js' with Package ID 'ajv/dist/ajv.js@8.12.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/ajv/dist/compile/codegen/code.d.ts", + "/node_modules/ajv/dist/compile/codegen/scope.d.ts", + "/node_modules/ajv/dist/compile/codegen/index.d.ts", + "/node_modules/ajv/dist/compile/rules.d.ts", + "/node_modules/ajv/dist/compile/util.d.ts", + "/node_modules/ajv/dist/compile/validate/subschema.d.ts", + "/node_modules/ajv/dist/compile/errors.d.ts", + "/node_modules/ajv/dist/compile/validate/index.d.ts", + "/node_modules/ajv/dist/compile/validate/dataType.d.ts", + "/node_modules/ajv/dist/vocabularies/applicator/additionalItems.d.ts", + "/node_modules/ajv/dist/vocabularies/applicator/items2020.d.ts", + "/node_modules/ajv/dist/vocabularies/applicator/contains.d.ts", + "/node_modules/ajv/dist/vocabularies/applicator/dependencies.d.ts", + "/node_modules/ajv/dist/vocabularies/applicator/propertyNames.d.ts", + "/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.d.ts", + "/node_modules/ajv/dist/vocabularies/applicator/not.d.ts", + "/node_modules/ajv/dist/vocabularies/applicator/anyOf.d.ts", + "/node_modules/ajv/dist/vocabularies/applicator/oneOf.d.ts", + "/node_modules/ajv/dist/vocabularies/applicator/if.d.ts", + "/node_modules/ajv/dist/vocabularies/applicator/index.d.ts", + "/node_modules/ajv/dist/vocabularies/validation/limitNumber.d.ts", + "/node_modules/ajv/dist/vocabularies/validation/multipleOf.d.ts", + "/node_modules/ajv/dist/vocabularies/validation/pattern.d.ts", + "/node_modules/ajv/dist/vocabularies/validation/required.d.ts", + "/node_modules/ajv/dist/vocabularies/validation/uniqueItems.d.ts", + "/node_modules/ajv/dist/vocabularies/validation/const.d.ts", + "/node_modules/ajv/dist/vocabularies/validation/enum.d.ts", + "/node_modules/ajv/dist/vocabularies/validation/index.d.ts", + "/node_modules/ajv/dist/vocabularies/format/format.d.ts", + "/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.d.ts", + "/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.d.ts", + "/node_modules/ajv/dist/vocabularies/validation/dependentRequired.d.ts", + "/node_modules/ajv/dist/vocabularies/discriminator/types.d.ts", + "/node_modules/ajv/dist/vocabularies/discriminator/index.d.ts", + "/node_modules/ajv/dist/vocabularies/errors.d.ts", + "/node_modules/ajv/dist/types/json-schema.d.ts", + "/node_modules/ajv/dist/types/jtd-schema.d.ts", + "/node_modules/ajv/dist/runtime/validation_error.d.ts", + "/node_modules/ajv/dist/compile/ref_error.d.ts", + "/node_modules/ajv/dist/core.d.ts", + "/node_modules/ajv/dist/compile/resolve.d.ts", + "/node_modules/ajv/dist/compile/index.d.ts", + "/node_modules/ajv/dist/types/index.d.ts", + "/node_modules/ajv/dist/ajv.d.ts" + ] + }, + "node16-esm": { + "name": ".", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/ajv/dist/ajv.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/ajv/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'ajv' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'ajv' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/ajv/package.json' exists according to earlier cached lookups.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'dist/ajv.d.ts' that references '/node_modules/ajv/dist/ajv.d.ts'.", + "File '/node_modules/ajv/dist/ajv.d.ts' exists - use it as a name resolution result.", + "======== Module name 'ajv' was successfully resolved to '/node_modules/ajv/dist/ajv.d.ts' with Package ID 'ajv/dist/ajv.d.ts@8.12.0'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/ajv/dist/ajv.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/ajv/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'ajv' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'ajv' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/ajv/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'dist/ajv.js' that references '/node_modules/ajv/dist/ajv.js'.", + "File '/node_modules/ajv/dist/ajv.js' exists - use it as a name resolution result.", + "File '/node_modules/ajv/dist/ajv.js' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/ajv/dist/ajv.js', target file types: TypeScript.", + "File name '/node_modules/ajv/dist/ajv.js' has a '.js' extension - stripping it.", + "File '/node_modules/ajv/dist/ajv.ts' does not exist.", + "File '/node_modules/ajv/dist/ajv.tsx' does not exist.", + "File '/node_modules/ajv/dist/ajv.js.ts' does not exist.", + "File '/node_modules/ajv/dist/ajv.js.tsx' does not exist.", + "Directory '/node_modules/ajv/dist/ajv.js' does not exist, skipping all lookups in it.", + "File name '/node_modules/ajv/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/ajv/index.ts' does not exist.", + "File '/node_modules/ajv/index.tsx' does not exist.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/ajv/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'dist/ajv.js' that references '/node_modules/ajv/dist/ajv.js'.", + "File '/node_modules/ajv/dist/ajv.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'ajv' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/ajv/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'dist/ajv.js' that references '/node_modules/ajv/dist/ajv.js'.", + "File '/node_modules/ajv/dist/ajv.js' exists - use it as a name resolution result.", + "File '/node_modules/ajv/dist/ajv.js' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/ajv/dist/ajv.js', target file types: TypeScript.", + "File name '/node_modules/ajv/dist/ajv.js' has a '.js' extension - stripping it.", + "File '/node_modules/ajv/dist/ajv.ts' does not exist.", + "File '/node_modules/ajv/dist/ajv.tsx' does not exist.", + "File '/node_modules/ajv/dist/ajv.js.ts' does not exist.", + "File '/node_modules/ajv/dist/ajv.js.tsx' does not exist.", + "Directory '/node_modules/ajv/dist/ajv.js' does not exist, skipping all lookups in it.", + "File name '/node_modules/ajv/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/ajv/index.ts' does not exist.", + "File '/node_modules/ajv/index.tsx' does not exist.", + "======== Module name 'ajv' was successfully resolved to '/node_modules/ajv/dist/ajv.js' with Package ID 'ajv/dist/ajv.js@8.12.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/ajv/dist/compile/codegen/code.d.ts", + "/node_modules/ajv/dist/compile/codegen/scope.d.ts", + "/node_modules/ajv/dist/compile/codegen/index.d.ts", + "/node_modules/ajv/dist/compile/rules.d.ts", + "/node_modules/ajv/dist/compile/util.d.ts", + "/node_modules/ajv/dist/compile/validate/subschema.d.ts", + "/node_modules/ajv/dist/compile/errors.d.ts", + "/node_modules/ajv/dist/compile/validate/index.d.ts", + "/node_modules/ajv/dist/compile/validate/dataType.d.ts", + "/node_modules/ajv/dist/vocabularies/applicator/additionalItems.d.ts", + "/node_modules/ajv/dist/vocabularies/applicator/items2020.d.ts", + "/node_modules/ajv/dist/vocabularies/applicator/contains.d.ts", + "/node_modules/ajv/dist/vocabularies/applicator/dependencies.d.ts", + "/node_modules/ajv/dist/vocabularies/applicator/propertyNames.d.ts", + "/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.d.ts", + "/node_modules/ajv/dist/vocabularies/applicator/not.d.ts", + "/node_modules/ajv/dist/vocabularies/applicator/anyOf.d.ts", + "/node_modules/ajv/dist/vocabularies/applicator/oneOf.d.ts", + "/node_modules/ajv/dist/vocabularies/applicator/if.d.ts", + "/node_modules/ajv/dist/vocabularies/applicator/index.d.ts", + "/node_modules/ajv/dist/vocabularies/validation/limitNumber.d.ts", + "/node_modules/ajv/dist/vocabularies/validation/multipleOf.d.ts", + "/node_modules/ajv/dist/vocabularies/validation/pattern.d.ts", + "/node_modules/ajv/dist/vocabularies/validation/required.d.ts", + "/node_modules/ajv/dist/vocabularies/validation/uniqueItems.d.ts", + "/node_modules/ajv/dist/vocabularies/validation/const.d.ts", + "/node_modules/ajv/dist/vocabularies/validation/enum.d.ts", + "/node_modules/ajv/dist/vocabularies/validation/index.d.ts", + "/node_modules/ajv/dist/vocabularies/format/format.d.ts", + "/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.d.ts", + "/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.d.ts", + "/node_modules/ajv/dist/vocabularies/validation/dependentRequired.d.ts", + "/node_modules/ajv/dist/vocabularies/discriminator/types.d.ts", + "/node_modules/ajv/dist/vocabularies/discriminator/index.d.ts", + "/node_modules/ajv/dist/vocabularies/errors.d.ts", + "/node_modules/ajv/dist/types/json-schema.d.ts", + "/node_modules/ajv/dist/types/jtd-schema.d.ts", + "/node_modules/ajv/dist/runtime/validation_error.d.ts", + "/node_modules/ajv/dist/compile/ref_error.d.ts", + "/node_modules/ajv/dist/core.d.ts", + "/node_modules/ajv/dist/compile/resolve.d.ts", + "/node_modules/ajv/dist/compile/index.d.ts", + "/node_modules/ajv/dist/types/index.d.ts", + "/node_modules/ajv/dist/ajv.d.ts" + ] + }, + "bundler": { + "name": ".", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/ajv/dist/ajv.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'ajv' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist.", + "Loading module 'ajv' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/ajv/package.json'.", + "File '/node_modules/ajv.ts' does not exist.", + "File '/node_modules/ajv.tsx' does not exist.", + "File '/node_modules/ajv.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'dist/ajv.d.ts' that references '/node_modules/ajv/dist/ajv.d.ts'.", + "File '/node_modules/ajv/dist/ajv.d.ts' exists - use it as a name resolution result.", + "======== Module name 'ajv' was successfully resolved to '/node_modules/ajv/dist/ajv.d.ts' with Package ID 'ajv/dist/ajv.d.ts@8.12.0'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/ajv/dist/ajv.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'ajv' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist.", + "Loading module 'ajv' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/ajv/package.json'.", + "File '/node_modules/ajv.ts' does not exist.", + "File '/node_modules/ajv.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'dist/ajv.js' that references '/node_modules/ajv/dist/ajv.js'.", + "File '/node_modules/ajv/dist/ajv.js' exists - use it as a name resolution result.", + "File '/node_modules/ajv/dist/ajv.js' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/ajv/dist/ajv.js', target file types: TypeScript.", + "File name '/node_modules/ajv/dist/ajv.js' has a '.js' extension - stripping it.", + "File '/node_modules/ajv/dist/ajv.ts' does not exist.", + "File '/node_modules/ajv/dist/ajv.tsx' does not exist.", + "File '/node_modules/ajv/dist/ajv.js.ts' does not exist.", + "File '/node_modules/ajv/dist/ajv.js.tsx' does not exist.", + "Directory '/node_modules/ajv/dist/ajv.js' does not exist, skipping all lookups in it.", + "File '/node_modules/ajv/index.ts' does not exist.", + "File '/node_modules/ajv/index.tsx' does not exist.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/ajv/package.json' exists according to earlier cached lookups.", + "File '/node_modules/ajv.js' does not exist.", + "File '/node_modules/ajv.jsx' does not exist.", + "'package.json' has 'main' field 'dist/ajv.js' that references '/node_modules/ajv/dist/ajv.js'.", + "File '/node_modules/ajv/dist/ajv.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'ajv' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/ajv/package.json' exists according to earlier cached lookups.", + "File '/node_modules/ajv.ts' does not exist.", + "File '/node_modules/ajv.tsx' does not exist.", + "'package.json' has 'main' field 'dist/ajv.js' that references '/node_modules/ajv/dist/ajv.js'.", + "File '/node_modules/ajv/dist/ajv.js' exists - use it as a name resolution result.", + "File '/node_modules/ajv/dist/ajv.js' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/ajv/dist/ajv.js', target file types: TypeScript.", + "File name '/node_modules/ajv/dist/ajv.js' has a '.js' extension - stripping it.", + "File '/node_modules/ajv/dist/ajv.ts' does not exist.", + "File '/node_modules/ajv/dist/ajv.tsx' does not exist.", + "File '/node_modules/ajv/dist/ajv.js.ts' does not exist.", + "File '/node_modules/ajv/dist/ajv.js.tsx' does not exist.", + "Directory '/node_modules/ajv/dist/ajv.js' does not exist, skipping all lookups in it.", + "File '/node_modules/ajv/index.ts' does not exist.", + "File '/node_modules/ajv/index.tsx' does not exist.", + "======== Module name 'ajv' was successfully resolved to '/node_modules/ajv/dist/ajv.js' with Package ID 'ajv/dist/ajv.js@8.12.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/ajv/dist/compile/codegen/code.d.ts", + "/node_modules/ajv/dist/compile/codegen/scope.d.ts", + "/node_modules/ajv/dist/compile/codegen/index.d.ts", + "/node_modules/ajv/dist/compile/rules.d.ts", + "/node_modules/ajv/dist/compile/util.d.ts", + "/node_modules/ajv/dist/compile/validate/subschema.d.ts", + "/node_modules/ajv/dist/compile/errors.d.ts", + "/node_modules/ajv/dist/compile/validate/index.d.ts", + "/node_modules/ajv/dist/compile/validate/dataType.d.ts", + "/node_modules/ajv/dist/vocabularies/applicator/additionalItems.d.ts", + "/node_modules/ajv/dist/vocabularies/applicator/items2020.d.ts", + "/node_modules/ajv/dist/vocabularies/applicator/contains.d.ts", + "/node_modules/ajv/dist/vocabularies/applicator/dependencies.d.ts", + "/node_modules/ajv/dist/vocabularies/applicator/propertyNames.d.ts", + "/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.d.ts", + "/node_modules/ajv/dist/vocabularies/applicator/not.d.ts", + "/node_modules/ajv/dist/vocabularies/applicator/anyOf.d.ts", + "/node_modules/ajv/dist/vocabularies/applicator/oneOf.d.ts", + "/node_modules/ajv/dist/vocabularies/applicator/if.d.ts", + "/node_modules/ajv/dist/vocabularies/applicator/index.d.ts", + "/node_modules/ajv/dist/vocabularies/validation/limitNumber.d.ts", + "/node_modules/ajv/dist/vocabularies/validation/multipleOf.d.ts", + "/node_modules/ajv/dist/vocabularies/validation/pattern.d.ts", + "/node_modules/ajv/dist/vocabularies/validation/required.d.ts", + "/node_modules/ajv/dist/vocabularies/validation/uniqueItems.d.ts", + "/node_modules/ajv/dist/vocabularies/validation/const.d.ts", + "/node_modules/ajv/dist/vocabularies/validation/enum.d.ts", + "/node_modules/ajv/dist/vocabularies/validation/index.d.ts", + "/node_modules/ajv/dist/vocabularies/format/format.d.ts", + "/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.d.ts", + "/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.d.ts", + "/node_modules/ajv/dist/vocabularies/validation/dependentRequired.d.ts", + "/node_modules/ajv/dist/vocabularies/discriminator/types.d.ts", + "/node_modules/ajv/dist/vocabularies/discriminator/index.d.ts", + "/node_modules/ajv/dist/vocabularies/errors.d.ts", + "/node_modules/ajv/dist/types/json-schema.d.ts", + "/node_modules/ajv/dist/types/jtd-schema.d.ts", + "/node_modules/ajv/dist/runtime/validation_error.d.ts", + "/node_modules/ajv/dist/compile/ref_error.d.ts", + "/node_modules/ajv/dist/core.d.ts", + "/node_modules/ajv/dist/compile/resolve.d.ts", + "/node_modules/ajv/dist/compile/index.d.ts", + "/node_modules/ajv/dist/types/index.d.ts", + "/node_modules/ajv/dist/ajv.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + } + }, + "problems": [] +} diff --git a/packages/core/test/snapshots/ajv@8.12.0.tgz.md b/packages/core/test/snapshots/ajv@8.12.0.tgz.md deleted file mode 100644 index b5ae95a..0000000 --- a/packages/core/test/snapshots/ajv@8.12.0.tgz.md +++ /dev/null @@ -1,7 +0,0 @@ -# ajv@8.12.0.tgz - -## Problems - -```json -[] -``` \ No newline at end of file diff --git a/packages/core/test/snapshots/astring@1.8.6.tgz.json b/packages/core/test/snapshots/astring@1.8.6.tgz.json new file mode 100644 index 0000000..34799f4 --- /dev/null +++ b/packages/core/test/snapshots/astring@1.8.6.tgz.json @@ -0,0 +1,337 @@ +{ + "packageName": "astring", + "packageVersion": "1.8.6", + "types": { + "kind": "included" + }, + "buildTools": {}, + "entrypoints": { + ".": { + "subpath": ".", + "resolutions": { + "node10": { + "name": ".", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/astring/astring.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'astring' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'astring' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/astring/package.json'.", + "File '/node_modules/astring.ts' does not exist.", + "File '/node_modules/astring.tsx' does not exist.", + "File '/node_modules/astring.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field './astring.d.ts' that references '/node_modules/astring/astring.d.ts'.", + "File '/node_modules/astring/astring.d.ts' exists - use it as a name resolution result.", + "======== Module name 'astring' was successfully resolved to '/node_modules/astring/astring.d.ts' with Package ID 'astring/astring.d.ts@1.8.6'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/astring/dist/astring.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'astring' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'astring' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/astring/package.json'.", + "File '/node_modules/astring.ts' does not exist.", + "File '/node_modules/astring.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field './dist/astring.js' that references '/node_modules/astring/dist/astring.js'.", + "File '/node_modules/astring/dist/astring.js' exists - use it as a name resolution result.", + "File '/node_modules/astring/dist/astring.js' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/astring/dist/astring.js', target file types: TypeScript.", + "File name '/node_modules/astring/dist/astring.js' has a '.js' extension - stripping it.", + "File '/node_modules/astring/dist/astring.ts' does not exist.", + "File '/node_modules/astring/dist/astring.tsx' does not exist.", + "File '/node_modules/astring/dist/astring.js.ts' does not exist.", + "File '/node_modules/astring/dist/astring.js.tsx' does not exist.", + "Directory '/node_modules/astring/dist/astring.js' does not exist, skipping all lookups in it.", + "File '/node_modules/astring/index.ts' does not exist.", + "File '/node_modules/astring/index.tsx' does not exist.", + "Loading module 'astring' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/astring/package.json' exists according to earlier cached lookups.", + "File '/node_modules/astring.js' does not exist.", + "File '/node_modules/astring.jsx' does not exist.", + "'package.json' has 'main' field './dist/astring.js' that references '/node_modules/astring/dist/astring.js'.", + "File '/node_modules/astring/dist/astring.js' exists - use it as a name resolution result.", + "======== Module name 'astring' was successfully resolved to '/node_modules/astring/dist/astring.js' with Package ID 'astring/dist/astring.js@1.8.6'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/astring/astring.d.ts" + ] + }, + "node16-cjs": { + "name": ".", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/astring/astring.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/astring/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'astring' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist.", + "Loading module 'astring' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/astring/package.json'.", + "Entering conditional exports.", + "Matched 'exports' condition 'types'.", + "Using 'exports' subpath '.' with target './astring.d.ts'.", + "File '/node_modules/astring/astring.d.ts' exists - use it as a name resolution result.", + "Resolved under condition 'types'.", + "Exiting conditional exports.", + "======== Module name 'astring' was successfully resolved to '/node_modules/astring/astring.d.ts' with Package ID 'astring/astring.d.ts@1.8.6'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/astring/dist/astring.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/astring/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'astring' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist.", + "Loading module 'astring' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/astring/package.json'.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Saw non-matching condition 'import'.", + "Matched 'exports' condition 'require'.", + "Using 'exports' subpath '.' with target './dist/astring.js'.", + "File name '/node_modules/astring/dist/astring.js' has a '.js' extension - stripping it.", + "File '/node_modules/astring/dist/astring.ts' does not exist.", + "File '/node_modules/astring/dist/astring.tsx' does not exist.", + "Failed to resolve under condition 'require'.", + "Saw non-matching condition 'browser'.", + "Exiting conditional exports.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/astring/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Saw non-matching condition 'import'.", + "Matched 'exports' condition 'require'.", + "Using 'exports' subpath '.' with target './dist/astring.js'.", + "File name '/node_modules/astring/dist/astring.js' has a '.js' extension - stripping it.", + "File '/node_modules/astring/dist/astring.js' exists - use it as a name resolution result.", + "Resolved under condition 'require'.", + "Exiting conditional exports.", + "======== Module name 'astring' was successfully resolved to '/node_modules/astring/dist/astring.js' with Package ID 'astring/dist/astring.js@1.8.6'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/astring/astring.d.ts" + ] + }, + "node16-esm": { + "name": ".", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/astring/astring.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/astring/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'astring' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'astring' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/astring/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Matched 'exports' condition 'types'.", + "Using 'exports' subpath '.' with target './astring.d.ts'.", + "File '/node_modules/astring/astring.d.ts' exists - use it as a name resolution result.", + "Resolved under condition 'types'.", + "Exiting conditional exports.", + "======== Module name 'astring' was successfully resolved to '/node_modules/astring/astring.d.ts' with Package ID 'astring/astring.d.ts@1.8.6'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/astring/dist/astring.mjs", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "extension", + "reasonFileName": "/node_modules/astring/dist/astring.mjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'astring' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'astring' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/astring/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Matched 'exports' condition 'import'.", + "Using 'exports' subpath '.' with target './dist/astring.mjs'.", + "File name '/node_modules/astring/dist/astring.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/astring/dist/astring.mts' does not exist.", + "Failed to resolve under condition 'import'.", + "Saw non-matching condition 'require'.", + "Saw non-matching condition 'browser'.", + "Exiting conditional exports.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/astring/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Matched 'exports' condition 'import'.", + "Using 'exports' subpath '.' with target './dist/astring.mjs'.", + "File name '/node_modules/astring/dist/astring.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/astring/dist/astring.mjs' exists - use it as a name resolution result.", + "Resolved under condition 'import'.", + "Exiting conditional exports.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'astring' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/astring/package.json' exists according to earlier cached lookups.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field './dist/astring.js' that references '/node_modules/astring/dist/astring.js'.", + "File '/node_modules/astring/dist/astring.js' exists - use it as a name resolution result.", + "File '/node_modules/astring/dist/astring.js' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/astring/dist/astring.js', target file types: TypeScript.", + "File name '/node_modules/astring/dist/astring.js' has a '.js' extension - stripping it.", + "File '/node_modules/astring/dist/astring.ts' does not exist.", + "File '/node_modules/astring/dist/astring.tsx' does not exist.", + "File '/node_modules/astring/dist/astring.js.ts' does not exist.", + "File '/node_modules/astring/dist/astring.js.tsx' does not exist.", + "Directory '/node_modules/astring/dist/astring.js' does not exist, skipping all lookups in it.", + "======== Module name 'astring' was successfully resolved to '/node_modules/astring/dist/astring.mjs' with Package ID 'astring/dist/astring.mjs@1.8.6'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/astring/astring.d.ts" + ] + }, + "bundler": { + "name": ".", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/astring/astring.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'astring' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist.", + "Loading module 'astring' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/astring/package.json'.", + "Entering conditional exports.", + "Matched 'exports' condition 'types'.", + "Using 'exports' subpath '.' with target './astring.d.ts'.", + "File '/node_modules/astring/astring.d.ts' exists - use it as a name resolution result.", + "Resolved under condition 'types'.", + "Exiting conditional exports.", + "======== Module name 'astring' was successfully resolved to '/node_modules/astring/astring.d.ts' with Package ID 'astring/astring.d.ts@1.8.6'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/astring/dist/astring.mjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'astring' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist.", + "Loading module 'astring' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/astring/package.json'.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Matched 'exports' condition 'import'.", + "Using 'exports' subpath '.' with target './dist/astring.mjs'.", + "File name '/node_modules/astring/dist/astring.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/astring/dist/astring.mts' does not exist.", + "Failed to resolve under condition 'import'.", + "Saw non-matching condition 'require'.", + "Saw non-matching condition 'browser'.", + "Exiting conditional exports.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/astring/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Matched 'exports' condition 'import'.", + "Using 'exports' subpath '.' with target './dist/astring.mjs'.", + "File name '/node_modules/astring/dist/astring.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/astring/dist/astring.mjs' exists - use it as a name resolution result.", + "Resolved under condition 'import'.", + "Exiting conditional exports.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'astring' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/astring/package.json' exists according to earlier cached lookups.", + "File '/node_modules/astring.ts' does not exist.", + "File '/node_modules/astring.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field './dist/astring.js' that references '/node_modules/astring/dist/astring.js'.", + "File '/node_modules/astring/dist/astring.js' exists - use it as a name resolution result.", + "File '/node_modules/astring/dist/astring.js' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/astring/dist/astring.js', target file types: TypeScript.", + "File name '/node_modules/astring/dist/astring.js' has a '.js' extension - stripping it.", + "File '/node_modules/astring/dist/astring.ts' does not exist.", + "File '/node_modules/astring/dist/astring.tsx' does not exist.", + "File '/node_modules/astring/dist/astring.js.ts' does not exist.", + "File '/node_modules/astring/dist/astring.js.tsx' does not exist.", + "Directory '/node_modules/astring/dist/astring.js' does not exist, skipping all lookups in it.", + "File '/node_modules/astring/index.ts' does not exist.", + "File '/node_modules/astring/index.tsx' does not exist.", + "======== Module name 'astring' was successfully resolved to '/node_modules/astring/dist/astring.mjs' with Package ID 'astring/dist/astring.mjs@1.8.6'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/astring/astring.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + } + }, + "problems": [ + { + "kind": "FalseCJS", + "entrypoint": ".", + "resolutionKind": "node16-esm" + } + ] +} diff --git a/packages/core/test/snapshots/astring@1.8.6.tgz.md b/packages/core/test/snapshots/astring@1.8.6.tgz.md deleted file mode 100644 index ece7f99..0000000 --- a/packages/core/test/snapshots/astring@1.8.6.tgz.md +++ /dev/null @@ -1,13 +0,0 @@ -# astring@1.8.6.tgz - -## Problems - -```json -[ - { - "kind": "FalseCJS", - "entrypoint": ".", - "resolutionKind": "node16-esm" - } -] -``` \ No newline at end of file diff --git a/packages/core/test/snapshots/axios@1.4.0.tgz.json b/packages/core/test/snapshots/axios@1.4.0.tgz.json new file mode 100644 index 0000000..0590c39 --- /dev/null +++ b/packages/core/test/snapshots/axios@1.4.0.tgz.json @@ -0,0 +1,1985 @@ +{ + "packageName": "axios", + "packageVersion": "1.4.0", + "types": { + "kind": "included" + }, + "buildTools": { + "typescript": "^4.8.4", + "rollup": "^2.67.0" + }, + "entrypoints": { + ".": { + "subpath": ".", + "resolutions": { + "node10": { + "name": ".", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/axios/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'axios' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'axios' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/axios/package.json'.", + "File '/node_modules/axios.ts' does not exist.", + "File '/node_modules/axios.tsx' does not exist.", + "File '/node_modules/axios.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'typings' field './index.d.ts' that references '/node_modules/axios/index.d.ts'.", + "File '/node_modules/axios/index.d.ts' exists - use it as a name resolution result.", + "======== Module name 'axios' was successfully resolved to '/node_modules/axios/index.d.ts' with Package ID 'axios/index.d.ts@1.4.0'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/axios/index.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'axios' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'axios' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/axios/package.json'.", + "File '/node_modules/axios.ts' does not exist.", + "File '/node_modules/axios.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'index.js' that references '/node_modules/axios/index.js'.", + "File '/node_modules/axios/index.js' exists - use it as a name resolution result.", + "File '/node_modules/axios/index.js' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/axios/index.js', target file types: TypeScript.", + "File name '/node_modules/axios/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/axios/index.ts' does not exist.", + "File '/node_modules/axios/index.tsx' does not exist.", + "File '/node_modules/axios/index.js.ts' does not exist.", + "File '/node_modules/axios/index.js.tsx' does not exist.", + "Directory '/node_modules/axios/index.js' does not exist, skipping all lookups in it.", + "File '/node_modules/axios/index.ts' does not exist.", + "File '/node_modules/axios/index.tsx' does not exist.", + "Loading module 'axios' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "File '/node_modules/axios.js' does not exist.", + "File '/node_modules/axios.jsx' does not exist.", + "'package.json' has 'main' field 'index.js' that references '/node_modules/axios/index.js'.", + "File '/node_modules/axios/index.js' exists - use it as a name resolution result.", + "======== Module name 'axios' was successfully resolved to '/node_modules/axios/index.js' with Package ID 'axios/index.js@1.4.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/axios/index.d.ts" + ] + }, + "node16-cjs": { + "name": ".", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/axios/index.d.cts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "extension", + "reasonFileName": "/node_modules/axios/index.d.cts" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'axios' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist.", + "Loading module 'axios' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/axios/package.json'.", + "Entering conditional exports.", + "Matched 'exports' condition 'types'.", + "Entering conditional exports.", + "Matched 'exports' condition 'require'.", + "Using 'exports' subpath '.' with target './index.d.cts'.", + "File '/node_modules/axios/index.d.cts' exists - use it as a name resolution result.", + "Resolved under condition 'require'.", + "Exiting conditional exports.", + "Resolved under condition 'types'.", + "Exiting conditional exports.", + "======== Module name 'axios' was successfully resolved to '/node_modules/axios/index.d.cts' with Package ID 'axios/index.d.cts@1.4.0'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/axios/dist/node/axios.cjs", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "extension", + "reasonFileName": "/node_modules/axios/dist/node/axios.cjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'axios' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist.", + "Loading module 'axios' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/axios/package.json'.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Saw non-matching condition 'browser'.", + "Matched 'exports' condition 'default'.", + "Entering conditional exports.", + "Matched 'exports' condition 'require'.", + "Using 'exports' subpath '.' with target './dist/node/axios.cjs'.", + "File name '/node_modules/axios/dist/node/axios.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/axios/dist/node/axios.cts' does not exist.", + "Failed to resolve under condition 'require'.", + "Matched 'exports' condition 'default'.", + "Using 'exports' subpath '.' with target './index.js'.", + "File name '/node_modules/axios/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/axios/index.ts' does not exist.", + "File '/node_modules/axios/index.tsx' does not exist.", + "Failed to resolve under condition 'default'.", + "Exiting conditional exports.", + "Failed to resolve under condition 'default'.", + "Exiting conditional exports.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Saw non-matching condition 'browser'.", + "Matched 'exports' condition 'default'.", + "Entering conditional exports.", + "Matched 'exports' condition 'require'.", + "Using 'exports' subpath '.' with target './dist/node/axios.cjs'.", + "File name '/node_modules/axios/dist/node/axios.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/axios/dist/node/axios.cjs' exists - use it as a name resolution result.", + "Resolved under condition 'require'.", + "Exiting conditional exports.", + "Resolved under condition 'default'.", + "Exiting conditional exports.", + "======== Module name 'axios' was successfully resolved to '/node_modules/axios/dist/node/axios.cjs' with Package ID 'axios/dist/node/axios.cjs@1.4.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/axios/index.d.cts" + ] + }, + "node16-esm": { + "name": ".", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/axios/index.d.ts", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/axios/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'axios' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'axios' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Matched 'exports' condition 'types'.", + "Entering conditional exports.", + "Saw non-matching condition 'require'.", + "Matched 'exports' condition 'default'.", + "Using 'exports' subpath '.' with target './index.d.ts'.", + "File '/node_modules/axios/index.d.ts' exists - use it as a name resolution result.", + "Resolved under condition 'default'.", + "Exiting conditional exports.", + "Resolved under condition 'types'.", + "Exiting conditional exports.", + "======== Module name 'axios' was successfully resolved to '/node_modules/axios/index.d.ts' with Package ID 'axios/index.d.ts@1.4.0'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/axios/index.js", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/axios/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'axios' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'axios' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Saw non-matching condition 'browser'.", + "Matched 'exports' condition 'default'.", + "Entering conditional exports.", + "Saw non-matching condition 'require'.", + "Matched 'exports' condition 'default'.", + "Using 'exports' subpath '.' with target './index.js'.", + "File name '/node_modules/axios/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/axios/index.ts' does not exist.", + "File '/node_modules/axios/index.tsx' does not exist.", + "Failed to resolve under condition 'default'.", + "Exiting conditional exports.", + "Failed to resolve under condition 'default'.", + "Exiting conditional exports.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Saw non-matching condition 'browser'.", + "Matched 'exports' condition 'default'.", + "Entering conditional exports.", + "Saw non-matching condition 'require'.", + "Matched 'exports' condition 'default'.", + "Using 'exports' subpath '.' with target './index.js'.", + "File name '/node_modules/axios/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/axios/index.js' exists - use it as a name resolution result.", + "Resolved under condition 'default'.", + "Exiting conditional exports.", + "Resolved under condition 'default'.", + "Exiting conditional exports.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'axios' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'index.js' that references '/node_modules/axios/index.js'.", + "File '/node_modules/axios/index.js' exists - use it as a name resolution result.", + "File '/node_modules/axios/index.js' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/axios/index.js', target file types: TypeScript.", + "File name '/node_modules/axios/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/axios/index.ts' does not exist.", + "File '/node_modules/axios/index.tsx' does not exist.", + "Directory '/node_modules/axios/index.js' does not exist, skipping all lookups in it.", + "======== Module name 'axios' was successfully resolved to '/node_modules/axios/index.js' with Package ID 'axios/index.js@1.4.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/axios/index.d.ts" + ] + }, + "bundler": { + "name": ".", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/axios/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'axios' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist.", + "Loading module 'axios' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/axios/package.json'.", + "Entering conditional exports.", + "Matched 'exports' condition 'types'.", + "Entering conditional exports.", + "Saw non-matching condition 'require'.", + "Matched 'exports' condition 'default'.", + "Using 'exports' subpath '.' with target './index.d.ts'.", + "File '/node_modules/axios/index.d.ts' exists - use it as a name resolution result.", + "Resolved under condition 'default'.", + "Exiting conditional exports.", + "Resolved under condition 'types'.", + "Exiting conditional exports.", + "======== Module name 'axios' was successfully resolved to '/node_modules/axios/index.d.ts' with Package ID 'axios/index.d.ts@1.4.0'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/axios/index.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'axios' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist.", + "Loading module 'axios' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/axios/package.json'.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Saw non-matching condition 'browser'.", + "Matched 'exports' condition 'default'.", + "Entering conditional exports.", + "Saw non-matching condition 'require'.", + "Matched 'exports' condition 'default'.", + "Using 'exports' subpath '.' with target './index.js'.", + "File name '/node_modules/axios/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/axios/index.ts' does not exist.", + "File '/node_modules/axios/index.tsx' does not exist.", + "Failed to resolve under condition 'default'.", + "Exiting conditional exports.", + "Failed to resolve under condition 'default'.", + "Exiting conditional exports.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Saw non-matching condition 'browser'.", + "Matched 'exports' condition 'default'.", + "Entering conditional exports.", + "Saw non-matching condition 'require'.", + "Matched 'exports' condition 'default'.", + "Using 'exports' subpath '.' with target './index.js'.", + "File name '/node_modules/axios/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/axios/index.js' exists - use it as a name resolution result.", + "Resolved under condition 'default'.", + "Exiting conditional exports.", + "Resolved under condition 'default'.", + "Exiting conditional exports.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'axios' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "File '/node_modules/axios.ts' does not exist.", + "File '/node_modules/axios.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'index.js' that references '/node_modules/axios/index.js'.", + "File '/node_modules/axios/index.js' exists - use it as a name resolution result.", + "File '/node_modules/axios/index.js' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/axios/index.js', target file types: TypeScript.", + "File name '/node_modules/axios/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/axios/index.ts' does not exist.", + "File '/node_modules/axios/index.tsx' does not exist.", + "File '/node_modules/axios/index.js.ts' does not exist.", + "File '/node_modules/axios/index.js.tsx' does not exist.", + "Directory '/node_modules/axios/index.js' does not exist, skipping all lookups in it.", + "File '/node_modules/axios/index.ts' does not exist.", + "File '/node_modules/axios/index.tsx' does not exist.", + "======== Module name 'axios' was successfully resolved to '/node_modules/axios/index.js' with Package ID 'axios/index.js@1.4.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/axios/index.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + }, + "./unsafe/*": { + "subpath": "./unsafe/*", + "resolutions": { + "node10": { + "name": "./unsafe/*", + "resolutionKind": "node10", + "isWildcard": true + }, + "node16-cjs": { + "name": "./unsafe/*", + "resolutionKind": "node16-cjs", + "isWildcard": true + }, + "node16-esm": { + "name": "./unsafe/*", + "resolutionKind": "node16-esm", + "isWildcard": true + }, + "bundler": { + "name": "./unsafe/*", + "resolutionKind": "bundler", + "isWildcard": true + } + }, + "hasTypes": false, + "isWildcard": true + }, + "./unsafe/core/settle.js": { + "subpath": "./unsafe/core/settle.js", + "resolutions": { + "node10": { + "name": "./unsafe/core/settle.js", + "resolutionKind": "node10" + }, + "node16-cjs": { + "name": "./unsafe/core/settle.js", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/axios/lib/core/settle.js", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/axios/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'axios/unsafe/core/settle.js' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'axios/unsafe/core/settle.js' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './unsafe/core/settle.js' with target './lib/core/settle.js'.", + "File name '/node_modules/axios/lib/core/settle.js' has a '.js' extension - stripping it.", + "File '/node_modules/axios/lib/core/settle.ts' does not exist.", + "File '/node_modules/axios/lib/core/settle.tsx' does not exist.", + "File '/node_modules/axios/lib/core/settle.d.ts' does not exist.", + "Export specifier './unsafe/core/settle.js' does not exist in package.json scope at path '/node_modules/axios'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "File name '/node_modules/@types/axios/unsafe/core/settle.js' has a '.js' extension - stripping it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './unsafe/core/settle.js' with target './lib/core/settle.js'.", + "File name '/node_modules/axios/lib/core/settle.js' has a '.js' extension - stripping it.", + "File '/node_modules/axios/lib/core/settle.js' exists - use it as a name resolution result.", + "======== Module name 'axios/unsafe/core/settle.js' was successfully resolved to '/node_modules/axios/lib/core/settle.js' with Package ID 'axios/lib/core/settle.js@1.4.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts" + ] + }, + "node16-esm": { + "name": "./unsafe/core/settle.js", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/axios/lib/core/settle.js", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/axios/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'axios/unsafe/core/settle.js' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'axios/unsafe/core/settle.js' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './unsafe/core/settle.js' with target './lib/core/settle.js'.", + "File name '/node_modules/axios/lib/core/settle.js' has a '.js' extension - stripping it.", + "File '/node_modules/axios/lib/core/settle.ts' does not exist.", + "File '/node_modules/axios/lib/core/settle.tsx' does not exist.", + "File '/node_modules/axios/lib/core/settle.d.ts' does not exist.", + "Export specifier './unsafe/core/settle.js' does not exist in package.json scope at path '/node_modules/axios'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "File name '/node_modules/@types/axios/unsafe/core/settle.js' has a '.js' extension - stripping it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './unsafe/core/settle.js' with target './lib/core/settle.js'.", + "File name '/node_modules/axios/lib/core/settle.js' has a '.js' extension - stripping it.", + "File '/node_modules/axios/lib/core/settle.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'axios/unsafe/core/settle.js' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "'package.json' does not have a 'typesVersions' field.", + "File name '/node_modules/axios/unsafe/core/settle.js' has a '.js' extension - stripping it.", + "'package.json' has 'typings' field './index.d.ts' that references '/node_modules/axios/unsafe/core/settle.js/index.d.ts'.", + "Loading module as file / folder, candidate module location '/node_modules/axios/unsafe/core/settle.js/index.d.ts', target file types: TypeScript, Declaration.", + "File name '/node_modules/axios/unsafe/core/settle.js/index.d.ts' has a '.d.ts' extension - stripping it.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "File name '/node_modules/@types/axios/unsafe/core/settle.js' has a '.js' extension - stripping it.", + "======== Module name 'axios/unsafe/core/settle.js' was successfully resolved to '/node_modules/axios/lib/core/settle.js' with Package ID 'axios/lib/core/settle.js@1.4.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts" + ] + }, + "bundler": { + "name": "./unsafe/core/settle.js", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/axios/lib/core/settle.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'axios/unsafe/core/settle.js' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'axios/unsafe/core/settle.js' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './unsafe/core/settle.js' with target './lib/core/settle.js'.", + "File name '/node_modules/axios/lib/core/settle.js' has a '.js' extension - stripping it.", + "File '/node_modules/axios/lib/core/settle.ts' does not exist.", + "File '/node_modules/axios/lib/core/settle.tsx' does not exist.", + "File '/node_modules/axios/lib/core/settle.d.ts' does not exist.", + "Export specifier './unsafe/core/settle.js' does not exist in package.json scope at path '/node_modules/axios'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "File name '/node_modules/@types/axios/unsafe/core/settle.js' has a '.js' extension - stripping it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './unsafe/core/settle.js' with target './lib/core/settle.js'.", + "File name '/node_modules/axios/lib/core/settle.js' has a '.js' extension - stripping it.", + "File '/node_modules/axios/lib/core/settle.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'axios/unsafe/core/settle.js' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "'package.json' does not have a 'typesVersions' field.", + "File name '/node_modules/axios/unsafe/core/settle.js' has a '.js' extension - stripping it.", + "'package.json' has 'typings' field './index.d.ts' that references '/node_modules/axios/unsafe/core/settle.js/index.d.ts'.", + "Loading module as file / folder, candidate module location '/node_modules/axios/unsafe/core/settle.js/index.d.ts', target file types: TypeScript, Declaration.", + "File name '/node_modules/axios/unsafe/core/settle.js/index.d.ts' has a '.d.ts' extension - stripping it.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "File name '/node_modules/@types/axios/unsafe/core/settle.js' has a '.js' extension - stripping it.", + "======== Module name 'axios/unsafe/core/settle.js' was successfully resolved to '/node_modules/axios/lib/core/settle.js' with Package ID 'axios/lib/core/settle.js@1.4.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts" + ] + } + }, + "hasTypes": false, + "isWildcard": false + }, + "./unsafe/core/buildFullPath.js": { + "subpath": "./unsafe/core/buildFullPath.js", + "resolutions": { + "node10": { + "name": "./unsafe/core/buildFullPath.js", + "resolutionKind": "node10" + }, + "node16-cjs": { + "name": "./unsafe/core/buildFullPath.js", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/axios/lib/core/buildFullPath.js", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/axios/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'axios/unsafe/core/buildFullPath.js' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'axios/unsafe/core/buildFullPath.js' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './unsafe/core/buildFullPath.js' with target './lib/core/buildFullPath.js'.", + "File name '/node_modules/axios/lib/core/buildFullPath.js' has a '.js' extension - stripping it.", + "File '/node_modules/axios/lib/core/buildFullPath.ts' does not exist.", + "File '/node_modules/axios/lib/core/buildFullPath.tsx' does not exist.", + "File '/node_modules/axios/lib/core/buildFullPath.d.ts' does not exist.", + "Export specifier './unsafe/core/buildFullPath.js' does not exist in package.json scope at path '/node_modules/axios'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "File name '/node_modules/@types/axios/unsafe/core/buildFullPath.js' has a '.js' extension - stripping it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './unsafe/core/buildFullPath.js' with target './lib/core/buildFullPath.js'.", + "File name '/node_modules/axios/lib/core/buildFullPath.js' has a '.js' extension - stripping it.", + "File '/node_modules/axios/lib/core/buildFullPath.js' exists - use it as a name resolution result.", + "======== Module name 'axios/unsafe/core/buildFullPath.js' was successfully resolved to '/node_modules/axios/lib/core/buildFullPath.js' with Package ID 'axios/lib/core/buildFullPath.js@1.4.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts" + ] + }, + "node16-esm": { + "name": "./unsafe/core/buildFullPath.js", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/axios/lib/core/buildFullPath.js", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/axios/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'axios/unsafe/core/buildFullPath.js' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'axios/unsafe/core/buildFullPath.js' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './unsafe/core/buildFullPath.js' with target './lib/core/buildFullPath.js'.", + "File name '/node_modules/axios/lib/core/buildFullPath.js' has a '.js' extension - stripping it.", + "File '/node_modules/axios/lib/core/buildFullPath.ts' does not exist.", + "File '/node_modules/axios/lib/core/buildFullPath.tsx' does not exist.", + "File '/node_modules/axios/lib/core/buildFullPath.d.ts' does not exist.", + "Export specifier './unsafe/core/buildFullPath.js' does not exist in package.json scope at path '/node_modules/axios'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "File name '/node_modules/@types/axios/unsafe/core/buildFullPath.js' has a '.js' extension - stripping it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './unsafe/core/buildFullPath.js' with target './lib/core/buildFullPath.js'.", + "File name '/node_modules/axios/lib/core/buildFullPath.js' has a '.js' extension - stripping it.", + "File '/node_modules/axios/lib/core/buildFullPath.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'axios/unsafe/core/buildFullPath.js' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "File name '/node_modules/axios/unsafe/core/buildFullPath.js' has a '.js' extension - stripping it.", + "'package.json' has 'typings' field './index.d.ts' that references '/node_modules/axios/unsafe/core/buildFullPath.js/index.d.ts'.", + "Loading module as file / folder, candidate module location '/node_modules/axios/unsafe/core/buildFullPath.js/index.d.ts', target file types: TypeScript, Declaration.", + "File name '/node_modules/axios/unsafe/core/buildFullPath.js/index.d.ts' has a '.d.ts' extension - stripping it.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "File name '/node_modules/@types/axios/unsafe/core/buildFullPath.js' has a '.js' extension - stripping it.", + "======== Module name 'axios/unsafe/core/buildFullPath.js' was successfully resolved to '/node_modules/axios/lib/core/buildFullPath.js' with Package ID 'axios/lib/core/buildFullPath.js@1.4.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts" + ] + }, + "bundler": { + "name": "./unsafe/core/buildFullPath.js", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/axios/lib/core/buildFullPath.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'axios/unsafe/core/buildFullPath.js' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'axios/unsafe/core/buildFullPath.js' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './unsafe/core/buildFullPath.js' with target './lib/core/buildFullPath.js'.", + "File name '/node_modules/axios/lib/core/buildFullPath.js' has a '.js' extension - stripping it.", + "File '/node_modules/axios/lib/core/buildFullPath.ts' does not exist.", + "File '/node_modules/axios/lib/core/buildFullPath.tsx' does not exist.", + "File '/node_modules/axios/lib/core/buildFullPath.d.ts' does not exist.", + "Export specifier './unsafe/core/buildFullPath.js' does not exist in package.json scope at path '/node_modules/axios'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "File name '/node_modules/@types/axios/unsafe/core/buildFullPath.js' has a '.js' extension - stripping it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './unsafe/core/buildFullPath.js' with target './lib/core/buildFullPath.js'.", + "File name '/node_modules/axios/lib/core/buildFullPath.js' has a '.js' extension - stripping it.", + "File '/node_modules/axios/lib/core/buildFullPath.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'axios/unsafe/core/buildFullPath.js' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "File name '/node_modules/axios/unsafe/core/buildFullPath.js' has a '.js' extension - stripping it.", + "'package.json' has 'typings' field './index.d.ts' that references '/node_modules/axios/unsafe/core/buildFullPath.js/index.d.ts'.", + "Loading module as file / folder, candidate module location '/node_modules/axios/unsafe/core/buildFullPath.js/index.d.ts', target file types: TypeScript, Declaration.", + "File name '/node_modules/axios/unsafe/core/buildFullPath.js/index.d.ts' has a '.d.ts' extension - stripping it.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "File name '/node_modules/@types/axios/unsafe/core/buildFullPath.js' has a '.js' extension - stripping it.", + "======== Module name 'axios/unsafe/core/buildFullPath.js' was successfully resolved to '/node_modules/axios/lib/core/buildFullPath.js' with Package ID 'axios/lib/core/buildFullPath.js@1.4.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts" + ] + } + }, + "hasTypes": false, + "isWildcard": false + }, + "./unsafe/helpers/isAbsoluteURL.js": { + "subpath": "./unsafe/helpers/isAbsoluteURL.js", + "resolutions": { + "node10": { + "name": "./unsafe/helpers/isAbsoluteURL.js", + "resolutionKind": "node10" + }, + "node16-cjs": { + "name": "./unsafe/helpers/isAbsoluteURL.js", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/axios/lib/helpers/isAbsoluteURL.js", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/axios/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'axios/unsafe/helpers/isAbsoluteURL.js' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'axios/unsafe/helpers/isAbsoluteURL.js' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './unsafe/helpers/isAbsoluteURL.js' with target './lib/helpers/isAbsoluteURL.js'.", + "File name '/node_modules/axios/lib/helpers/isAbsoluteURL.js' has a '.js' extension - stripping it.", + "File '/node_modules/axios/lib/helpers/isAbsoluteURL.ts' does not exist.", + "File '/node_modules/axios/lib/helpers/isAbsoluteURL.tsx' does not exist.", + "File '/node_modules/axios/lib/helpers/isAbsoluteURL.d.ts' does not exist.", + "Export specifier './unsafe/helpers/isAbsoluteURL.js' does not exist in package.json scope at path '/node_modules/axios'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "File name '/node_modules/@types/axios/unsafe/helpers/isAbsoluteURL.js' has a '.js' extension - stripping it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './unsafe/helpers/isAbsoluteURL.js' with target './lib/helpers/isAbsoluteURL.js'.", + "File name '/node_modules/axios/lib/helpers/isAbsoluteURL.js' has a '.js' extension - stripping it.", + "File '/node_modules/axios/lib/helpers/isAbsoluteURL.js' exists - use it as a name resolution result.", + "======== Module name 'axios/unsafe/helpers/isAbsoluteURL.js' was successfully resolved to '/node_modules/axios/lib/helpers/isAbsoluteURL.js' with Package ID 'axios/lib/helpers/isAbsoluteURL.js@1.4.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts" + ] + }, + "node16-esm": { + "name": "./unsafe/helpers/isAbsoluteURL.js", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/axios/lib/helpers/isAbsoluteURL.js", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/axios/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'axios/unsafe/helpers/isAbsoluteURL.js' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'axios/unsafe/helpers/isAbsoluteURL.js' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './unsafe/helpers/isAbsoluteURL.js' with target './lib/helpers/isAbsoluteURL.js'.", + "File name '/node_modules/axios/lib/helpers/isAbsoluteURL.js' has a '.js' extension - stripping it.", + "File '/node_modules/axios/lib/helpers/isAbsoluteURL.ts' does not exist.", + "File '/node_modules/axios/lib/helpers/isAbsoluteURL.tsx' does not exist.", + "File '/node_modules/axios/lib/helpers/isAbsoluteURL.d.ts' does not exist.", + "Export specifier './unsafe/helpers/isAbsoluteURL.js' does not exist in package.json scope at path '/node_modules/axios'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "File name '/node_modules/@types/axios/unsafe/helpers/isAbsoluteURL.js' has a '.js' extension - stripping it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './unsafe/helpers/isAbsoluteURL.js' with target './lib/helpers/isAbsoluteURL.js'.", + "File name '/node_modules/axios/lib/helpers/isAbsoluteURL.js' has a '.js' extension - stripping it.", + "File '/node_modules/axios/lib/helpers/isAbsoluteURL.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'axios/unsafe/helpers/isAbsoluteURL.js' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "File name '/node_modules/axios/unsafe/helpers/isAbsoluteURL.js' has a '.js' extension - stripping it.", + "'package.json' has 'typings' field './index.d.ts' that references '/node_modules/axios/unsafe/helpers/isAbsoluteURL.js/index.d.ts'.", + "Loading module as file / folder, candidate module location '/node_modules/axios/unsafe/helpers/isAbsoluteURL.js/index.d.ts', target file types: TypeScript, Declaration.", + "File name '/node_modules/axios/unsafe/helpers/isAbsoluteURL.js/index.d.ts' has a '.d.ts' extension - stripping it.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "File name '/node_modules/@types/axios/unsafe/helpers/isAbsoluteURL.js' has a '.js' extension - stripping it.", + "======== Module name 'axios/unsafe/helpers/isAbsoluteURL.js' was successfully resolved to '/node_modules/axios/lib/helpers/isAbsoluteURL.js' with Package ID 'axios/lib/helpers/isAbsoluteURL.js@1.4.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts" + ] + }, + "bundler": { + "name": "./unsafe/helpers/isAbsoluteURL.js", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/axios/lib/helpers/isAbsoluteURL.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'axios/unsafe/helpers/isAbsoluteURL.js' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'axios/unsafe/helpers/isAbsoluteURL.js' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './unsafe/helpers/isAbsoluteURL.js' with target './lib/helpers/isAbsoluteURL.js'.", + "File name '/node_modules/axios/lib/helpers/isAbsoluteURL.js' has a '.js' extension - stripping it.", + "File '/node_modules/axios/lib/helpers/isAbsoluteURL.ts' does not exist.", + "File '/node_modules/axios/lib/helpers/isAbsoluteURL.tsx' does not exist.", + "File '/node_modules/axios/lib/helpers/isAbsoluteURL.d.ts' does not exist.", + "Export specifier './unsafe/helpers/isAbsoluteURL.js' does not exist in package.json scope at path '/node_modules/axios'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "File name '/node_modules/@types/axios/unsafe/helpers/isAbsoluteURL.js' has a '.js' extension - stripping it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './unsafe/helpers/isAbsoluteURL.js' with target './lib/helpers/isAbsoluteURL.js'.", + "File name '/node_modules/axios/lib/helpers/isAbsoluteURL.js' has a '.js' extension - stripping it.", + "File '/node_modules/axios/lib/helpers/isAbsoluteURL.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'axios/unsafe/helpers/isAbsoluteURL.js' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "File name '/node_modules/axios/unsafe/helpers/isAbsoluteURL.js' has a '.js' extension - stripping it.", + "'package.json' has 'typings' field './index.d.ts' that references '/node_modules/axios/unsafe/helpers/isAbsoluteURL.js/index.d.ts'.", + "Loading module as file / folder, candidate module location '/node_modules/axios/unsafe/helpers/isAbsoluteURL.js/index.d.ts', target file types: TypeScript, Declaration.", + "File name '/node_modules/axios/unsafe/helpers/isAbsoluteURL.js/index.d.ts' has a '.d.ts' extension - stripping it.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "File name '/node_modules/@types/axios/unsafe/helpers/isAbsoluteURL.js' has a '.js' extension - stripping it.", + "======== Module name 'axios/unsafe/helpers/isAbsoluteURL.js' was successfully resolved to '/node_modules/axios/lib/helpers/isAbsoluteURL.js' with Package ID 'axios/lib/helpers/isAbsoluteURL.js@1.4.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts" + ] + } + }, + "hasTypes": false, + "isWildcard": false + }, + "./unsafe/helpers/buildURL.js": { + "subpath": "./unsafe/helpers/buildURL.js", + "resolutions": { + "node10": { + "name": "./unsafe/helpers/buildURL.js", + "resolutionKind": "node10" + }, + "node16-cjs": { + "name": "./unsafe/helpers/buildURL.js", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/axios/lib/helpers/buildURL.js", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/axios/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'axios/unsafe/helpers/buildURL.js' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'axios/unsafe/helpers/buildURL.js' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './unsafe/helpers/buildURL.js' with target './lib/helpers/buildURL.js'.", + "File name '/node_modules/axios/lib/helpers/buildURL.js' has a '.js' extension - stripping it.", + "File '/node_modules/axios/lib/helpers/buildURL.ts' does not exist.", + "File '/node_modules/axios/lib/helpers/buildURL.tsx' does not exist.", + "File '/node_modules/axios/lib/helpers/buildURL.d.ts' does not exist.", + "Export specifier './unsafe/helpers/buildURL.js' does not exist in package.json scope at path '/node_modules/axios'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "File name '/node_modules/@types/axios/unsafe/helpers/buildURL.js' has a '.js' extension - stripping it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './unsafe/helpers/buildURL.js' with target './lib/helpers/buildURL.js'.", + "File name '/node_modules/axios/lib/helpers/buildURL.js' has a '.js' extension - stripping it.", + "File '/node_modules/axios/lib/helpers/buildURL.js' exists - use it as a name resolution result.", + "======== Module name 'axios/unsafe/helpers/buildURL.js' was successfully resolved to '/node_modules/axios/lib/helpers/buildURL.js' with Package ID 'axios/lib/helpers/buildURL.js@1.4.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts" + ] + }, + "node16-esm": { + "name": "./unsafe/helpers/buildURL.js", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/axios/lib/helpers/buildURL.js", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/axios/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'axios/unsafe/helpers/buildURL.js' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'axios/unsafe/helpers/buildURL.js' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './unsafe/helpers/buildURL.js' with target './lib/helpers/buildURL.js'.", + "File name '/node_modules/axios/lib/helpers/buildURL.js' has a '.js' extension - stripping it.", + "File '/node_modules/axios/lib/helpers/buildURL.ts' does not exist.", + "File '/node_modules/axios/lib/helpers/buildURL.tsx' does not exist.", + "File '/node_modules/axios/lib/helpers/buildURL.d.ts' does not exist.", + "Export specifier './unsafe/helpers/buildURL.js' does not exist in package.json scope at path '/node_modules/axios'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "File name '/node_modules/@types/axios/unsafe/helpers/buildURL.js' has a '.js' extension - stripping it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './unsafe/helpers/buildURL.js' with target './lib/helpers/buildURL.js'.", + "File name '/node_modules/axios/lib/helpers/buildURL.js' has a '.js' extension - stripping it.", + "File '/node_modules/axios/lib/helpers/buildURL.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'axios/unsafe/helpers/buildURL.js' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "File name '/node_modules/axios/unsafe/helpers/buildURL.js' has a '.js' extension - stripping it.", + "'package.json' has 'typings' field './index.d.ts' that references '/node_modules/axios/unsafe/helpers/buildURL.js/index.d.ts'.", + "Loading module as file / folder, candidate module location '/node_modules/axios/unsafe/helpers/buildURL.js/index.d.ts', target file types: TypeScript, Declaration.", + "File name '/node_modules/axios/unsafe/helpers/buildURL.js/index.d.ts' has a '.d.ts' extension - stripping it.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "File name '/node_modules/@types/axios/unsafe/helpers/buildURL.js' has a '.js' extension - stripping it.", + "======== Module name 'axios/unsafe/helpers/buildURL.js' was successfully resolved to '/node_modules/axios/lib/helpers/buildURL.js' with Package ID 'axios/lib/helpers/buildURL.js@1.4.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts" + ] + }, + "bundler": { + "name": "./unsafe/helpers/buildURL.js", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/axios/lib/helpers/buildURL.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'axios/unsafe/helpers/buildURL.js' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'axios/unsafe/helpers/buildURL.js' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './unsafe/helpers/buildURL.js' with target './lib/helpers/buildURL.js'.", + "File name '/node_modules/axios/lib/helpers/buildURL.js' has a '.js' extension - stripping it.", + "File '/node_modules/axios/lib/helpers/buildURL.ts' does not exist.", + "File '/node_modules/axios/lib/helpers/buildURL.tsx' does not exist.", + "File '/node_modules/axios/lib/helpers/buildURL.d.ts' does not exist.", + "Export specifier './unsafe/helpers/buildURL.js' does not exist in package.json scope at path '/node_modules/axios'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "File name '/node_modules/@types/axios/unsafe/helpers/buildURL.js' has a '.js' extension - stripping it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './unsafe/helpers/buildURL.js' with target './lib/helpers/buildURL.js'.", + "File name '/node_modules/axios/lib/helpers/buildURL.js' has a '.js' extension - stripping it.", + "File '/node_modules/axios/lib/helpers/buildURL.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'axios/unsafe/helpers/buildURL.js' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "File name '/node_modules/axios/unsafe/helpers/buildURL.js' has a '.js' extension - stripping it.", + "'package.json' has 'typings' field './index.d.ts' that references '/node_modules/axios/unsafe/helpers/buildURL.js/index.d.ts'.", + "Loading module as file / folder, candidate module location '/node_modules/axios/unsafe/helpers/buildURL.js/index.d.ts', target file types: TypeScript, Declaration.", + "File name '/node_modules/axios/unsafe/helpers/buildURL.js/index.d.ts' has a '.d.ts' extension - stripping it.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "File name '/node_modules/@types/axios/unsafe/helpers/buildURL.js' has a '.js' extension - stripping it.", + "======== Module name 'axios/unsafe/helpers/buildURL.js' was successfully resolved to '/node_modules/axios/lib/helpers/buildURL.js' with Package ID 'axios/lib/helpers/buildURL.js@1.4.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts" + ] + } + }, + "hasTypes": false, + "isWildcard": false + }, + "./unsafe/helpers/combineURLs.js": { + "subpath": "./unsafe/helpers/combineURLs.js", + "resolutions": { + "node10": { + "name": "./unsafe/helpers/combineURLs.js", + "resolutionKind": "node10" + }, + "node16-cjs": { + "name": "./unsafe/helpers/combineURLs.js", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/axios/lib/helpers/combineURLs.js", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/axios/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'axios/unsafe/helpers/combineURLs.js' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'axios/unsafe/helpers/combineURLs.js' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './unsafe/helpers/combineURLs.js' with target './lib/helpers/combineURLs.js'.", + "File name '/node_modules/axios/lib/helpers/combineURLs.js' has a '.js' extension - stripping it.", + "File '/node_modules/axios/lib/helpers/combineURLs.ts' does not exist.", + "File '/node_modules/axios/lib/helpers/combineURLs.tsx' does not exist.", + "File '/node_modules/axios/lib/helpers/combineURLs.d.ts' does not exist.", + "Export specifier './unsafe/helpers/combineURLs.js' does not exist in package.json scope at path '/node_modules/axios'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "File name '/node_modules/@types/axios/unsafe/helpers/combineURLs.js' has a '.js' extension - stripping it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './unsafe/helpers/combineURLs.js' with target './lib/helpers/combineURLs.js'.", + "File name '/node_modules/axios/lib/helpers/combineURLs.js' has a '.js' extension - stripping it.", + "File '/node_modules/axios/lib/helpers/combineURLs.js' exists - use it as a name resolution result.", + "======== Module name 'axios/unsafe/helpers/combineURLs.js' was successfully resolved to '/node_modules/axios/lib/helpers/combineURLs.js' with Package ID 'axios/lib/helpers/combineURLs.js@1.4.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts" + ] + }, + "node16-esm": { + "name": "./unsafe/helpers/combineURLs.js", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/axios/lib/helpers/combineURLs.js", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/axios/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'axios/unsafe/helpers/combineURLs.js' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'axios/unsafe/helpers/combineURLs.js' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './unsafe/helpers/combineURLs.js' with target './lib/helpers/combineURLs.js'.", + "File name '/node_modules/axios/lib/helpers/combineURLs.js' has a '.js' extension - stripping it.", + "File '/node_modules/axios/lib/helpers/combineURLs.ts' does not exist.", + "File '/node_modules/axios/lib/helpers/combineURLs.tsx' does not exist.", + "File '/node_modules/axios/lib/helpers/combineURLs.d.ts' does not exist.", + "Export specifier './unsafe/helpers/combineURLs.js' does not exist in package.json scope at path '/node_modules/axios'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "File name '/node_modules/@types/axios/unsafe/helpers/combineURLs.js' has a '.js' extension - stripping it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './unsafe/helpers/combineURLs.js' with target './lib/helpers/combineURLs.js'.", + "File name '/node_modules/axios/lib/helpers/combineURLs.js' has a '.js' extension - stripping it.", + "File '/node_modules/axios/lib/helpers/combineURLs.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'axios/unsafe/helpers/combineURLs.js' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "File name '/node_modules/axios/unsafe/helpers/combineURLs.js' has a '.js' extension - stripping it.", + "'package.json' has 'typings' field './index.d.ts' that references '/node_modules/axios/unsafe/helpers/combineURLs.js/index.d.ts'.", + "Loading module as file / folder, candidate module location '/node_modules/axios/unsafe/helpers/combineURLs.js/index.d.ts', target file types: TypeScript, Declaration.", + "File name '/node_modules/axios/unsafe/helpers/combineURLs.js/index.d.ts' has a '.d.ts' extension - stripping it.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "File name '/node_modules/@types/axios/unsafe/helpers/combineURLs.js' has a '.js' extension - stripping it.", + "======== Module name 'axios/unsafe/helpers/combineURLs.js' was successfully resolved to '/node_modules/axios/lib/helpers/combineURLs.js' with Package ID 'axios/lib/helpers/combineURLs.js@1.4.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts" + ] + }, + "bundler": { + "name": "./unsafe/helpers/combineURLs.js", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/axios/lib/helpers/combineURLs.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'axios/unsafe/helpers/combineURLs.js' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'axios/unsafe/helpers/combineURLs.js' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './unsafe/helpers/combineURLs.js' with target './lib/helpers/combineURLs.js'.", + "File name '/node_modules/axios/lib/helpers/combineURLs.js' has a '.js' extension - stripping it.", + "File '/node_modules/axios/lib/helpers/combineURLs.ts' does not exist.", + "File '/node_modules/axios/lib/helpers/combineURLs.tsx' does not exist.", + "File '/node_modules/axios/lib/helpers/combineURLs.d.ts' does not exist.", + "Export specifier './unsafe/helpers/combineURLs.js' does not exist in package.json scope at path '/node_modules/axios'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "File name '/node_modules/@types/axios/unsafe/helpers/combineURLs.js' has a '.js' extension - stripping it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './unsafe/helpers/combineURLs.js' with target './lib/helpers/combineURLs.js'.", + "File name '/node_modules/axios/lib/helpers/combineURLs.js' has a '.js' extension - stripping it.", + "File '/node_modules/axios/lib/helpers/combineURLs.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'axios/unsafe/helpers/combineURLs.js' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "File name '/node_modules/axios/unsafe/helpers/combineURLs.js' has a '.js' extension - stripping it.", + "'package.json' has 'typings' field './index.d.ts' that references '/node_modules/axios/unsafe/helpers/combineURLs.js/index.d.ts'.", + "Loading module as file / folder, candidate module location '/node_modules/axios/unsafe/helpers/combineURLs.js/index.d.ts', target file types: TypeScript, Declaration.", + "File name '/node_modules/axios/unsafe/helpers/combineURLs.js/index.d.ts' has a '.d.ts' extension - stripping it.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "File name '/node_modules/@types/axios/unsafe/helpers/combineURLs.js' has a '.js' extension - stripping it.", + "======== Module name 'axios/unsafe/helpers/combineURLs.js' was successfully resolved to '/node_modules/axios/lib/helpers/combineURLs.js' with Package ID 'axios/lib/helpers/combineURLs.js@1.4.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts" + ] + } + }, + "hasTypes": false, + "isWildcard": false + }, + "./unsafe/adapters/http.js": { + "subpath": "./unsafe/adapters/http.js", + "resolutions": { + "node10": { + "name": "./unsafe/adapters/http.js", + "resolutionKind": "node10" + }, + "node16-cjs": { + "name": "./unsafe/adapters/http.js", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/axios/lib/adapters/http.js", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/axios/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'axios/unsafe/adapters/http.js' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'axios/unsafe/adapters/http.js' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './unsafe/adapters/http.js' with target './lib/adapters/http.js'.", + "File name '/node_modules/axios/lib/adapters/http.js' has a '.js' extension - stripping it.", + "File '/node_modules/axios/lib/adapters/http.ts' does not exist.", + "File '/node_modules/axios/lib/adapters/http.tsx' does not exist.", + "File '/node_modules/axios/lib/adapters/http.d.ts' does not exist.", + "Export specifier './unsafe/adapters/http.js' does not exist in package.json scope at path '/node_modules/axios'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "File name '/node_modules/@types/axios/unsafe/adapters/http.js' has a '.js' extension - stripping it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './unsafe/adapters/http.js' with target './lib/adapters/http.js'.", + "File name '/node_modules/axios/lib/adapters/http.js' has a '.js' extension - stripping it.", + "File '/node_modules/axios/lib/adapters/http.js' exists - use it as a name resolution result.", + "======== Module name 'axios/unsafe/adapters/http.js' was successfully resolved to '/node_modules/axios/lib/adapters/http.js' with Package ID 'axios/lib/adapters/http.js@1.4.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts" + ] + }, + "node16-esm": { + "name": "./unsafe/adapters/http.js", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/axios/lib/adapters/http.js", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/axios/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'axios/unsafe/adapters/http.js' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'axios/unsafe/adapters/http.js' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './unsafe/adapters/http.js' with target './lib/adapters/http.js'.", + "File name '/node_modules/axios/lib/adapters/http.js' has a '.js' extension - stripping it.", + "File '/node_modules/axios/lib/adapters/http.ts' does not exist.", + "File '/node_modules/axios/lib/adapters/http.tsx' does not exist.", + "File '/node_modules/axios/lib/adapters/http.d.ts' does not exist.", + "Export specifier './unsafe/adapters/http.js' does not exist in package.json scope at path '/node_modules/axios'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "File name '/node_modules/@types/axios/unsafe/adapters/http.js' has a '.js' extension - stripping it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './unsafe/adapters/http.js' with target './lib/adapters/http.js'.", + "File name '/node_modules/axios/lib/adapters/http.js' has a '.js' extension - stripping it.", + "File '/node_modules/axios/lib/adapters/http.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'axios/unsafe/adapters/http.js' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "File name '/node_modules/axios/unsafe/adapters/http.js' has a '.js' extension - stripping it.", + "'package.json' has 'typings' field './index.d.ts' that references '/node_modules/axios/unsafe/adapters/http.js/index.d.ts'.", + "Loading module as file / folder, candidate module location '/node_modules/axios/unsafe/adapters/http.js/index.d.ts', target file types: TypeScript, Declaration.", + "File name '/node_modules/axios/unsafe/adapters/http.js/index.d.ts' has a '.d.ts' extension - stripping it.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "File name '/node_modules/@types/axios/unsafe/adapters/http.js' has a '.js' extension - stripping it.", + "======== Module name 'axios/unsafe/adapters/http.js' was successfully resolved to '/node_modules/axios/lib/adapters/http.js' with Package ID 'axios/lib/adapters/http.js@1.4.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts" + ] + }, + "bundler": { + "name": "./unsafe/adapters/http.js", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/axios/lib/adapters/http.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'axios/unsafe/adapters/http.js' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'axios/unsafe/adapters/http.js' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './unsafe/adapters/http.js' with target './lib/adapters/http.js'.", + "File name '/node_modules/axios/lib/adapters/http.js' has a '.js' extension - stripping it.", + "File '/node_modules/axios/lib/adapters/http.ts' does not exist.", + "File '/node_modules/axios/lib/adapters/http.tsx' does not exist.", + "File '/node_modules/axios/lib/adapters/http.d.ts' does not exist.", + "Export specifier './unsafe/adapters/http.js' does not exist in package.json scope at path '/node_modules/axios'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "File name '/node_modules/@types/axios/unsafe/adapters/http.js' has a '.js' extension - stripping it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './unsafe/adapters/http.js' with target './lib/adapters/http.js'.", + "File name '/node_modules/axios/lib/adapters/http.js' has a '.js' extension - stripping it.", + "File '/node_modules/axios/lib/adapters/http.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'axios/unsafe/adapters/http.js' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "File name '/node_modules/axios/unsafe/adapters/http.js' has a '.js' extension - stripping it.", + "'package.json' has 'typings' field './index.d.ts' that references '/node_modules/axios/unsafe/adapters/http.js/index.d.ts'.", + "Loading module as file / folder, candidate module location '/node_modules/axios/unsafe/adapters/http.js/index.d.ts', target file types: TypeScript, Declaration.", + "File name '/node_modules/axios/unsafe/adapters/http.js/index.d.ts' has a '.d.ts' extension - stripping it.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "File name '/node_modules/@types/axios/unsafe/adapters/http.js' has a '.js' extension - stripping it.", + "======== Module name 'axios/unsafe/adapters/http.js' was successfully resolved to '/node_modules/axios/lib/adapters/http.js' with Package ID 'axios/lib/adapters/http.js@1.4.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts" + ] + } + }, + "hasTypes": false, + "isWildcard": false + }, + "./unsafe/adapters/xhr.js": { + "subpath": "./unsafe/adapters/xhr.js", + "resolutions": { + "node10": { + "name": "./unsafe/adapters/xhr.js", + "resolutionKind": "node10" + }, + "node16-cjs": { + "name": "./unsafe/adapters/xhr.js", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/axios/lib/adapters/xhr.js", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/axios/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'axios/unsafe/adapters/xhr.js' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'axios/unsafe/adapters/xhr.js' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './unsafe/adapters/xhr.js' with target './lib/adapters/xhr.js'.", + "File name '/node_modules/axios/lib/adapters/xhr.js' has a '.js' extension - stripping it.", + "File '/node_modules/axios/lib/adapters/xhr.ts' does not exist.", + "File '/node_modules/axios/lib/adapters/xhr.tsx' does not exist.", + "File '/node_modules/axios/lib/adapters/xhr.d.ts' does not exist.", + "Export specifier './unsafe/adapters/xhr.js' does not exist in package.json scope at path '/node_modules/axios'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "File name '/node_modules/@types/axios/unsafe/adapters/xhr.js' has a '.js' extension - stripping it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './unsafe/adapters/xhr.js' with target './lib/adapters/xhr.js'.", + "File name '/node_modules/axios/lib/adapters/xhr.js' has a '.js' extension - stripping it.", + "File '/node_modules/axios/lib/adapters/xhr.js' exists - use it as a name resolution result.", + "======== Module name 'axios/unsafe/adapters/xhr.js' was successfully resolved to '/node_modules/axios/lib/adapters/xhr.js' with Package ID 'axios/lib/adapters/xhr.js@1.4.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts" + ] + }, + "node16-esm": { + "name": "./unsafe/adapters/xhr.js", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/axios/lib/adapters/xhr.js", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/axios/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'axios/unsafe/adapters/xhr.js' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'axios/unsafe/adapters/xhr.js' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './unsafe/adapters/xhr.js' with target './lib/adapters/xhr.js'.", + "File name '/node_modules/axios/lib/adapters/xhr.js' has a '.js' extension - stripping it.", + "File '/node_modules/axios/lib/adapters/xhr.ts' does not exist.", + "File '/node_modules/axios/lib/adapters/xhr.tsx' does not exist.", + "File '/node_modules/axios/lib/adapters/xhr.d.ts' does not exist.", + "Export specifier './unsafe/adapters/xhr.js' does not exist in package.json scope at path '/node_modules/axios'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "File name '/node_modules/@types/axios/unsafe/adapters/xhr.js' has a '.js' extension - stripping it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './unsafe/adapters/xhr.js' with target './lib/adapters/xhr.js'.", + "File name '/node_modules/axios/lib/adapters/xhr.js' has a '.js' extension - stripping it.", + "File '/node_modules/axios/lib/adapters/xhr.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'axios/unsafe/adapters/xhr.js' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "File name '/node_modules/axios/unsafe/adapters/xhr.js' has a '.js' extension - stripping it.", + "'package.json' has 'typings' field './index.d.ts' that references '/node_modules/axios/unsafe/adapters/xhr.js/index.d.ts'.", + "Loading module as file / folder, candidate module location '/node_modules/axios/unsafe/adapters/xhr.js/index.d.ts', target file types: TypeScript, Declaration.", + "File name '/node_modules/axios/unsafe/adapters/xhr.js/index.d.ts' has a '.d.ts' extension - stripping it.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "File name '/node_modules/@types/axios/unsafe/adapters/xhr.js' has a '.js' extension - stripping it.", + "======== Module name 'axios/unsafe/adapters/xhr.js' was successfully resolved to '/node_modules/axios/lib/adapters/xhr.js' with Package ID 'axios/lib/adapters/xhr.js@1.4.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts" + ] + }, + "bundler": { + "name": "./unsafe/adapters/xhr.js", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/axios/lib/adapters/xhr.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'axios/unsafe/adapters/xhr.js' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'axios/unsafe/adapters/xhr.js' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './unsafe/adapters/xhr.js' with target './lib/adapters/xhr.js'.", + "File name '/node_modules/axios/lib/adapters/xhr.js' has a '.js' extension - stripping it.", + "File '/node_modules/axios/lib/adapters/xhr.ts' does not exist.", + "File '/node_modules/axios/lib/adapters/xhr.tsx' does not exist.", + "File '/node_modules/axios/lib/adapters/xhr.d.ts' does not exist.", + "Export specifier './unsafe/adapters/xhr.js' does not exist in package.json scope at path '/node_modules/axios'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "File name '/node_modules/@types/axios/unsafe/adapters/xhr.js' has a '.js' extension - stripping it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './unsafe/adapters/xhr.js' with target './lib/adapters/xhr.js'.", + "File name '/node_modules/axios/lib/adapters/xhr.js' has a '.js' extension - stripping it.", + "File '/node_modules/axios/lib/adapters/xhr.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'axios/unsafe/adapters/xhr.js' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "File name '/node_modules/axios/unsafe/adapters/xhr.js' has a '.js' extension - stripping it.", + "'package.json' has 'typings' field './index.d.ts' that references '/node_modules/axios/unsafe/adapters/xhr.js/index.d.ts'.", + "Loading module as file / folder, candidate module location '/node_modules/axios/unsafe/adapters/xhr.js/index.d.ts', target file types: TypeScript, Declaration.", + "File name '/node_modules/axios/unsafe/adapters/xhr.js/index.d.ts' has a '.d.ts' extension - stripping it.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "File name '/node_modules/@types/axios/unsafe/adapters/xhr.js' has a '.js' extension - stripping it.", + "======== Module name 'axios/unsafe/adapters/xhr.js' was successfully resolved to '/node_modules/axios/lib/adapters/xhr.js' with Package ID 'axios/lib/adapters/xhr.js@1.4.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts" + ] + } + }, + "hasTypes": false, + "isWildcard": false + }, + "./unsafe/utils.js": { + "subpath": "./unsafe/utils.js", + "resolutions": { + "node10": { + "name": "./unsafe/utils.js", + "resolutionKind": "node10" + }, + "node16-cjs": { + "name": "./unsafe/utils.js", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/axios/lib/utils.js", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/axios/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'axios/unsafe/utils.js' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'axios/unsafe/utils.js' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './unsafe/utils.js' with target './lib/utils.js'.", + "File name '/node_modules/axios/lib/utils.js' has a '.js' extension - stripping it.", + "File '/node_modules/axios/lib/utils.ts' does not exist.", + "File '/node_modules/axios/lib/utils.tsx' does not exist.", + "File '/node_modules/axios/lib/utils.d.ts' does not exist.", + "Export specifier './unsafe/utils.js' does not exist in package.json scope at path '/node_modules/axios'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "File name '/node_modules/@types/axios/unsafe/utils.js' has a '.js' extension - stripping it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './unsafe/utils.js' with target './lib/utils.js'.", + "File name '/node_modules/axios/lib/utils.js' has a '.js' extension - stripping it.", + "File '/node_modules/axios/lib/utils.js' exists - use it as a name resolution result.", + "======== Module name 'axios/unsafe/utils.js' was successfully resolved to '/node_modules/axios/lib/utils.js' with Package ID 'axios/lib/utils.js@1.4.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts" + ] + }, + "node16-esm": { + "name": "./unsafe/utils.js", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/axios/lib/utils.js", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/axios/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'axios/unsafe/utils.js' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'axios/unsafe/utils.js' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './unsafe/utils.js' with target './lib/utils.js'.", + "File name '/node_modules/axios/lib/utils.js' has a '.js' extension - stripping it.", + "File '/node_modules/axios/lib/utils.ts' does not exist.", + "File '/node_modules/axios/lib/utils.tsx' does not exist.", + "File '/node_modules/axios/lib/utils.d.ts' does not exist.", + "Export specifier './unsafe/utils.js' does not exist in package.json scope at path '/node_modules/axios'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "File name '/node_modules/@types/axios/unsafe/utils.js' has a '.js' extension - stripping it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './unsafe/utils.js' with target './lib/utils.js'.", + "File name '/node_modules/axios/lib/utils.js' has a '.js' extension - stripping it.", + "File '/node_modules/axios/lib/utils.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'axios/unsafe/utils.js' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "File name '/node_modules/axios/unsafe/utils.js' has a '.js' extension - stripping it.", + "'package.json' has 'typings' field './index.d.ts' that references '/node_modules/axios/unsafe/utils.js/index.d.ts'.", + "Loading module as file / folder, candidate module location '/node_modules/axios/unsafe/utils.js/index.d.ts', target file types: TypeScript, Declaration.", + "File name '/node_modules/axios/unsafe/utils.js/index.d.ts' has a '.d.ts' extension - stripping it.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "File name '/node_modules/@types/axios/unsafe/utils.js' has a '.js' extension - stripping it.", + "======== Module name 'axios/unsafe/utils.js' was successfully resolved to '/node_modules/axios/lib/utils.js' with Package ID 'axios/lib/utils.js@1.4.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts" + ] + }, + "bundler": { + "name": "./unsafe/utils.js", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/axios/lib/utils.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'axios/unsafe/utils.js' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'axios/unsafe/utils.js' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './unsafe/utils.js' with target './lib/utils.js'.", + "File name '/node_modules/axios/lib/utils.js' has a '.js' extension - stripping it.", + "File '/node_modules/axios/lib/utils.ts' does not exist.", + "File '/node_modules/axios/lib/utils.tsx' does not exist.", + "File '/node_modules/axios/lib/utils.d.ts' does not exist.", + "Export specifier './unsafe/utils.js' does not exist in package.json scope at path '/node_modules/axios'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "File name '/node_modules/@types/axios/unsafe/utils.js' has a '.js' extension - stripping it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './unsafe/utils.js' with target './lib/utils.js'.", + "File name '/node_modules/axios/lib/utils.js' has a '.js' extension - stripping it.", + "File '/node_modules/axios/lib/utils.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'axios/unsafe/utils.js' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "File name '/node_modules/axios/unsafe/utils.js' has a '.js' extension - stripping it.", + "'package.json' has 'typings' field './index.d.ts' that references '/node_modules/axios/unsafe/utils.js/index.d.ts'.", + "Loading module as file / folder, candidate module location '/node_modules/axios/unsafe/utils.js/index.d.ts', target file types: TypeScript, Declaration.", + "File name '/node_modules/axios/unsafe/utils.js/index.d.ts' has a '.d.ts' extension - stripping it.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "File name '/node_modules/@types/axios/unsafe/utils.js' has a '.js' extension - stripping it.", + "======== Module name 'axios/unsafe/utils.js' was successfully resolved to '/node_modules/axios/lib/utils.js' with Package ID 'axios/lib/utils.js@1.4.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts" + ] + } + }, + "hasTypes": false, + "isWildcard": false + }, + "./package.json": { + "subpath": "./package.json", + "resolutions": { + "node10": { + "name": "./package.json", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/axios/package.json", + "isJson": true, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'axios/package.json' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'axios/package.json' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "File name '/node_modules/axios/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/axios/package.d.json.ts' does not exist.", + "File '/node_modules/axios/package.json.ts' does not exist.", + "File '/node_modules/axios/package.json.tsx' does not exist.", + "File '/node_modules/axios/package.json.d.ts' does not exist.", + "'package.json' has 'typings' field './index.d.ts' that references '/node_modules/axios/package.json/index.d.ts'.", + "Loading module as file / folder, candidate module location '/node_modules/axios/package.json/index.d.ts', target file types: TypeScript, Declaration.", + "File name '/node_modules/axios/package.json/index.d.ts' has a '.d.ts' extension - stripping it.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "File name '/node_modules/@types/axios/package.json' has a '.json' extension - stripping it.", + "Loading module 'axios/package.json' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "File name '/node_modules/axios/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/axios/package.json' exists - use it as a name resolution result.", + "======== Module name 'axios/package.json' was successfully resolved to '/node_modules/axios/package.json' with Package ID 'axios/package.json@1.4.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/axios/package.json" + ] + }, + "node16-cjs": { + "name": "./package.json", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/axios/package.json", + "isJson": true, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'axios/package.json' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'axios/package.json' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './package.json' with target './package.json'.", + "File name '/node_modules/axios/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/axios/package.d.json.ts' does not exist.", + "Export specifier './package.json' does not exist in package.json scope at path '/node_modules/axios'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "File name '/node_modules/@types/axios/package.json' has a '.json' extension - stripping it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './package.json' with target './package.json'.", + "File name '/node_modules/axios/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/axios/package.json' exists - use it as a name resolution result.", + "======== Module name 'axios/package.json' was successfully resolved to '/node_modules/axios/package.json' with Package ID 'axios/package.json@1.4.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/axios/package.json" + ] + }, + "node16-esm": { + "name": "./package.json", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/axios/package.json", + "isJson": true, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'axios/package.json' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'axios/package.json' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './package.json' with target './package.json'.", + "File name '/node_modules/axios/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/axios/package.d.json.ts' does not exist.", + "Export specifier './package.json' does not exist in package.json scope at path '/node_modules/axios'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "File name '/node_modules/@types/axios/package.json' has a '.json' extension - stripping it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './package.json' with target './package.json'.", + "File name '/node_modules/axios/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/axios/package.json' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'axios/package.json' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "File name '/node_modules/axios/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/axios/package.d.json.ts' does not exist.", + "'package.json' has 'typings' field './index.d.ts' that references '/node_modules/axios/package.json/index.d.ts'.", + "Loading module as file / folder, candidate module location '/node_modules/axios/package.json/index.d.ts', target file types: TypeScript, Declaration.", + "File name '/node_modules/axios/package.json/index.d.ts' has a '.d.ts' extension - stripping it.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "File name '/node_modules/@types/axios/package.json' has a '.json' extension - stripping it.", + "======== Module name 'axios/package.json' was successfully resolved to '/node_modules/axios/package.json' with Package ID 'axios/package.json@1.4.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/axios/package.json" + ] + }, + "bundler": { + "name": "./package.json", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/axios/package.json", + "isJson": true, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'axios/package.json' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'axios/package.json' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './package.json' with target './package.json'.", + "File name '/node_modules/axios/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/axios/package.d.json.ts' does not exist.", + "Export specifier './package.json' does not exist in package.json scope at path '/node_modules/axios'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "File name '/node_modules/@types/axios/package.json' has a '.json' extension - stripping it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './package.json' with target './package.json'.", + "File name '/node_modules/axios/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/axios/package.json' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'axios/package.json' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/axios/package.json' exists according to earlier cached lookups.", + "File name '/node_modules/axios/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/axios/package.d.json.ts' does not exist.", + "File '/node_modules/axios/package.json.ts' does not exist.", + "File '/node_modules/axios/package.json.tsx' does not exist.", + "File '/node_modules/axios/package.json.d.ts' does not exist.", + "'package.json' has 'typings' field './index.d.ts' that references '/node_modules/axios/package.json/index.d.ts'.", + "Loading module as file / folder, candidate module location '/node_modules/axios/package.json/index.d.ts', target file types: TypeScript, Declaration.", + "File name '/node_modules/axios/package.json/index.d.ts' has a '.d.ts' extension - stripping it.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "File name '/node_modules/@types/axios/package.json' has a '.json' extension - stripping it.", + "======== Module name 'axios/package.json' was successfully resolved to '/node_modules/axios/package.json' with Package ID 'axios/package.json@1.4.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/axios/package.json" + ] + } + }, + "hasTypes": false, + "isWildcard": false + } + }, + "problems": [ + { + "kind": "Wildcard", + "entrypoint": "./unsafe/*", + "resolutionKind": "node10" + }, + { + "kind": "Wildcard", + "entrypoint": "./unsafe/*", + "resolutionKind": "node16-cjs" + }, + { + "kind": "Wildcard", + "entrypoint": "./unsafe/*", + "resolutionKind": "node16-esm" + }, + { + "kind": "Wildcard", + "entrypoint": "./unsafe/*", + "resolutionKind": "bundler" + }, + { + "kind": "NoResolution", + "entrypoint": "./unsafe/core/settle.js", + "resolutionKind": "node10" + }, + { + "kind": "UntypedResolution", + "entrypoint": "./unsafe/core/settle.js", + "resolutionKind": "node16-cjs" + }, + { + "kind": "CJSResolvesToESM", + "entrypoint": "./unsafe/core/settle.js", + "resolutionKind": "node16-cjs" + }, + { + "kind": "UntypedResolution", + "entrypoint": "./unsafe/core/settle.js", + "resolutionKind": "node16-esm" + }, + { + "kind": "UntypedResolution", + "entrypoint": "./unsafe/core/settle.js", + "resolutionKind": "bundler" + }, + { + "kind": "NoResolution", + "entrypoint": "./unsafe/core/buildFullPath.js", + "resolutionKind": "node10" + }, + { + "kind": "UntypedResolution", + "entrypoint": "./unsafe/core/buildFullPath.js", + "resolutionKind": "node16-cjs" + }, + { + "kind": "CJSResolvesToESM", + "entrypoint": "./unsafe/core/buildFullPath.js", + "resolutionKind": "node16-cjs" + }, + { + "kind": "UntypedResolution", + "entrypoint": "./unsafe/core/buildFullPath.js", + "resolutionKind": "node16-esm" + }, + { + "kind": "UntypedResolution", + "entrypoint": "./unsafe/core/buildFullPath.js", + "resolutionKind": "bundler" + }, + { + "kind": "NoResolution", + "entrypoint": "./unsafe/helpers/isAbsoluteURL.js", + "resolutionKind": "node10" + }, + { + "kind": "UntypedResolution", + "entrypoint": "./unsafe/helpers/isAbsoluteURL.js", + "resolutionKind": "node16-cjs" + }, + { + "kind": "CJSResolvesToESM", + "entrypoint": "./unsafe/helpers/isAbsoluteURL.js", + "resolutionKind": "node16-cjs" + }, + { + "kind": "UntypedResolution", + "entrypoint": "./unsafe/helpers/isAbsoluteURL.js", + "resolutionKind": "node16-esm" + }, + { + "kind": "UntypedResolution", + "entrypoint": "./unsafe/helpers/isAbsoluteURL.js", + "resolutionKind": "bundler" + }, + { + "kind": "NoResolution", + "entrypoint": "./unsafe/helpers/buildURL.js", + "resolutionKind": "node10" + }, + { + "kind": "UntypedResolution", + "entrypoint": "./unsafe/helpers/buildURL.js", + "resolutionKind": "node16-cjs" + }, + { + "kind": "CJSResolvesToESM", + "entrypoint": "./unsafe/helpers/buildURL.js", + "resolutionKind": "node16-cjs" + }, + { + "kind": "UntypedResolution", + "entrypoint": "./unsafe/helpers/buildURL.js", + "resolutionKind": "node16-esm" + }, + { + "kind": "UntypedResolution", + "entrypoint": "./unsafe/helpers/buildURL.js", + "resolutionKind": "bundler" + }, + { + "kind": "NoResolution", + "entrypoint": "./unsafe/helpers/combineURLs.js", + "resolutionKind": "node10" + }, + { + "kind": "UntypedResolution", + "entrypoint": "./unsafe/helpers/combineURLs.js", + "resolutionKind": "node16-cjs" + }, + { + "kind": "CJSResolvesToESM", + "entrypoint": "./unsafe/helpers/combineURLs.js", + "resolutionKind": "node16-cjs" + }, + { + "kind": "UntypedResolution", + "entrypoint": "./unsafe/helpers/combineURLs.js", + "resolutionKind": "node16-esm" + }, + { + "kind": "UntypedResolution", + "entrypoint": "./unsafe/helpers/combineURLs.js", + "resolutionKind": "bundler" + }, + { + "kind": "NoResolution", + "entrypoint": "./unsafe/adapters/http.js", + "resolutionKind": "node10" + }, + { + "kind": "UntypedResolution", + "entrypoint": "./unsafe/adapters/http.js", + "resolutionKind": "node16-cjs" + }, + { + "kind": "CJSResolvesToESM", + "entrypoint": "./unsafe/adapters/http.js", + "resolutionKind": "node16-cjs" + }, + { + "kind": "UntypedResolution", + "entrypoint": "./unsafe/adapters/http.js", + "resolutionKind": "node16-esm" + }, + { + "kind": "UntypedResolution", + "entrypoint": "./unsafe/adapters/http.js", + "resolutionKind": "bundler" + }, + { + "kind": "NoResolution", + "entrypoint": "./unsafe/adapters/xhr.js", + "resolutionKind": "node10" + }, + { + "kind": "UntypedResolution", + "entrypoint": "./unsafe/adapters/xhr.js", + "resolutionKind": "node16-cjs" + }, + { + "kind": "CJSResolvesToESM", + "entrypoint": "./unsafe/adapters/xhr.js", + "resolutionKind": "node16-cjs" + }, + { + "kind": "UntypedResolution", + "entrypoint": "./unsafe/adapters/xhr.js", + "resolutionKind": "node16-esm" + }, + { + "kind": "UntypedResolution", + "entrypoint": "./unsafe/adapters/xhr.js", + "resolutionKind": "bundler" + }, + { + "kind": "NoResolution", + "entrypoint": "./unsafe/utils.js", + "resolutionKind": "node10" + }, + { + "kind": "UntypedResolution", + "entrypoint": "./unsafe/utils.js", + "resolutionKind": "node16-cjs" + }, + { + "kind": "CJSResolvesToESM", + "entrypoint": "./unsafe/utils.js", + "resolutionKind": "node16-cjs" + }, + { + "kind": "UntypedResolution", + "entrypoint": "./unsafe/utils.js", + "resolutionKind": "node16-esm" + }, + { + "kind": "UntypedResolution", + "entrypoint": "./unsafe/utils.js", + "resolutionKind": "bundler" + } + ] +} diff --git a/packages/core/test/snapshots/axios@1.4.0.tgz.md b/packages/core/test/snapshots/axios@1.4.0.tgz.md deleted file mode 100644 index 7ea8af3..0000000 --- a/packages/core/test/snapshots/axios@1.4.0.tgz.md +++ /dev/null @@ -1,228 +0,0 @@ -# axios@1.4.0.tgz - -## Problems - -```json -[ - { - "kind": "Wildcard", - "entrypoint": "./unsafe/*", - "resolutionKind": "node10" - }, - { - "kind": "Wildcard", - "entrypoint": "./unsafe/*", - "resolutionKind": "node16-cjs" - }, - { - "kind": "Wildcard", - "entrypoint": "./unsafe/*", - "resolutionKind": "node16-esm" - }, - { - "kind": "Wildcard", - "entrypoint": "./unsafe/*", - "resolutionKind": "bundler" - }, - { - "kind": "NoResolution", - "entrypoint": "./unsafe/core/settle.js", - "resolutionKind": "node10" - }, - { - "kind": "UntypedResolution", - "entrypoint": "./unsafe/core/settle.js", - "resolutionKind": "node16-cjs" - }, - { - "kind": "CJSResolvesToESM", - "entrypoint": "./unsafe/core/settle.js", - "resolutionKind": "node16-cjs" - }, - { - "kind": "UntypedResolution", - "entrypoint": "./unsafe/core/settle.js", - "resolutionKind": "node16-esm" - }, - { - "kind": "UntypedResolution", - "entrypoint": "./unsafe/core/settle.js", - "resolutionKind": "bundler" - }, - { - "kind": "NoResolution", - "entrypoint": "./unsafe/core/buildFullPath.js", - "resolutionKind": "node10" - }, - { - "kind": "UntypedResolution", - "entrypoint": "./unsafe/core/buildFullPath.js", - "resolutionKind": "node16-cjs" - }, - { - "kind": "CJSResolvesToESM", - "entrypoint": "./unsafe/core/buildFullPath.js", - "resolutionKind": "node16-cjs" - }, - { - "kind": "UntypedResolution", - "entrypoint": "./unsafe/core/buildFullPath.js", - "resolutionKind": "node16-esm" - }, - { - "kind": "UntypedResolution", - "entrypoint": "./unsafe/core/buildFullPath.js", - "resolutionKind": "bundler" - }, - { - "kind": "NoResolution", - "entrypoint": "./unsafe/helpers/isAbsoluteURL.js", - "resolutionKind": "node10" - }, - { - "kind": "UntypedResolution", - "entrypoint": "./unsafe/helpers/isAbsoluteURL.js", - "resolutionKind": "node16-cjs" - }, - { - "kind": "CJSResolvesToESM", - "entrypoint": "./unsafe/helpers/isAbsoluteURL.js", - "resolutionKind": "node16-cjs" - }, - { - "kind": "UntypedResolution", - "entrypoint": "./unsafe/helpers/isAbsoluteURL.js", - "resolutionKind": "node16-esm" - }, - { - "kind": "UntypedResolution", - "entrypoint": "./unsafe/helpers/isAbsoluteURL.js", - "resolutionKind": "bundler" - }, - { - "kind": "NoResolution", - "entrypoint": "./unsafe/helpers/buildURL.js", - "resolutionKind": "node10" - }, - { - "kind": "UntypedResolution", - "entrypoint": "./unsafe/helpers/buildURL.js", - "resolutionKind": "node16-cjs" - }, - { - "kind": "CJSResolvesToESM", - "entrypoint": "./unsafe/helpers/buildURL.js", - "resolutionKind": "node16-cjs" - }, - { - "kind": "UntypedResolution", - "entrypoint": "./unsafe/helpers/buildURL.js", - "resolutionKind": "node16-esm" - }, - { - "kind": "UntypedResolution", - "entrypoint": "./unsafe/helpers/buildURL.js", - "resolutionKind": "bundler" - }, - { - "kind": "NoResolution", - "entrypoint": "./unsafe/helpers/combineURLs.js", - "resolutionKind": "node10" - }, - { - "kind": "UntypedResolution", - "entrypoint": "./unsafe/helpers/combineURLs.js", - "resolutionKind": "node16-cjs" - }, - { - "kind": "CJSResolvesToESM", - "entrypoint": "./unsafe/helpers/combineURLs.js", - "resolutionKind": "node16-cjs" - }, - { - "kind": "UntypedResolution", - "entrypoint": "./unsafe/helpers/combineURLs.js", - "resolutionKind": "node16-esm" - }, - { - "kind": "UntypedResolution", - "entrypoint": "./unsafe/helpers/combineURLs.js", - "resolutionKind": "bundler" - }, - { - "kind": "NoResolution", - "entrypoint": "./unsafe/adapters/http.js", - "resolutionKind": "node10" - }, - { - "kind": "UntypedResolution", - "entrypoint": "./unsafe/adapters/http.js", - "resolutionKind": "node16-cjs" - }, - { - "kind": "CJSResolvesToESM", - "entrypoint": "./unsafe/adapters/http.js", - "resolutionKind": "node16-cjs" - }, - { - "kind": "UntypedResolution", - "entrypoint": "./unsafe/adapters/http.js", - "resolutionKind": "node16-esm" - }, - { - "kind": "UntypedResolution", - "entrypoint": "./unsafe/adapters/http.js", - "resolutionKind": "bundler" - }, - { - "kind": "NoResolution", - "entrypoint": "./unsafe/adapters/xhr.js", - "resolutionKind": "node10" - }, - { - "kind": "UntypedResolution", - "entrypoint": "./unsafe/adapters/xhr.js", - "resolutionKind": "node16-cjs" - }, - { - "kind": "CJSResolvesToESM", - "entrypoint": "./unsafe/adapters/xhr.js", - "resolutionKind": "node16-cjs" - }, - { - "kind": "UntypedResolution", - "entrypoint": "./unsafe/adapters/xhr.js", - "resolutionKind": "node16-esm" - }, - { - "kind": "UntypedResolution", - "entrypoint": "./unsafe/adapters/xhr.js", - "resolutionKind": "bundler" - }, - { - "kind": "NoResolution", - "entrypoint": "./unsafe/utils.js", - "resolutionKind": "node10" - }, - { - "kind": "UntypedResolution", - "entrypoint": "./unsafe/utils.js", - "resolutionKind": "node16-cjs" - }, - { - "kind": "CJSResolvesToESM", - "entrypoint": "./unsafe/utils.js", - "resolutionKind": "node16-cjs" - }, - { - "kind": "UntypedResolution", - "entrypoint": "./unsafe/utils.js", - "resolutionKind": "node16-esm" - }, - { - "kind": "UntypedResolution", - "entrypoint": "./unsafe/utils.js", - "resolutionKind": "bundler" - } -] -``` \ No newline at end of file diff --git a/packages/core/test/snapshots/big.js@6.2.1.tgz.json b/packages/core/test/snapshots/big.js@6.2.1.tgz.json new file mode 100644 index 0000000..afb0c8f --- /dev/null +++ b/packages/core/test/snapshots/big.js@6.2.1.tgz.json @@ -0,0 +1,1091 @@ +{ + "packageName": "big.js", + "packageVersion": "6.2.1", + "types": { + "kind": "@types", + "packageName": "@types/big.js", + "packageVersion": "6.2.0", + "definitelyTypedUrl": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/big.js" + }, + "buildTools": {}, + "entrypoints": { + ".": { + "subpath": ".", + "resolutions": { + "node10": { + "name": ".", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/@types/big.js/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'big.js' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'big.js' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/big.js/package.json'.", + "File name '/node_modules/big.js' has a '.js' extension - stripping it.", + "File '/node_modules/big.ts' does not exist.", + "File '/node_modules/big.tsx' does not exist.", + "File '/node_modules/big.d.ts' does not exist.", + "File '/node_modules/big.js.ts' does not exist.", + "File '/node_modules/big.js.tsx' does not exist.", + "File '/node_modules/big.js.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' does not have a 'types' field.", + "'package.json' has 'main' field 'big' that references '/node_modules/big.js/big'.", + "File '/node_modules/big.js/big' does not exist.", + "Loading module as file / folder, candidate module location '/node_modules/big.js/big', target file types: TypeScript, Declaration.", + "File '/node_modules/big.js/big.ts' does not exist.", + "File '/node_modules/big.js/big.tsx' does not exist.", + "File '/node_modules/big.js/big.d.ts' does not exist.", + "Directory '/node_modules/big.js/big' does not exist, skipping all lookups in it.", + "File '/node_modules/big.js/index.ts' does not exist.", + "File '/node_modules/big.js/index.tsx' does not exist.", + "File '/node_modules/big.js/index.d.ts' does not exist.", + "Found 'package.json' at '/node_modules/@types/big.js/package.json'.", + "File name '/node_modules/@types/big.js' has a '.js' extension - stripping it.", + "File '/node_modules/@types/big.d.ts' does not exist.", + "File '/node_modules/@types/big.js.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@types/big.js/index.d.ts'.", + "File '/node_modules/@types/big.js/index.d.ts' exists - use it as a name resolution result.", + "======== Module name 'big.js' was successfully resolved to '/node_modules/@types/big.js/index.d.ts' with Package ID '@types/big.js/index.d.ts@6.2.0'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/big.js/big.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'big.js' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'big.js' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/big.js/package.json'.", + "File name '/node_modules/big.js' has a '.js' extension - stripping it.", + "File '/node_modules/big.ts' does not exist.", + "File '/node_modules/big.tsx' does not exist.", + "File '/node_modules/big.js.ts' does not exist.", + "File '/node_modules/big.js.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'big' that references '/node_modules/big.js/big'.", + "File '/node_modules/big.js/big' does not exist.", + "Loading module as file / folder, candidate module location '/node_modules/big.js/big', target file types: TypeScript.", + "File '/node_modules/big.js/big.ts' does not exist.", + "File '/node_modules/big.js/big.tsx' does not exist.", + "Directory '/node_modules/big.js/big' does not exist, skipping all lookups in it.", + "File '/node_modules/big.js/index.ts' does not exist.", + "File '/node_modules/big.js/index.tsx' does not exist.", + "Loading module 'big.js' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/big.js/package.json' exists according to earlier cached lookups.", + "File name '/node_modules/big.js' has a '.js' extension - stripping it.", + "File '/node_modules/big.js' does not exist.", + "File '/node_modules/big.jsx' does not exist.", + "File '/node_modules/big.js.js' does not exist.", + "File '/node_modules/big.js.jsx' does not exist.", + "'package.json' has 'main' field 'big' that references '/node_modules/big.js/big'.", + "File '/node_modules/big.js/big' does not exist.", + "Loading module as file / folder, candidate module location '/node_modules/big.js/big', target file types: JavaScript, JSON.", + "File '/node_modules/big.js/big.js' exists - use it as a name resolution result.", + "======== Module name 'big.js' was successfully resolved to '/node_modules/big.js/big.js' with Package ID 'big.js/big.js@6.2.1'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@types/big.js/index.d.ts" + ] + }, + "node16-cjs": { + "name": ".", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/@types/big.js/index.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/@types/big.js/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'big.js' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist.", + "Loading module 'big.js' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/big.js/package.json'.", + "Entering conditional exports.", + "Saw non-matching condition 'import'.", + "Matched 'exports' condition 'require'.", + "Using 'exports' subpath '.' with target './big.js'.", + "File name '/node_modules/big.js/big.js' has a '.js' extension - stripping it.", + "File '/node_modules/big.js/big.ts' does not exist.", + "File '/node_modules/big.js/big.tsx' does not exist.", + "File '/node_modules/big.js/big.d.ts' does not exist.", + "Failed to resolve under condition 'require'.", + "Exiting conditional exports.", + "Found 'package.json' at '/node_modules/@types/big.js/package.json'.", + "File name '/node_modules/@types/big.js' has a '.js' extension - stripping it.", + "File '/node_modules/@types/big.d.ts' does not exist.", + "File '/node_modules/@types/big.js.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@types/big.js/index.d.ts'.", + "File '/node_modules/@types/big.js/index.d.ts' exists - use it as a name resolution result.", + "======== Module name 'big.js' was successfully resolved to '/node_modules/@types/big.js/index.d.ts' with Package ID '@types/big.js/index.d.ts@6.2.0'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/big.js/big.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/big.js/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'big.js' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist.", + "Loading module 'big.js' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/big.js/package.json'.", + "Entering conditional exports.", + "Saw non-matching condition 'import'.", + "Matched 'exports' condition 'require'.", + "Using 'exports' subpath '.' with target './big.js'.", + "File name '/node_modules/big.js/big.js' has a '.js' extension - stripping it.", + "File '/node_modules/big.js/big.ts' does not exist.", + "File '/node_modules/big.js/big.tsx' does not exist.", + "Failed to resolve under condition 'require'.", + "Exiting conditional exports.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/big.js/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'import'.", + "Matched 'exports' condition 'require'.", + "Using 'exports' subpath '.' with target './big.js'.", + "File name '/node_modules/big.js/big.js' has a '.js' extension - stripping it.", + "File '/node_modules/big.js/big.js' exists - use it as a name resolution result.", + "Resolved under condition 'require'.", + "Exiting conditional exports.", + "======== Module name 'big.js' was successfully resolved to '/node_modules/big.js/big.js' with Package ID 'big.js/big.js@6.2.1'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@types/big.js/index.d.ts" + ] + }, + "node16-esm": { + "name": ".", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/@types/big.js/index.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/@types/big.js/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'big.js' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'big.js' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/big.js/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Matched 'exports' condition 'import'.", + "Using 'exports' subpath '.' with target './big.mjs'.", + "File name '/node_modules/big.js/big.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/big.js/big.mts' does not exist.", + "File '/node_modules/big.js/big.d.mts' does not exist.", + "Failed to resolve under condition 'import'.", + "Saw non-matching condition 'require'.", + "Exiting conditional exports.", + "File '/node_modules/@types/big.js/package.json' exists according to earlier cached lookups.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@types/big.js/index.d.ts'.", + "File '/node_modules/@types/big.js/index.d.ts' exists - use it as a name resolution result.", + "======== Module name 'big.js' was successfully resolved to '/node_modules/@types/big.js/index.d.ts' with Package ID '@types/big.js/index.d.ts@6.2.0'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/big.js/big.mjs", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "extension", + "reasonFileName": "/node_modules/big.js/big.mjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'big.js' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'big.js' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/big.js/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Matched 'exports' condition 'import'.", + "Using 'exports' subpath '.' with target './big.mjs'.", + "File name '/node_modules/big.js/big.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/big.js/big.mts' does not exist.", + "Failed to resolve under condition 'import'.", + "Saw non-matching condition 'require'.", + "Exiting conditional exports.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/big.js/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Matched 'exports' condition 'import'.", + "Using 'exports' subpath '.' with target './big.mjs'.", + "File name '/node_modules/big.js/big.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/big.js/big.mjs' exists - use it as a name resolution result.", + "Resolved under condition 'import'.", + "Exiting conditional exports.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'big.js' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/big.js/package.json' exists according to earlier cached lookups.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'big' that references '/node_modules/big.js/big'.", + "File '/node_modules/big.js/big' does not exist.", + "Loading module as file / folder, candidate module location '/node_modules/big.js/big', target file types: TypeScript.", + "File '/node_modules/big.js/big.ts' does not exist.", + "File '/node_modules/big.js/big.tsx' does not exist.", + "Directory '/node_modules/big.js/big' does not exist, skipping all lookups in it.", + "======== Module name 'big.js' was successfully resolved to '/node_modules/big.js/big.mjs' with Package ID 'big.js/big.mjs@6.2.1'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@types/big.js/index.d.ts" + ] + }, + "bundler": { + "name": ".", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/@types/big.js/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'big.js' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist.", + "Loading module 'big.js' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/big.js/package.json'.", + "Entering conditional exports.", + "Matched 'exports' condition 'import'.", + "Using 'exports' subpath '.' with target './big.mjs'.", + "File name '/node_modules/big.js/big.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/big.js/big.mts' does not exist.", + "File '/node_modules/big.js/big.d.mts' does not exist.", + "Failed to resolve under condition 'import'.", + "Saw non-matching condition 'require'.", + "Exiting conditional exports.", + "Found 'package.json' at '/node_modules/@types/big.js/package.json'.", + "File name '/node_modules/@types/big.js' has a '.js' extension - stripping it.", + "File '/node_modules/@types/big.d.ts' does not exist.", + "File '/node_modules/@types/big.js.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@types/big.js/index.d.ts'.", + "File '/node_modules/@types/big.js/index.d.ts' exists - use it as a name resolution result.", + "======== Module name 'big.js' was successfully resolved to '/node_modules/@types/big.js/index.d.ts' with Package ID '@types/big.js/index.d.ts@6.2.0'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/big.js/big.mjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'big.js' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist.", + "Loading module 'big.js' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/big.js/package.json'.", + "Entering conditional exports.", + "Matched 'exports' condition 'import'.", + "Using 'exports' subpath '.' with target './big.mjs'.", + "File name '/node_modules/big.js/big.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/big.js/big.mts' does not exist.", + "Failed to resolve under condition 'import'.", + "Saw non-matching condition 'require'.", + "Exiting conditional exports.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/big.js/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Matched 'exports' condition 'import'.", + "Using 'exports' subpath '.' with target './big.mjs'.", + "File name '/node_modules/big.js/big.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/big.js/big.mjs' exists - use it as a name resolution result.", + "Resolved under condition 'import'.", + "Exiting conditional exports.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'big.js' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/big.js/package.json' exists according to earlier cached lookups.", + "File name '/node_modules/big.js' has a '.js' extension - stripping it.", + "File '/node_modules/big.ts' does not exist.", + "File '/node_modules/big.tsx' does not exist.", + "File '/node_modules/big.js.ts' does not exist.", + "File '/node_modules/big.js.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'big' that references '/node_modules/big.js/big'.", + "File '/node_modules/big.js/big' does not exist.", + "Loading module as file / folder, candidate module location '/node_modules/big.js/big', target file types: TypeScript.", + "File '/node_modules/big.js/big.ts' does not exist.", + "File '/node_modules/big.js/big.tsx' does not exist.", + "Directory '/node_modules/big.js/big' does not exist, skipping all lookups in it.", + "File '/node_modules/big.js/index.ts' does not exist.", + "File '/node_modules/big.js/index.tsx' does not exist.", + "======== Module name 'big.js' was successfully resolved to '/node_modules/big.js/big.mjs' with Package ID 'big.js/big.mjs@6.2.1'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@types/big.js/index.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + }, + "./big.mjs": { + "subpath": "./big.mjs", + "resolutions": { + "node10": { + "name": "./big.mjs", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/big.js/big.mjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'big.js/big.mjs' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'big.js/big.mjs' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/big.js/package.json' exists according to earlier cached lookups.", + "File name '/node_modules/big.js/big.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/big.js/big.mts' does not exist.", + "File '/node_modules/big.js/big.d.mts' does not exist.", + "File '/node_modules/big.js/big.mjs.ts' does not exist.", + "File '/node_modules/big.js/big.mjs.tsx' does not exist.", + "File '/node_modules/big.js/big.mjs.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' does not have a 'types' field.", + "'package.json' has 'main' field 'big' that references '/node_modules/big.js/big.mjs/big'.", + "Loading module as file / folder, candidate module location '/node_modules/big.js/big.mjs/big', target file types: TypeScript, Declaration.", + "File '/node_modules/@types/big.js/package.json' exists according to earlier cached lookups.", + "File name '/node_modules/@types/big.js/big.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/@types/big.js/big.d.mts' does not exist.", + "File '/node_modules/@types/big.js/big.mjs.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@types/big.js/big.mjs/index.d.ts'.", + "Loading module as file / folder, candidate module location '/node_modules/@types/big.js/big.mjs/index.d.ts', target file types: TypeScript, Declaration.", + "File name '/node_modules/@types/big.js/big.mjs/index.d.ts' has a '.d.ts' extension - stripping it.", + "Loading module 'big.js/big.mjs' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/big.js/package.json' exists according to earlier cached lookups.", + "File name '/node_modules/big.js/big.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/big.js/big.mjs' exists - use it as a name resolution result.", + "======== Module name 'big.js/big.mjs' was successfully resolved to '/node_modules/big.js/big.mjs' with Package ID 'big.js/big.mjs@6.2.1'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts" + ] + }, + "node16-cjs": { + "name": "./big.mjs", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/big.js/big.mjs", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "extension", + "reasonFileName": "/node_modules/big.js/big.mjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'big.js/big.mjs' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'big.js/big.mjs' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/big.js/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './big.mjs' with target './big.mjs'.", + "File name '/node_modules/big.js/big.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/big.js/big.mts' does not exist.", + "File '/node_modules/big.js/big.d.mts' does not exist.", + "Export specifier './big.mjs' does not exist in package.json scope at path '/node_modules/big.js'.", + "File '/node_modules/@types/big.js/package.json' exists according to earlier cached lookups.", + "File name '/node_modules/@types/big.js/big.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/@types/big.js/big.d.mts' does not exist.", + "File '/node_modules/@types/big.js/big.mjs.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@types/big.js/big.mjs/index.d.ts'.", + "Loading module as file / folder, candidate module location '/node_modules/@types/big.js/big.mjs/index.d.ts', target file types: TypeScript, Declaration.", + "File name '/node_modules/@types/big.js/big.mjs/index.d.ts' has a '.d.ts' extension - stripping it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/big.js/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './big.mjs' with target './big.mjs'.", + "File name '/node_modules/big.js/big.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/big.js/big.mjs' exists - use it as a name resolution result.", + "======== Module name 'big.js/big.mjs' was successfully resolved to '/node_modules/big.js/big.mjs' with Package ID 'big.js/big.mjs@6.2.1'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts" + ] + }, + "node16-esm": { + "name": "./big.mjs", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/big.js/big.mjs", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "extension", + "reasonFileName": "/node_modules/big.js/big.mjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'big.js/big.mjs' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'big.js/big.mjs' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/big.js/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './big.mjs' with target './big.mjs'.", + "File name '/node_modules/big.js/big.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/big.js/big.mts' does not exist.", + "File '/node_modules/big.js/big.d.mts' does not exist.", + "Export specifier './big.mjs' does not exist in package.json scope at path '/node_modules/big.js'.", + "File '/node_modules/@types/big.js/package.json' exists according to earlier cached lookups.", + "File name '/node_modules/@types/big.js/big.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/@types/big.js/big.d.mts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@types/big.js/big.mjs/index.d.ts'.", + "Loading module as file / folder, candidate module location '/node_modules/@types/big.js/big.mjs/index.d.ts', target file types: TypeScript, Declaration.", + "File name '/node_modules/@types/big.js/big.mjs/index.d.ts' has a '.d.ts' extension - stripping it.", + "File name '/node_modules/@types/big.js/big.mjs/index.js' has a '.js' extension - stripping it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/big.js/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './big.mjs' with target './big.mjs'.", + "File name '/node_modules/big.js/big.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/big.js/big.mjs' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'big.js/big.mjs' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/big.js/package.json' exists according to earlier cached lookups.", + "'package.json' does not have a 'typesVersions' field.", + "File name '/node_modules/big.js/big.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/big.js/big.mts' does not exist.", + "File '/node_modules/big.js/big.d.mts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' does not have a 'types' field.", + "'package.json' has 'main' field 'big' that references '/node_modules/big.js/big.mjs/big'.", + "Loading module as file / folder, candidate module location '/node_modules/big.js/big.mjs/big', target file types: TypeScript, Declaration.", + "File '/node_modules/@types/big.js/package.json' exists according to earlier cached lookups.", + "File name '/node_modules/@types/big.js/big.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/@types/big.js/big.d.mts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@types/big.js/big.mjs/index.d.ts'.", + "Loading module as file / folder, candidate module location '/node_modules/@types/big.js/big.mjs/index.d.ts', target file types: TypeScript, Declaration.", + "File name '/node_modules/@types/big.js/big.mjs/index.d.ts' has a '.d.ts' extension - stripping it.", + "File name '/node_modules/@types/big.js/big.mjs/index.js' has a '.js' extension - stripping it.", + "======== Module name 'big.js/big.mjs' was successfully resolved to '/node_modules/big.js/big.mjs' with Package ID 'big.js/big.mjs@6.2.1'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts" + ] + }, + "bundler": { + "name": "./big.mjs", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/big.js/big.mjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'big.js/big.mjs' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'big.js/big.mjs' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/big.js/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './big.mjs' with target './big.mjs'.", + "File name '/node_modules/big.js/big.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/big.js/big.mts' does not exist.", + "File '/node_modules/big.js/big.d.mts' does not exist.", + "Export specifier './big.mjs' does not exist in package.json scope at path '/node_modules/big.js'.", + "File '/node_modules/@types/big.js/package.json' exists according to earlier cached lookups.", + "File name '/node_modules/@types/big.js/big.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/@types/big.js/big.d.mts' does not exist.", + "File '/node_modules/@types/big.js/big.mjs.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@types/big.js/big.mjs/index.d.ts'.", + "Loading module as file / folder, candidate module location '/node_modules/@types/big.js/big.mjs/index.d.ts', target file types: TypeScript, Declaration.", + "File name '/node_modules/@types/big.js/big.mjs/index.d.ts' has a '.d.ts' extension - stripping it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/big.js/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './big.mjs' with target './big.mjs'.", + "File name '/node_modules/big.js/big.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/big.js/big.mjs' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'big.js/big.mjs' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/big.js/package.json' exists according to earlier cached lookups.", + "'package.json' does not have a 'typesVersions' field.", + "File name '/node_modules/big.js/big.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/big.js/big.mts' does not exist.", + "File '/node_modules/big.js/big.d.mts' does not exist.", + "File '/node_modules/big.js/big.mjs.ts' does not exist.", + "File '/node_modules/big.js/big.mjs.tsx' does not exist.", + "File '/node_modules/big.js/big.mjs.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' does not have a 'types' field.", + "'package.json' has 'main' field 'big' that references '/node_modules/big.js/big.mjs/big'.", + "Loading module as file / folder, candidate module location '/node_modules/big.js/big.mjs/big', target file types: TypeScript, Declaration.", + "File '/node_modules/@types/big.js/package.json' exists according to earlier cached lookups.", + "File name '/node_modules/@types/big.js/big.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/@types/big.js/big.d.mts' does not exist.", + "File '/node_modules/@types/big.js/big.mjs.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@types/big.js/big.mjs/index.d.ts'.", + "Loading module as file / folder, candidate module location '/node_modules/@types/big.js/big.mjs/index.d.ts', target file types: TypeScript, Declaration.", + "File name '/node_modules/@types/big.js/big.mjs/index.d.ts' has a '.d.ts' extension - stripping it.", + "======== Module name 'big.js/big.mjs' was successfully resolved to '/node_modules/big.js/big.mjs' with Package ID 'big.js/big.mjs@6.2.1'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts" + ] + } + }, + "hasTypes": false, + "isWildcard": false + }, + "./big.js": { + "subpath": "./big.js", + "resolutions": { + "node10": { + "name": "./big.js", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/big.js/big.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'big.js/big.js' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'big.js/big.js' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/big.js/package.json' exists according to earlier cached lookups.", + "File name '/node_modules/big.js/big.js' has a '.js' extension - stripping it.", + "File '/node_modules/big.js/big.ts' does not exist.", + "File '/node_modules/big.js/big.tsx' does not exist.", + "File '/node_modules/big.js/big.d.ts' does not exist.", + "File '/node_modules/big.js/big.js.ts' does not exist.", + "File '/node_modules/big.js/big.js.tsx' does not exist.", + "File '/node_modules/big.js/big.js.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' does not have a 'types' field.", + "'package.json' has 'main' field 'big' that references '/node_modules/big.js/big.js/big'.", + "Loading module as file / folder, candidate module location '/node_modules/big.js/big.js/big', target file types: TypeScript, Declaration.", + "File '/node_modules/@types/big.js/package.json' exists according to earlier cached lookups.", + "File name '/node_modules/@types/big.js/big.js' has a '.js' extension - stripping it.", + "File '/node_modules/@types/big.js/big.d.ts' does not exist.", + "File '/node_modules/@types/big.js/big.js.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@types/big.js/big.js/index.d.ts'.", + "Loading module as file / folder, candidate module location '/node_modules/@types/big.js/big.js/index.d.ts', target file types: TypeScript, Declaration.", + "File name '/node_modules/@types/big.js/big.js/index.d.ts' has a '.d.ts' extension - stripping it.", + "Loading module 'big.js/big.js' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/big.js/package.json' exists according to earlier cached lookups.", + "File name '/node_modules/big.js/big.js' has a '.js' extension - stripping it.", + "File '/node_modules/big.js/big.js' exists - use it as a name resolution result.", + "======== Module name 'big.js/big.js' was successfully resolved to '/node_modules/big.js/big.js' with Package ID 'big.js/big.js@6.2.1'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts" + ] + }, + "node16-cjs": { + "name": "./big.js", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/big.js/big.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/big.js/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'big.js/big.js' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'big.js/big.js' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/big.js/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './big.js' with target './big.js'.", + "File name '/node_modules/big.js/big.js' has a '.js' extension - stripping it.", + "File '/node_modules/big.js/big.ts' does not exist.", + "File '/node_modules/big.js/big.tsx' does not exist.", + "File '/node_modules/big.js/big.d.ts' does not exist.", + "Export specifier './big.js' does not exist in package.json scope at path '/node_modules/big.js'.", + "File '/node_modules/@types/big.js/package.json' exists according to earlier cached lookups.", + "File name '/node_modules/@types/big.js/big.js' has a '.js' extension - stripping it.", + "File '/node_modules/@types/big.js/big.d.ts' does not exist.", + "File '/node_modules/@types/big.js/big.js.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@types/big.js/big.js/index.d.ts'.", + "Loading module as file / folder, candidate module location '/node_modules/@types/big.js/big.js/index.d.ts', target file types: TypeScript, Declaration.", + "File name '/node_modules/@types/big.js/big.js/index.d.ts' has a '.d.ts' extension - stripping it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/big.js/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './big.js' with target './big.js'.", + "File name '/node_modules/big.js/big.js' has a '.js' extension - stripping it.", + "File '/node_modules/big.js/big.js' exists - use it as a name resolution result.", + "======== Module name 'big.js/big.js' was successfully resolved to '/node_modules/big.js/big.js' with Package ID 'big.js/big.js@6.2.1'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts" + ] + }, + "node16-esm": { + "name": "./big.js", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/big.js/big.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/big.js/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'big.js/big.js' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'big.js/big.js' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/big.js/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './big.js' with target './big.js'.", + "File name '/node_modules/big.js/big.js' has a '.js' extension - stripping it.", + "File '/node_modules/big.js/big.ts' does not exist.", + "File '/node_modules/big.js/big.tsx' does not exist.", + "File '/node_modules/big.js/big.d.ts' does not exist.", + "Export specifier './big.js' does not exist in package.json scope at path '/node_modules/big.js'.", + "File '/node_modules/@types/big.js/package.json' exists according to earlier cached lookups.", + "File name '/node_modules/@types/big.js/big.js' has a '.js' extension - stripping it.", + "File '/node_modules/@types/big.js/big.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@types/big.js/big.js/index.d.ts'.", + "Loading module as file / folder, candidate module location '/node_modules/@types/big.js/big.js/index.d.ts', target file types: TypeScript, Declaration.", + "File name '/node_modules/@types/big.js/big.js/index.d.ts' has a '.d.ts' extension - stripping it.", + "File name '/node_modules/@types/big.js/big.js/index.js' has a '.js' extension - stripping it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/big.js/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './big.js' with target './big.js'.", + "File name '/node_modules/big.js/big.js' has a '.js' extension - stripping it.", + "File '/node_modules/big.js/big.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'big.js/big.js' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/big.js/package.json' exists according to earlier cached lookups.", + "File name '/node_modules/big.js/big.js' has a '.js' extension - stripping it.", + "File '/node_modules/big.js/big.ts' does not exist.", + "File '/node_modules/big.js/big.tsx' does not exist.", + "File '/node_modules/big.js/big.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' does not have a 'types' field.", + "'package.json' has 'main' field 'big' that references '/node_modules/big.js/big.js/big'.", + "Loading module as file / folder, candidate module location '/node_modules/big.js/big.js/big', target file types: TypeScript, Declaration.", + "File '/node_modules/@types/big.js/package.json' exists according to earlier cached lookups.", + "File name '/node_modules/@types/big.js/big.js' has a '.js' extension - stripping it.", + "File '/node_modules/@types/big.js/big.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@types/big.js/big.js/index.d.ts'.", + "Loading module as file / folder, candidate module location '/node_modules/@types/big.js/big.js/index.d.ts', target file types: TypeScript, Declaration.", + "File name '/node_modules/@types/big.js/big.js/index.d.ts' has a '.d.ts' extension - stripping it.", + "File name '/node_modules/@types/big.js/big.js/index.js' has a '.js' extension - stripping it.", + "======== Module name 'big.js/big.js' was successfully resolved to '/node_modules/big.js/big.js' with Package ID 'big.js/big.js@6.2.1'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts" + ] + }, + "bundler": { + "name": "./big.js", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/big.js/big.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'big.js/big.js' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'big.js/big.js' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/big.js/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './big.js' with target './big.js'.", + "File name '/node_modules/big.js/big.js' has a '.js' extension - stripping it.", + "File '/node_modules/big.js/big.ts' does not exist.", + "File '/node_modules/big.js/big.tsx' does not exist.", + "File '/node_modules/big.js/big.d.ts' does not exist.", + "Export specifier './big.js' does not exist in package.json scope at path '/node_modules/big.js'.", + "File '/node_modules/@types/big.js/package.json' exists according to earlier cached lookups.", + "File name '/node_modules/@types/big.js/big.js' has a '.js' extension - stripping it.", + "File '/node_modules/@types/big.js/big.d.ts' does not exist.", + "File '/node_modules/@types/big.js/big.js.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@types/big.js/big.js/index.d.ts'.", + "Loading module as file / folder, candidate module location '/node_modules/@types/big.js/big.js/index.d.ts', target file types: TypeScript, Declaration.", + "File name '/node_modules/@types/big.js/big.js/index.d.ts' has a '.d.ts' extension - stripping it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/big.js/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './big.js' with target './big.js'.", + "File name '/node_modules/big.js/big.js' has a '.js' extension - stripping it.", + "File '/node_modules/big.js/big.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'big.js/big.js' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/big.js/package.json' exists according to earlier cached lookups.", + "File name '/node_modules/big.js/big.js' has a '.js' extension - stripping it.", + "File '/node_modules/big.js/big.ts' does not exist.", + "File '/node_modules/big.js/big.tsx' does not exist.", + "File '/node_modules/big.js/big.d.ts' does not exist.", + "File '/node_modules/big.js/big.js.ts' does not exist.", + "File '/node_modules/big.js/big.js.tsx' does not exist.", + "File '/node_modules/big.js/big.js.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' does not have a 'types' field.", + "'package.json' has 'main' field 'big' that references '/node_modules/big.js/big.js/big'.", + "Loading module as file / folder, candidate module location '/node_modules/big.js/big.js/big', target file types: TypeScript, Declaration.", + "File '/node_modules/@types/big.js/package.json' exists according to earlier cached lookups.", + "File name '/node_modules/@types/big.js/big.js' has a '.js' extension - stripping it.", + "File '/node_modules/@types/big.js/big.d.ts' does not exist.", + "File '/node_modules/@types/big.js/big.js.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@types/big.js/big.js/index.d.ts'.", + "Loading module as file / folder, candidate module location '/node_modules/@types/big.js/big.js/index.d.ts', target file types: TypeScript, Declaration.", + "File name '/node_modules/@types/big.js/big.js/index.d.ts' has a '.d.ts' extension - stripping it.", + "======== Module name 'big.js/big.js' was successfully resolved to '/node_modules/big.js/big.js' with Package ID 'big.js/big.js@6.2.1'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts" + ] + } + }, + "hasTypes": false, + "isWildcard": false + }, + "./package.json": { + "subpath": "./package.json", + "resolutions": { + "node10": { + "name": "./package.json", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/big.js/package.json", + "isJson": true, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'big.js/package.json' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'big.js/package.json' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/big.js/package.json' exists according to earlier cached lookups.", + "File name '/node_modules/big.js/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/big.js/package.d.json.ts' does not exist.", + "File '/node_modules/big.js/package.json.ts' does not exist.", + "File '/node_modules/big.js/package.json.tsx' does not exist.", + "File '/node_modules/big.js/package.json.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' does not have a 'types' field.", + "'package.json' has 'main' field 'big' that references '/node_modules/big.js/package.json/big'.", + "Loading module as file / folder, candidate module location '/node_modules/big.js/package.json/big', target file types: TypeScript, Declaration.", + "File '/node_modules/@types/big.js/package.json' exists according to earlier cached lookups.", + "File name '/node_modules/@types/big.js/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/@types/big.js/package.d.json.ts' does not exist.", + "File '/node_modules/@types/big.js/package.json.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@types/big.js/package.json/index.d.ts'.", + "Loading module as file / folder, candidate module location '/node_modules/@types/big.js/package.json/index.d.ts', target file types: TypeScript, Declaration.", + "File name '/node_modules/@types/big.js/package.json/index.d.ts' has a '.d.ts' extension - stripping it.", + "Loading module 'big.js/package.json' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/big.js/package.json' exists according to earlier cached lookups.", + "File name '/node_modules/big.js/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/big.js/package.json' exists - use it as a name resolution result.", + "======== Module name 'big.js/package.json' was successfully resolved to '/node_modules/big.js/package.json' with Package ID 'big.js/package.json@6.2.1'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/big.js/package.json" + ] + }, + "node16-cjs": { + "name": "./package.json", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/big.js/package.json", + "isJson": true, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'big.js/package.json' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'big.js/package.json' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/big.js/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './package.json' with target './package.json'.", + "File name '/node_modules/big.js/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/big.js/package.d.json.ts' does not exist.", + "Export specifier './package.json' does not exist in package.json scope at path '/node_modules/big.js'.", + "File '/node_modules/@types/big.js/package.json' exists according to earlier cached lookups.", + "File name '/node_modules/@types/big.js/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/@types/big.js/package.d.json.ts' does not exist.", + "File '/node_modules/@types/big.js/package.json.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@types/big.js/package.json/index.d.ts'.", + "Loading module as file / folder, candidate module location '/node_modules/@types/big.js/package.json/index.d.ts', target file types: TypeScript, Declaration.", + "File name '/node_modules/@types/big.js/package.json/index.d.ts' has a '.d.ts' extension - stripping it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/big.js/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './package.json' with target './package.json'.", + "File name '/node_modules/big.js/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/big.js/package.json' exists - use it as a name resolution result.", + "======== Module name 'big.js/package.json' was successfully resolved to '/node_modules/big.js/package.json' with Package ID 'big.js/package.json@6.2.1'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/big.js/package.json" + ] + }, + "node16-esm": { + "name": "./package.json", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/big.js/package.json", + "isJson": true, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'big.js/package.json' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'big.js/package.json' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/big.js/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './package.json' with target './package.json'.", + "File name '/node_modules/big.js/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/big.js/package.d.json.ts' does not exist.", + "Export specifier './package.json' does not exist in package.json scope at path '/node_modules/big.js'.", + "File '/node_modules/@types/big.js/package.json' exists according to earlier cached lookups.", + "File name '/node_modules/@types/big.js/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/@types/big.js/package.d.json.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@types/big.js/package.json/index.d.ts'.", + "Loading module as file / folder, candidate module location '/node_modules/@types/big.js/package.json/index.d.ts', target file types: TypeScript, Declaration.", + "File name '/node_modules/@types/big.js/package.json/index.d.ts' has a '.d.ts' extension - stripping it.", + "File name '/node_modules/@types/big.js/package.json/index.js' has a '.js' extension - stripping it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/big.js/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './package.json' with target './package.json'.", + "File name '/node_modules/big.js/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/big.js/package.json' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'big.js/package.json' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/big.js/package.json' exists according to earlier cached lookups.", + "File name '/node_modules/big.js/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/big.js/package.d.json.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' does not have a 'types' field.", + "'package.json' has 'main' field 'big' that references '/node_modules/big.js/package.json/big'.", + "Loading module as file / folder, candidate module location '/node_modules/big.js/package.json/big', target file types: TypeScript, Declaration.", + "File '/node_modules/@types/big.js/package.json' exists according to earlier cached lookups.", + "File name '/node_modules/@types/big.js/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/@types/big.js/package.d.json.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@types/big.js/package.json/index.d.ts'.", + "Loading module as file / folder, candidate module location '/node_modules/@types/big.js/package.json/index.d.ts', target file types: TypeScript, Declaration.", + "File name '/node_modules/@types/big.js/package.json/index.d.ts' has a '.d.ts' extension - stripping it.", + "File name '/node_modules/@types/big.js/package.json/index.js' has a '.js' extension - stripping it.", + "======== Module name 'big.js/package.json' was successfully resolved to '/node_modules/big.js/package.json' with Package ID 'big.js/package.json@6.2.1'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/big.js/package.json" + ] + }, + "bundler": { + "name": "./package.json", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/big.js/package.json", + "isJson": true, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'big.js/package.json' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'big.js/package.json' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/big.js/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './package.json' with target './package.json'.", + "File name '/node_modules/big.js/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/big.js/package.d.json.ts' does not exist.", + "Export specifier './package.json' does not exist in package.json scope at path '/node_modules/big.js'.", + "File '/node_modules/@types/big.js/package.json' exists according to earlier cached lookups.", + "File name '/node_modules/@types/big.js/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/@types/big.js/package.d.json.ts' does not exist.", + "File '/node_modules/@types/big.js/package.json.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@types/big.js/package.json/index.d.ts'.", + "Loading module as file / folder, candidate module location '/node_modules/@types/big.js/package.json/index.d.ts', target file types: TypeScript, Declaration.", + "File name '/node_modules/@types/big.js/package.json/index.d.ts' has a '.d.ts' extension - stripping it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/big.js/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './package.json' with target './package.json'.", + "File name '/node_modules/big.js/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/big.js/package.json' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'big.js/package.json' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/big.js/package.json' exists according to earlier cached lookups.", + "File name '/node_modules/big.js/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/big.js/package.d.json.ts' does not exist.", + "File '/node_modules/big.js/package.json.ts' does not exist.", + "File '/node_modules/big.js/package.json.tsx' does not exist.", + "File '/node_modules/big.js/package.json.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' does not have a 'types' field.", + "'package.json' has 'main' field 'big' that references '/node_modules/big.js/package.json/big'.", + "Loading module as file / folder, candidate module location '/node_modules/big.js/package.json/big', target file types: TypeScript, Declaration.", + "File '/node_modules/@types/big.js/package.json' exists according to earlier cached lookups.", + "File name '/node_modules/@types/big.js/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/@types/big.js/package.d.json.ts' does not exist.", + "File '/node_modules/@types/big.js/package.json.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@types/big.js/package.json/index.d.ts'.", + "Loading module as file / folder, candidate module location '/node_modules/@types/big.js/package.json/index.d.ts', target file types: TypeScript, Declaration.", + "File name '/node_modules/@types/big.js/package.json/index.d.ts' has a '.d.ts' extension - stripping it.", + "======== Module name 'big.js/package.json' was successfully resolved to '/node_modules/big.js/package.json' with Package ID 'big.js/package.json@6.2.1'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/big.js/package.json" + ] + } + }, + "hasTypes": false, + "isWildcard": false + } + }, + "problems": [ + { + "kind": "FalseCJS", + "entrypoint": ".", + "resolutionKind": "node16-esm" + }, + { + "kind": "UntypedResolution", + "entrypoint": "./big.mjs", + "resolutionKind": "node10" + }, + { + "kind": "UntypedResolution", + "entrypoint": "./big.mjs", + "resolutionKind": "node16-cjs" + }, + { + "kind": "CJSResolvesToESM", + "entrypoint": "./big.mjs", + "resolutionKind": "node16-cjs" + }, + { + "kind": "UntypedResolution", + "entrypoint": "./big.mjs", + "resolutionKind": "node16-esm" + }, + { + "kind": "UntypedResolution", + "entrypoint": "./big.mjs", + "resolutionKind": "bundler" + }, + { + "kind": "UntypedResolution", + "entrypoint": "./big.js", + "resolutionKind": "node10" + }, + { + "kind": "UntypedResolution", + "entrypoint": "./big.js", + "resolutionKind": "node16-cjs" + }, + { + "kind": "UntypedResolution", + "entrypoint": "./big.js", + "resolutionKind": "node16-esm" + }, + { + "kind": "UntypedResolution", + "entrypoint": "./big.js", + "resolutionKind": "bundler" + } + ] +} diff --git a/packages/core/test/snapshots/big.js@6.2.1.tgz.md b/packages/core/test/snapshots/big.js@6.2.1.tgz.md deleted file mode 100644 index ac48955..0000000 --- a/packages/core/test/snapshots/big.js@6.2.1.tgz.md +++ /dev/null @@ -1,58 +0,0 @@ -# big.js@6.2.1.tgz - -## Problems - -```json -[ - { - "kind": "FalseCJS", - "entrypoint": ".", - "resolutionKind": "node16-esm" - }, - { - "kind": "UntypedResolution", - "entrypoint": "./big.mjs", - "resolutionKind": "node10" - }, - { - "kind": "UntypedResolution", - "entrypoint": "./big.mjs", - "resolutionKind": "node16-cjs" - }, - { - "kind": "CJSResolvesToESM", - "entrypoint": "./big.mjs", - "resolutionKind": "node16-cjs" - }, - { - "kind": "UntypedResolution", - "entrypoint": "./big.mjs", - "resolutionKind": "node16-esm" - }, - { - "kind": "UntypedResolution", - "entrypoint": "./big.mjs", - "resolutionKind": "bundler" - }, - { - "kind": "UntypedResolution", - "entrypoint": "./big.js", - "resolutionKind": "node10" - }, - { - "kind": "UntypedResolution", - "entrypoint": "./big.js", - "resolutionKind": "node16-cjs" - }, - { - "kind": "UntypedResolution", - "entrypoint": "./big.js", - "resolutionKind": "node16-esm" - }, - { - "kind": "UntypedResolution", - "entrypoint": "./big.js", - "resolutionKind": "bundler" - } -] -``` \ No newline at end of file diff --git a/packages/core/test/snapshots/commander@10.0.1.tgz.json b/packages/core/test/snapshots/commander@10.0.1.tgz.json new file mode 100644 index 0000000..1af08ef --- /dev/null +++ b/packages/core/test/snapshots/commander@10.0.1.tgz.json @@ -0,0 +1,551 @@ +{ + "packageName": "commander", + "packageVersion": "10.0.1", + "types": { + "kind": "included" + }, + "buildTools": { + "typescript": "^4.9.4" + }, + "entrypoints": { + ".": { + "subpath": ".", + "resolutions": { + "node10": { + "name": ".", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/commander/typings/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'commander' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'commander' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/commander/package.json'.", + "File '/node_modules/commander.ts' does not exist.", + "File '/node_modules/commander.tsx' does not exist.", + "File '/node_modules/commander.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'typings/index.d.ts' that references '/node_modules/commander/typings/index.d.ts'.", + "File '/node_modules/commander/typings/index.d.ts' exists - use it as a name resolution result.", + "======== Module name 'commander' was successfully resolved to '/node_modules/commander/typings/index.d.ts' with Package ID 'commander/typings/index.d.ts@10.0.1'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/commander/index.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'commander' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'commander' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/commander/package.json'.", + "File '/node_modules/commander.ts' does not exist.", + "File '/node_modules/commander.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field './index.js' that references '/node_modules/commander/index.js'.", + "File '/node_modules/commander/index.js' exists - use it as a name resolution result.", + "File '/node_modules/commander/index.js' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/commander/index.js', target file types: TypeScript.", + "File name '/node_modules/commander/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/commander/index.ts' does not exist.", + "File '/node_modules/commander/index.tsx' does not exist.", + "File '/node_modules/commander/index.js.ts' does not exist.", + "File '/node_modules/commander/index.js.tsx' does not exist.", + "Directory '/node_modules/commander/index.js' does not exist, skipping all lookups in it.", + "File '/node_modules/commander/index.ts' does not exist.", + "File '/node_modules/commander/index.tsx' does not exist.", + "Loading module 'commander' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/commander/package.json' exists according to earlier cached lookups.", + "File '/node_modules/commander.js' does not exist.", + "File '/node_modules/commander.jsx' does not exist.", + "'package.json' has 'main' field './index.js' that references '/node_modules/commander/index.js'.", + "File '/node_modules/commander/index.js' exists - use it as a name resolution result.", + "======== Module name 'commander' was successfully resolved to '/node_modules/commander/index.js' with Package ID 'commander/index.js@10.0.1'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/commander/typings/index.d.ts" + ] + }, + "node16-cjs": { + "name": ".", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/commander/typings/index.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "type", + "reasonFileName": "/node_modules/commander/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'commander' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist.", + "Loading module 'commander' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/commander/package.json'.", + "Entering conditional exports.", + "Matched 'exports' condition 'types'.", + "Using 'exports' subpath '.' with target './typings/index.d.ts'.", + "File '/node_modules/commander/typings/index.d.ts' exists - use it as a name resolution result.", + "Resolved under condition 'types'.", + "Exiting conditional exports.", + "======== Module name 'commander' was successfully resolved to '/node_modules/commander/typings/index.d.ts' with Package ID 'commander/typings/index.d.ts@10.0.1'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/commander/index.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "type", + "reasonFileName": "/node_modules/commander/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'commander' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist.", + "Loading module 'commander' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/commander/package.json'.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Matched 'exports' condition 'require'.", + "Using 'exports' subpath '.' with target './index.js'.", + "File name '/node_modules/commander/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/commander/index.ts' does not exist.", + "File '/node_modules/commander/index.tsx' does not exist.", + "Failed to resolve under condition 'require'.", + "Saw non-matching condition 'import'.", + "Exiting conditional exports.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/commander/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Matched 'exports' condition 'require'.", + "Using 'exports' subpath '.' with target './index.js'.", + "File name '/node_modules/commander/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/commander/index.js' exists - use it as a name resolution result.", + "Resolved under condition 'require'.", + "Exiting conditional exports.", + "======== Module name 'commander' was successfully resolved to '/node_modules/commander/index.js' with Package ID 'commander/index.js@10.0.1'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/commander/typings/index.d.ts" + ] + }, + "node16-esm": { + "name": ".", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/commander/typings/index.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "type", + "reasonFileName": "/node_modules/commander/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'commander' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'commander' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/commander/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Matched 'exports' condition 'types'.", + "Using 'exports' subpath '.' with target './typings/index.d.ts'.", + "File '/node_modules/commander/typings/index.d.ts' exists - use it as a name resolution result.", + "Resolved under condition 'types'.", + "Exiting conditional exports.", + "======== Module name 'commander' was successfully resolved to '/node_modules/commander/typings/index.d.ts' with Package ID 'commander/typings/index.d.ts@10.0.1'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/commander/esm.mjs", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "extension", + "reasonFileName": "/node_modules/commander/esm.mjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'commander' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'commander' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/commander/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Saw non-matching condition 'require'.", + "Matched 'exports' condition 'import'.", + "Using 'exports' subpath '.' with target './esm.mjs'.", + "File name '/node_modules/commander/esm.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/commander/esm.mts' does not exist.", + "Failed to resolve under condition 'import'.", + "Exiting conditional exports.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/commander/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Saw non-matching condition 'require'.", + "Matched 'exports' condition 'import'.", + "Using 'exports' subpath '.' with target './esm.mjs'.", + "File name '/node_modules/commander/esm.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/commander/esm.mjs' exists - use it as a name resolution result.", + "Resolved under condition 'import'.", + "Exiting conditional exports.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'commander' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/commander/package.json' exists according to earlier cached lookups.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field './index.js' that references '/node_modules/commander/index.js'.", + "File '/node_modules/commander/index.js' exists - use it as a name resolution result.", + "File '/node_modules/commander/index.js' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/commander/index.js', target file types: TypeScript.", + "File name '/node_modules/commander/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/commander/index.ts' does not exist.", + "File '/node_modules/commander/index.tsx' does not exist.", + "File '/node_modules/commander/index.js.ts' does not exist.", + "File '/node_modules/commander/index.js.tsx' does not exist.", + "Directory '/node_modules/commander/index.js' does not exist, skipping all lookups in it.", + "======== Module name 'commander' was successfully resolved to '/node_modules/commander/esm.mjs' with Package ID 'commander/esm.mjs@10.0.1'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/commander/typings/index.d.ts" + ] + }, + "bundler": { + "name": ".", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/commander/typings/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'commander' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist.", + "Loading module 'commander' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/commander/package.json'.", + "Entering conditional exports.", + "Matched 'exports' condition 'types'.", + "Using 'exports' subpath '.' with target './typings/index.d.ts'.", + "File '/node_modules/commander/typings/index.d.ts' exists - use it as a name resolution result.", + "Resolved under condition 'types'.", + "Exiting conditional exports.", + "======== Module name 'commander' was successfully resolved to '/node_modules/commander/typings/index.d.ts' with Package ID 'commander/typings/index.d.ts@10.0.1'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/commander/esm.mjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'commander' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist.", + "Loading module 'commander' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/commander/package.json'.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Saw non-matching condition 'require'.", + "Matched 'exports' condition 'import'.", + "Using 'exports' subpath '.' with target './esm.mjs'.", + "File name '/node_modules/commander/esm.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/commander/esm.mts' does not exist.", + "Failed to resolve under condition 'import'.", + "Exiting conditional exports.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/commander/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Saw non-matching condition 'require'.", + "Matched 'exports' condition 'import'.", + "Using 'exports' subpath '.' with target './esm.mjs'.", + "File name '/node_modules/commander/esm.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/commander/esm.mjs' exists - use it as a name resolution result.", + "Resolved under condition 'import'.", + "Exiting conditional exports.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'commander' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/commander/package.json' exists according to earlier cached lookups.", + "File '/node_modules/commander.ts' does not exist.", + "File '/node_modules/commander.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field './index.js' that references '/node_modules/commander/index.js'.", + "File '/node_modules/commander/index.js' exists - use it as a name resolution result.", + "File '/node_modules/commander/index.js' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/commander/index.js', target file types: TypeScript.", + "File name '/node_modules/commander/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/commander/index.ts' does not exist.", + "File '/node_modules/commander/index.tsx' does not exist.", + "File '/node_modules/commander/index.js.ts' does not exist.", + "File '/node_modules/commander/index.js.tsx' does not exist.", + "Directory '/node_modules/commander/index.js' does not exist, skipping all lookups in it.", + "File '/node_modules/commander/index.ts' does not exist.", + "File '/node_modules/commander/index.tsx' does not exist.", + "======== Module name 'commander' was successfully resolved to '/node_modules/commander/esm.mjs' with Package ID 'commander/esm.mjs@10.0.1'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/commander/typings/index.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + }, + "./esm.mjs": { + "subpath": "./esm.mjs", + "resolutions": { + "node10": { + "name": "./esm.mjs", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/commander/esm.mjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'commander/esm.mjs' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'commander/esm.mjs' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/commander/package.json' exists according to earlier cached lookups.", + "File name '/node_modules/commander/esm.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/commander/esm.mts' does not exist.", + "File '/node_modules/commander/esm.d.mts' does not exist.", + "File '/node_modules/commander/esm.mjs.ts' does not exist.", + "File '/node_modules/commander/esm.mjs.tsx' does not exist.", + "File '/node_modules/commander/esm.mjs.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'typings/index.d.ts' that references '/node_modules/commander/esm.mjs/typings/index.d.ts'.", + "Loading module as file / folder, candidate module location '/node_modules/commander/esm.mjs/typings/index.d.ts', target file types: TypeScript, Declaration.", + "File name '/node_modules/commander/esm.mjs/typings/index.d.ts' has a '.d.ts' extension - stripping it.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "File name '/node_modules/@types/commander/esm.mjs' has a '.mjs' extension - stripping it.", + "Loading module 'commander/esm.mjs' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/commander/package.json' exists according to earlier cached lookups.", + "File name '/node_modules/commander/esm.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/commander/esm.mjs' exists - use it as a name resolution result.", + "======== Module name 'commander/esm.mjs' was successfully resolved to '/node_modules/commander/esm.mjs' with Package ID 'commander/esm.mjs@10.0.1'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts" + ] + }, + "node16-cjs": { + "name": "./esm.mjs", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/commander/esm.mjs", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "extension", + "reasonFileName": "/node_modules/commander/esm.mjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'commander/esm.mjs' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'commander/esm.mjs' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/commander/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './esm.mjs' with target './esm.mjs'.", + "File name '/node_modules/commander/esm.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/commander/esm.mts' does not exist.", + "File '/node_modules/commander/esm.d.mts' does not exist.", + "Export specifier './esm.mjs' does not exist in package.json scope at path '/node_modules/commander'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "File name '/node_modules/@types/commander/esm.mjs' has a '.mjs' extension - stripping it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/commander/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './esm.mjs' with target './esm.mjs'.", + "File name '/node_modules/commander/esm.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/commander/esm.mjs' exists - use it as a name resolution result.", + "======== Module name 'commander/esm.mjs' was successfully resolved to '/node_modules/commander/esm.mjs' with Package ID 'commander/esm.mjs@10.0.1'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts" + ] + }, + "node16-esm": { + "name": "./esm.mjs", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/commander/esm.mjs", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "extension", + "reasonFileName": "/node_modules/commander/esm.mjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'commander/esm.mjs' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'commander/esm.mjs' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/commander/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './esm.mjs' with target './esm.mjs'.", + "File name '/node_modules/commander/esm.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/commander/esm.mts' does not exist.", + "File '/node_modules/commander/esm.d.mts' does not exist.", + "Export specifier './esm.mjs' does not exist in package.json scope at path '/node_modules/commander'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "File name '/node_modules/@types/commander/esm.mjs' has a '.mjs' extension - stripping it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/commander/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './esm.mjs' with target './esm.mjs'.", + "File name '/node_modules/commander/esm.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/commander/esm.mjs' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'commander/esm.mjs' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/commander/package.json' exists according to earlier cached lookups.", + "'package.json' does not have a 'typesVersions' field.", + "File name '/node_modules/commander/esm.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/commander/esm.mts' does not exist.", + "File '/node_modules/commander/esm.d.mts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'typings/index.d.ts' that references '/node_modules/commander/esm.mjs/typings/index.d.ts'.", + "Loading module as file / folder, candidate module location '/node_modules/commander/esm.mjs/typings/index.d.ts', target file types: TypeScript, Declaration.", + "File name '/node_modules/commander/esm.mjs/typings/index.d.ts' has a '.d.ts' extension - stripping it.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "File name '/node_modules/@types/commander/esm.mjs' has a '.mjs' extension - stripping it.", + "======== Module name 'commander/esm.mjs' was successfully resolved to '/node_modules/commander/esm.mjs' with Package ID 'commander/esm.mjs@10.0.1'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts" + ] + }, + "bundler": { + "name": "./esm.mjs", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/commander/esm.mjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'commander/esm.mjs' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'commander/esm.mjs' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/commander/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './esm.mjs' with target './esm.mjs'.", + "File name '/node_modules/commander/esm.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/commander/esm.mts' does not exist.", + "File '/node_modules/commander/esm.d.mts' does not exist.", + "Export specifier './esm.mjs' does not exist in package.json scope at path '/node_modules/commander'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "File name '/node_modules/@types/commander/esm.mjs' has a '.mjs' extension - stripping it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/commander/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './esm.mjs' with target './esm.mjs'.", + "File name '/node_modules/commander/esm.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/commander/esm.mjs' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'commander/esm.mjs' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/commander/package.json' exists according to earlier cached lookups.", + "'package.json' does not have a 'typesVersions' field.", + "File name '/node_modules/commander/esm.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/commander/esm.mts' does not exist.", + "File '/node_modules/commander/esm.d.mts' does not exist.", + "File '/node_modules/commander/esm.mjs.ts' does not exist.", + "File '/node_modules/commander/esm.mjs.tsx' does not exist.", + "File '/node_modules/commander/esm.mjs.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'typings/index.d.ts' that references '/node_modules/commander/esm.mjs/typings/index.d.ts'.", + "Loading module as file / folder, candidate module location '/node_modules/commander/esm.mjs/typings/index.d.ts', target file types: TypeScript, Declaration.", + "File name '/node_modules/commander/esm.mjs/typings/index.d.ts' has a '.d.ts' extension - stripping it.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "File name '/node_modules/@types/commander/esm.mjs' has a '.mjs' extension - stripping it.", + "======== Module name 'commander/esm.mjs' was successfully resolved to '/node_modules/commander/esm.mjs' with Package ID 'commander/esm.mjs@10.0.1'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts" + ] + } + }, + "hasTypes": false, + "isWildcard": false + } + }, + "problems": [ + { + "kind": "FalseCJS", + "entrypoint": ".", + "resolutionKind": "node16-esm" + }, + { + "kind": "UntypedResolution", + "entrypoint": "./esm.mjs", + "resolutionKind": "node10" + }, + { + "kind": "UntypedResolution", + "entrypoint": "./esm.mjs", + "resolutionKind": "node16-cjs" + }, + { + "kind": "CJSResolvesToESM", + "entrypoint": "./esm.mjs", + "resolutionKind": "node16-cjs" + }, + { + "kind": "UntypedResolution", + "entrypoint": "./esm.mjs", + "resolutionKind": "node16-esm" + }, + { + "kind": "UntypedResolution", + "entrypoint": "./esm.mjs", + "resolutionKind": "bundler" + } + ] +} diff --git a/packages/core/test/snapshots/commander@10.0.1.tgz.md b/packages/core/test/snapshots/commander@10.0.1.tgz.md deleted file mode 100644 index 4e5f9b1..0000000 --- a/packages/core/test/snapshots/commander@10.0.1.tgz.md +++ /dev/null @@ -1,38 +0,0 @@ -# commander@10.0.1.tgz - -## Problems - -```json -[ - { - "kind": "FalseCJS", - "entrypoint": ".", - "resolutionKind": "node16-esm" - }, - { - "kind": "UntypedResolution", - "entrypoint": "./esm.mjs", - "resolutionKind": "node10" - }, - { - "kind": "UntypedResolution", - "entrypoint": "./esm.mjs", - "resolutionKind": "node16-cjs" - }, - { - "kind": "CJSResolvesToESM", - "entrypoint": "./esm.mjs", - "resolutionKind": "node16-cjs" - }, - { - "kind": "UntypedResolution", - "entrypoint": "./esm.mjs", - "resolutionKind": "node16-esm" - }, - { - "kind": "UntypedResolution", - "entrypoint": "./esm.mjs", - "resolutionKind": "bundler" - } -] -``` \ No newline at end of file diff --git a/packages/core/test/snapshots/ejs@3.1.9.tgz.json b/packages/core/test/snapshots/ejs@3.1.9.tgz.json new file mode 100644 index 0000000..08f32bb --- /dev/null +++ b/packages/core/test/snapshots/ejs@3.1.9.tgz.json @@ -0,0 +1,5 @@ +{ + "packageName": "ejs", + "packageVersion": "3.1.9", + "types": false +} diff --git a/packages/core/test/snapshots/ejs@3.1.9.tgz.md b/packages/core/test/snapshots/ejs@3.1.9.tgz.md deleted file mode 100644 index 7e49dad..0000000 --- a/packages/core/test/snapshots/ejs@3.1.9.tgz.md +++ /dev/null @@ -1,7 +0,0 @@ -# ejs@3.1.9.tgz - -## Problems - -```json -[] -``` \ No newline at end of file diff --git a/packages/core/test/snapshots/hexoid@1.0.0.tgz.json b/packages/core/test/snapshots/hexoid@1.0.0.tgz.json new file mode 100644 index 0000000..83c05fc --- /dev/null +++ b/packages/core/test/snapshots/hexoid@1.0.0.tgz.json @@ -0,0 +1,334 @@ +{ + "packageName": "hexoid", + "packageVersion": "1.0.0", + "types": { + "kind": "included" + }, + "buildTools": {}, + "entrypoints": { + ".": { + "subpath": ".", + "resolutions": { + "node10": { + "name": ".", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/hexoid/hexoid.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'hexoid' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'hexoid' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/hexoid/package.json'.", + "File '/node_modules/hexoid.ts' does not exist.", + "File '/node_modules/hexoid.tsx' does not exist.", + "File '/node_modules/hexoid.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'hexoid.d.ts' that references '/node_modules/hexoid/hexoid.d.ts'.", + "File '/node_modules/hexoid/hexoid.d.ts' exists - use it as a name resolution result.", + "======== Module name 'hexoid' was successfully resolved to '/node_modules/hexoid/hexoid.d.ts' with Package ID 'hexoid/hexoid.d.ts@1.0.0'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/hexoid/dist/index.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'hexoid' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'hexoid' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/hexoid/package.json'.", + "File '/node_modules/hexoid.ts' does not exist.", + "File '/node_modules/hexoid.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'dist/index.js' that references '/node_modules/hexoid/dist/index.js'.", + "File '/node_modules/hexoid/dist/index.js' exists - use it as a name resolution result.", + "File '/node_modules/hexoid/dist/index.js' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/hexoid/dist/index.js', target file types: TypeScript.", + "File name '/node_modules/hexoid/dist/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/hexoid/dist/index.ts' does not exist.", + "File '/node_modules/hexoid/dist/index.tsx' does not exist.", + "File '/node_modules/hexoid/dist/index.js.ts' does not exist.", + "File '/node_modules/hexoid/dist/index.js.tsx' does not exist.", + "Directory '/node_modules/hexoid/dist/index.js' does not exist, skipping all lookups in it.", + "File '/node_modules/hexoid/index.ts' does not exist.", + "File '/node_modules/hexoid/index.tsx' does not exist.", + "Loading module 'hexoid' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/hexoid/package.json' exists according to earlier cached lookups.", + "File '/node_modules/hexoid.js' does not exist.", + "File '/node_modules/hexoid.jsx' does not exist.", + "'package.json' has 'main' field 'dist/index.js' that references '/node_modules/hexoid/dist/index.js'.", + "File '/node_modules/hexoid/dist/index.js' exists - use it as a name resolution result.", + "======== Module name 'hexoid' was successfully resolved to '/node_modules/hexoid/dist/index.js' with Package ID 'hexoid/dist/index.js@1.0.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/hexoid/hexoid.d.ts" + ] + }, + "node16-cjs": { + "name": ".", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/hexoid/hexoid.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/hexoid/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'hexoid' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist.", + "Loading module 'hexoid' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/hexoid/package.json'.", + "File '/node_modules/hexoid.ts' does not exist.", + "File '/node_modules/hexoid.tsx' does not exist.", + "File '/node_modules/hexoid.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'hexoid.d.ts' that references '/node_modules/hexoid/hexoid.d.ts'.", + "File '/node_modules/hexoid/hexoid.d.ts' exists - use it as a name resolution result.", + "======== Module name 'hexoid' was successfully resolved to '/node_modules/hexoid/hexoid.d.ts' with Package ID 'hexoid/hexoid.d.ts@1.0.0'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/hexoid/dist/index.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/hexoid/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'hexoid' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist.", + "Loading module 'hexoid' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/hexoid/package.json'.", + "File '/node_modules/hexoid.ts' does not exist.", + "File '/node_modules/hexoid.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'dist/index.js' that references '/node_modules/hexoid/dist/index.js'.", + "File '/node_modules/hexoid/dist/index.js' exists - use it as a name resolution result.", + "File '/node_modules/hexoid/dist/index.js' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/hexoid/dist/index.js', target file types: TypeScript.", + "File name '/node_modules/hexoid/dist/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/hexoid/dist/index.ts' does not exist.", + "File '/node_modules/hexoid/dist/index.tsx' does not exist.", + "File '/node_modules/hexoid/dist/index.js.ts' does not exist.", + "File '/node_modules/hexoid/dist/index.js.tsx' does not exist.", + "Directory '/node_modules/hexoid/dist/index.js' does not exist, skipping all lookups in it.", + "File '/node_modules/hexoid/index.ts' does not exist.", + "File '/node_modules/hexoid/index.tsx' does not exist.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/hexoid/package.json' exists according to earlier cached lookups.", + "File '/node_modules/hexoid.js' does not exist.", + "File '/node_modules/hexoid.jsx' does not exist.", + "'package.json' has 'main' field 'dist/index.js' that references '/node_modules/hexoid/dist/index.js'.", + "File '/node_modules/hexoid/dist/index.js' exists - use it as a name resolution result.", + "======== Module name 'hexoid' was successfully resolved to '/node_modules/hexoid/dist/index.js' with Package ID 'hexoid/dist/index.js@1.0.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/hexoid/hexoid.d.ts" + ] + }, + "node16-esm": { + "name": ".", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/hexoid/hexoid.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/hexoid/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'hexoid' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'hexoid' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/hexoid/package.json' exists according to earlier cached lookups.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'hexoid.d.ts' that references '/node_modules/hexoid/hexoid.d.ts'.", + "File '/node_modules/hexoid/hexoid.d.ts' exists - use it as a name resolution result.", + "======== Module name 'hexoid' was successfully resolved to '/node_modules/hexoid/hexoid.d.ts' with Package ID 'hexoid/hexoid.d.ts@1.0.0'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/hexoid/dist/index.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/hexoid/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'hexoid' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'hexoid' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/hexoid/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'dist/index.js' that references '/node_modules/hexoid/dist/index.js'.", + "File '/node_modules/hexoid/dist/index.js' exists - use it as a name resolution result.", + "File '/node_modules/hexoid/dist/index.js' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/hexoid/dist/index.js', target file types: TypeScript.", + "File name '/node_modules/hexoid/dist/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/hexoid/dist/index.ts' does not exist.", + "File '/node_modules/hexoid/dist/index.tsx' does not exist.", + "File '/node_modules/hexoid/dist/index.js.ts' does not exist.", + "File '/node_modules/hexoid/dist/index.js.tsx' does not exist.", + "Directory '/node_modules/hexoid/dist/index.js' does not exist, skipping all lookups in it.", + "File name '/node_modules/hexoid/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/hexoid/index.ts' does not exist.", + "File '/node_modules/hexoid/index.tsx' does not exist.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/hexoid/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'dist/index.js' that references '/node_modules/hexoid/dist/index.js'.", + "File '/node_modules/hexoid/dist/index.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'hexoid' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/hexoid/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'dist/index.js' that references '/node_modules/hexoid/dist/index.js'.", + "File '/node_modules/hexoid/dist/index.js' exists - use it as a name resolution result.", + "File '/node_modules/hexoid/dist/index.js' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/hexoid/dist/index.js', target file types: TypeScript.", + "File name '/node_modules/hexoid/dist/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/hexoid/dist/index.ts' does not exist.", + "File '/node_modules/hexoid/dist/index.tsx' does not exist.", + "File '/node_modules/hexoid/dist/index.js.ts' does not exist.", + "File '/node_modules/hexoid/dist/index.js.tsx' does not exist.", + "Directory '/node_modules/hexoid/dist/index.js' does not exist, skipping all lookups in it.", + "File name '/node_modules/hexoid/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/hexoid/index.ts' does not exist.", + "File '/node_modules/hexoid/index.tsx' does not exist.", + "======== Module name 'hexoid' was successfully resolved to '/node_modules/hexoid/dist/index.js' with Package ID 'hexoid/dist/index.js@1.0.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/hexoid/hexoid.d.ts" + ] + }, + "bundler": { + "name": ".", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/hexoid/hexoid.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'hexoid' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist.", + "Loading module 'hexoid' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/hexoid/package.json'.", + "File '/node_modules/hexoid.ts' does not exist.", + "File '/node_modules/hexoid.tsx' does not exist.", + "File '/node_modules/hexoid.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'hexoid.d.ts' that references '/node_modules/hexoid/hexoid.d.ts'.", + "File '/node_modules/hexoid/hexoid.d.ts' exists - use it as a name resolution result.", + "======== Module name 'hexoid' was successfully resolved to '/node_modules/hexoid/hexoid.d.ts' with Package ID 'hexoid/hexoid.d.ts@1.0.0'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/hexoid/dist/index.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'hexoid' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist.", + "Loading module 'hexoid' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/hexoid/package.json'.", + "File '/node_modules/hexoid.ts' does not exist.", + "File '/node_modules/hexoid.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'dist/index.js' that references '/node_modules/hexoid/dist/index.js'.", + "File '/node_modules/hexoid/dist/index.js' exists - use it as a name resolution result.", + "File '/node_modules/hexoid/dist/index.js' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/hexoid/dist/index.js', target file types: TypeScript.", + "File name '/node_modules/hexoid/dist/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/hexoid/dist/index.ts' does not exist.", + "File '/node_modules/hexoid/dist/index.tsx' does not exist.", + "File '/node_modules/hexoid/dist/index.js.ts' does not exist.", + "File '/node_modules/hexoid/dist/index.js.tsx' does not exist.", + "Directory '/node_modules/hexoid/dist/index.js' does not exist, skipping all lookups in it.", + "File '/node_modules/hexoid/index.ts' does not exist.", + "File '/node_modules/hexoid/index.tsx' does not exist.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/hexoid/package.json' exists according to earlier cached lookups.", + "File '/node_modules/hexoid.js' does not exist.", + "File '/node_modules/hexoid.jsx' does not exist.", + "'package.json' has 'main' field 'dist/index.js' that references '/node_modules/hexoid/dist/index.js'.", + "File '/node_modules/hexoid/dist/index.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'hexoid' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/hexoid/package.json' exists according to earlier cached lookups.", + "File '/node_modules/hexoid.ts' does not exist.", + "File '/node_modules/hexoid.tsx' does not exist.", + "'package.json' has 'main' field 'dist/index.js' that references '/node_modules/hexoid/dist/index.js'.", + "File '/node_modules/hexoid/dist/index.js' exists - use it as a name resolution result.", + "File '/node_modules/hexoid/dist/index.js' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/hexoid/dist/index.js', target file types: TypeScript.", + "File name '/node_modules/hexoid/dist/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/hexoid/dist/index.ts' does not exist.", + "File '/node_modules/hexoid/dist/index.tsx' does not exist.", + "File '/node_modules/hexoid/dist/index.js.ts' does not exist.", + "File '/node_modules/hexoid/dist/index.js.tsx' does not exist.", + "Directory '/node_modules/hexoid/dist/index.js' does not exist, skipping all lookups in it.", + "File '/node_modules/hexoid/index.ts' does not exist.", + "File '/node_modules/hexoid/index.tsx' does not exist.", + "======== Module name 'hexoid' was successfully resolved to '/node_modules/hexoid/dist/index.js' with Package ID 'hexoid/dist/index.js@1.0.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/hexoid/hexoid.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + } + }, + "problems": [ + { + "kind": "FalseExportDefault", + "entrypoint": ".", + "resolutionKind": "node16-esm" + } + ] +} diff --git a/packages/core/test/snapshots/hexoid@1.0.0.tgz.md b/packages/core/test/snapshots/hexoid@1.0.0.tgz.md deleted file mode 100644 index a6f500b..0000000 --- a/packages/core/test/snapshots/hexoid@1.0.0.tgz.md +++ /dev/null @@ -1,13 +0,0 @@ -# hexoid@1.0.0.tgz - -## Problems - -```json -[ - { - "kind": "FalseExportDefault", - "entrypoint": ".", - "resolutionKind": "node16-esm" - } -] -``` \ No newline at end of file diff --git a/packages/core/test/snapshots/klona@2.0.6.tgz.json b/packages/core/test/snapshots/klona@2.0.6.tgz.json new file mode 100644 index 0000000..14e6faf --- /dev/null +++ b/packages/core/test/snapshots/klona@2.0.6.tgz.json @@ -0,0 +1,1459 @@ +{ + "packageName": "klona", + "packageVersion": "2.0.6", + "types": { + "kind": "included" + }, + "buildTools": {}, + "entrypoints": { + ".": { + "subpath": ".", + "resolutions": { + "node10": { + "name": ".", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/klona/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'klona' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'klona' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/klona/package.json'.", + "File '/node_modules/klona.ts' does not exist.", + "File '/node_modules/klona.tsx' does not exist.", + "File '/node_modules/klona.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/klona/index.d.ts'.", + "File '/node_modules/klona/index.d.ts' exists - use it as a name resolution result.", + "======== Module name 'klona' was successfully resolved to '/node_modules/klona/index.d.ts' with Package ID 'klona/index.d.ts@2.0.6'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/klona/dist/index.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'klona' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'klona' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/klona/package.json'.", + "File '/node_modules/klona.ts' does not exist.", + "File '/node_modules/klona.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'dist/index.js' that references '/node_modules/klona/dist/index.js'.", + "File '/node_modules/klona/dist/index.js' exists - use it as a name resolution result.", + "File '/node_modules/klona/dist/index.js' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/klona/dist/index.js', target file types: TypeScript.", + "File name '/node_modules/klona/dist/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/klona/dist/index.ts' does not exist.", + "File '/node_modules/klona/dist/index.tsx' does not exist.", + "File '/node_modules/klona/dist/index.js.ts' does not exist.", + "File '/node_modules/klona/dist/index.js.tsx' does not exist.", + "Directory '/node_modules/klona/dist/index.js' does not exist, skipping all lookups in it.", + "File '/node_modules/klona/index.ts' does not exist.", + "File '/node_modules/klona/index.tsx' does not exist.", + "Loading module 'klona' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/klona/package.json' exists according to earlier cached lookups.", + "File '/node_modules/klona.js' does not exist.", + "File '/node_modules/klona.jsx' does not exist.", + "'package.json' has 'main' field 'dist/index.js' that references '/node_modules/klona/dist/index.js'.", + "File '/node_modules/klona/dist/index.js' exists - use it as a name resolution result.", + "======== Module name 'klona' was successfully resolved to '/node_modules/klona/dist/index.js' with Package ID 'klona/dist/index.js@2.0.6'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/klona/index.d.ts" + ] + }, + "node16-cjs": { + "name": ".", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/klona/index.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/klona/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'klona' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist.", + "Loading module 'klona' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/klona/package.json'.", + "Entering conditional exports.", + "Matched 'exports' condition 'types'.", + "Using 'exports' subpath '.' with target './index.d.ts'.", + "File '/node_modules/klona/index.d.ts' exists - use it as a name resolution result.", + "Resolved under condition 'types'.", + "Exiting conditional exports.", + "======== Module name 'klona' was successfully resolved to '/node_modules/klona/index.d.ts' with Package ID 'klona/index.d.ts@2.0.6'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/klona/dist/index.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/klona/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'klona' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist.", + "Loading module 'klona' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/klona/package.json'.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Saw non-matching condition 'import'.", + "Matched 'exports' condition 'require'.", + "Using 'exports' subpath '.' with target './dist/index.js'.", + "File name '/node_modules/klona/dist/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/klona/dist/index.ts' does not exist.", + "File '/node_modules/klona/dist/index.tsx' does not exist.", + "Failed to resolve under condition 'require'.", + "Exiting conditional exports.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/klona/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Saw non-matching condition 'import'.", + "Matched 'exports' condition 'require'.", + "Using 'exports' subpath '.' with target './dist/index.js'.", + "File name '/node_modules/klona/dist/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/klona/dist/index.js' exists - use it as a name resolution result.", + "Resolved under condition 'require'.", + "Exiting conditional exports.", + "======== Module name 'klona' was successfully resolved to '/node_modules/klona/dist/index.js' with Package ID 'klona/dist/index.js@2.0.6'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/klona/index.d.ts" + ] + }, + "node16-esm": { + "name": ".", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/klona/index.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/klona/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'klona' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'klona' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/klona/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Matched 'exports' condition 'types'.", + "Using 'exports' subpath '.' with target './index.d.ts'.", + "File '/node_modules/klona/index.d.ts' exists - use it as a name resolution result.", + "Resolved under condition 'types'.", + "Exiting conditional exports.", + "======== Module name 'klona' was successfully resolved to '/node_modules/klona/index.d.ts' with Package ID 'klona/index.d.ts@2.0.6'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/klona/dist/index.mjs", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "extension", + "reasonFileName": "/node_modules/klona/dist/index.mjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'klona' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'klona' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/klona/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Matched 'exports' condition 'import'.", + "Using 'exports' subpath '.' with target './dist/index.mjs'.", + "File name '/node_modules/klona/dist/index.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/klona/dist/index.mts' does not exist.", + "Failed to resolve under condition 'import'.", + "Saw non-matching condition 'require'.", + "Exiting conditional exports.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/klona/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Matched 'exports' condition 'import'.", + "Using 'exports' subpath '.' with target './dist/index.mjs'.", + "File name '/node_modules/klona/dist/index.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/klona/dist/index.mjs' exists - use it as a name resolution result.", + "Resolved under condition 'import'.", + "Exiting conditional exports.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'klona' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/klona/package.json' exists according to earlier cached lookups.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'dist/index.js' that references '/node_modules/klona/dist/index.js'.", + "File '/node_modules/klona/dist/index.js' exists - use it as a name resolution result.", + "File '/node_modules/klona/dist/index.js' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/klona/dist/index.js', target file types: TypeScript.", + "File name '/node_modules/klona/dist/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/klona/dist/index.ts' does not exist.", + "File '/node_modules/klona/dist/index.tsx' does not exist.", + "File '/node_modules/klona/dist/index.js.ts' does not exist.", + "File '/node_modules/klona/dist/index.js.tsx' does not exist.", + "Directory '/node_modules/klona/dist/index.js' does not exist, skipping all lookups in it.", + "======== Module name 'klona' was successfully resolved to '/node_modules/klona/dist/index.mjs' with Package ID 'klona/dist/index.mjs@2.0.6'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/klona/index.d.ts" + ] + }, + "bundler": { + "name": ".", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/klona/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'klona' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist.", + "Loading module 'klona' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/klona/package.json'.", + "Entering conditional exports.", + "Matched 'exports' condition 'types'.", + "Using 'exports' subpath '.' with target './index.d.ts'.", + "File '/node_modules/klona/index.d.ts' exists - use it as a name resolution result.", + "Resolved under condition 'types'.", + "Exiting conditional exports.", + "======== Module name 'klona' was successfully resolved to '/node_modules/klona/index.d.ts' with Package ID 'klona/index.d.ts@2.0.6'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/klona/dist/index.mjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'klona' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist.", + "Loading module 'klona' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/klona/package.json'.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Matched 'exports' condition 'import'.", + "Using 'exports' subpath '.' with target './dist/index.mjs'.", + "File name '/node_modules/klona/dist/index.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/klona/dist/index.mts' does not exist.", + "Failed to resolve under condition 'import'.", + "Saw non-matching condition 'require'.", + "Exiting conditional exports.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/klona/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Matched 'exports' condition 'import'.", + "Using 'exports' subpath '.' with target './dist/index.mjs'.", + "File name '/node_modules/klona/dist/index.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/klona/dist/index.mjs' exists - use it as a name resolution result.", + "Resolved under condition 'import'.", + "Exiting conditional exports.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'klona' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/klona/package.json' exists according to earlier cached lookups.", + "File '/node_modules/klona.ts' does not exist.", + "File '/node_modules/klona.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'dist/index.js' that references '/node_modules/klona/dist/index.js'.", + "File '/node_modules/klona/dist/index.js' exists - use it as a name resolution result.", + "File '/node_modules/klona/dist/index.js' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/klona/dist/index.js', target file types: TypeScript.", + "File name '/node_modules/klona/dist/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/klona/dist/index.ts' does not exist.", + "File '/node_modules/klona/dist/index.tsx' does not exist.", + "File '/node_modules/klona/dist/index.js.ts' does not exist.", + "File '/node_modules/klona/dist/index.js.tsx' does not exist.", + "Directory '/node_modules/klona/dist/index.js' does not exist, skipping all lookups in it.", + "File '/node_modules/klona/index.ts' does not exist.", + "File '/node_modules/klona/index.tsx' does not exist.", + "======== Module name 'klona' was successfully resolved to '/node_modules/klona/dist/index.mjs' with Package ID 'klona/dist/index.mjs@2.0.6'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/klona/index.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + }, + "./json": { + "subpath": "./json", + "resolutions": { + "node10": { + "name": "./json", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/klona/json/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'klona/json' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'klona/json' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/klona/json/package.json' does not exist.", + "File '/node_modules/klona/package.json' exists according to earlier cached lookups.", + "File '/node_modules/klona/json.ts' does not exist.", + "File '/node_modules/klona/json.tsx' does not exist.", + "File '/node_modules/klona/json.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/klona/json/index.d.ts'.", + "File '/node_modules/klona/json/index.d.ts' exists - use it as a name resolution result.", + "======== Module name 'klona/json' was successfully resolved to '/node_modules/klona/json/index.d.ts' with Package ID 'klona/json/index.d.ts@2.0.6'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/klona/json/index.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'klona/json' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'klona/json' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/klona/json/package.json' does not exist.", + "File '/node_modules/klona/package.json' exists according to earlier cached lookups.", + "File '/node_modules/klona/json.ts' does not exist.", + "File '/node_modules/klona/json.tsx' does not exist.", + "'package.json' has 'main' field 'dist/index.js' that references '/node_modules/klona/json/dist/index.js'.", + "Loading module as file / folder, candidate module location '/node_modules/klona/json/dist/index.js', target file types: TypeScript.", + "File name '/node_modules/klona/json/dist/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/klona/json/index.ts' does not exist.", + "File '/node_modules/klona/json/index.tsx' does not exist.", + "Loading module 'klona/json' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/klona/json/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/klona/package.json' exists according to earlier cached lookups.", + "File '/node_modules/klona/json.js' does not exist.", + "File '/node_modules/klona/json.jsx' does not exist.", + "'package.json' has 'main' field 'dist/index.js' that references '/node_modules/klona/json/dist/index.js'.", + "Loading module as file / folder, candidate module location '/node_modules/klona/json/dist/index.js', target file types: JavaScript, JSON.", + "File name '/node_modules/klona/json/dist/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/klona/json/index.js' exists - use it as a name resolution result.", + "======== Module name 'klona/json' was successfully resolved to '/node_modules/klona/json/index.js' with Package ID 'klona/json/index.js@2.0.6'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/klona/json/index.d.ts" + ] + }, + "node16-cjs": { + "name": "./json", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/klona/index.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/klona/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'klona/json' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'klona/json' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/klona/json/package.json' does not exist.", + "File '/node_modules/klona/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Matched 'exports' condition 'types'.", + "Using 'exports' subpath './json' with target './index.d.ts'.", + "File '/node_modules/klona/index.d.ts' exists - use it as a name resolution result.", + "Resolved under condition 'types'.", + "Exiting conditional exports.", + "======== Module name 'klona/json' was successfully resolved to '/node_modules/klona/index.d.ts' with Package ID 'klona/index.d.ts@2.0.6'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/klona/json/index.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/klona/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'klona/json' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'klona/json' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/klona/json/package.json' does not exist.", + "File '/node_modules/klona/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Saw non-matching condition 'import'.", + "Matched 'exports' condition 'require'.", + "Using 'exports' subpath './json' with target './json/index.js'.", + "File name '/node_modules/klona/json/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/klona/json/index.ts' does not exist.", + "File '/node_modules/klona/json/index.tsx' does not exist.", + "Failed to resolve under condition 'require'.", + "Exiting conditional exports.", + "Export specifier './json' does not exist in package.json scope at path '/node_modules/klona'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/klona/json/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/klona/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Saw non-matching condition 'import'.", + "Matched 'exports' condition 'require'.", + "Using 'exports' subpath './json' with target './json/index.js'.", + "File name '/node_modules/klona/json/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/klona/json/index.js' exists - use it as a name resolution result.", + "Resolved under condition 'require'.", + "Exiting conditional exports.", + "======== Module name 'klona/json' was successfully resolved to '/node_modules/klona/json/index.js' with Package ID 'klona/json/index.js@2.0.6'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/klona/index.d.ts" + ] + }, + "node16-esm": { + "name": "./json", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/klona/index.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/klona/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'klona/json' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'klona/json' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/klona/json/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/klona/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Matched 'exports' condition 'types'.", + "Using 'exports' subpath './json' with target './index.d.ts'.", + "File '/node_modules/klona/index.d.ts' exists - use it as a name resolution result.", + "Resolved under condition 'types'.", + "Exiting conditional exports.", + "======== Module name 'klona/json' was successfully resolved to '/node_modules/klona/index.d.ts' with Package ID 'klona/index.d.ts@2.0.6'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/klona/json/index.mjs", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "extension", + "reasonFileName": "/node_modules/klona/json/index.mjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'klona/json' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'klona/json' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/klona/json/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/klona/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Matched 'exports' condition 'import'.", + "Using 'exports' subpath './json' with target './json/index.mjs'.", + "File name '/node_modules/klona/json/index.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/klona/json/index.mts' does not exist.", + "Failed to resolve under condition 'import'.", + "Saw non-matching condition 'require'.", + "Exiting conditional exports.", + "Export specifier './json' does not exist in package.json scope at path '/node_modules/klona'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/klona/json/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/klona/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Matched 'exports' condition 'import'.", + "Using 'exports' subpath './json' with target './json/index.mjs'.", + "File name '/node_modules/klona/json/index.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/klona/json/index.mjs' exists - use it as a name resolution result.", + "Resolved under condition 'import'.", + "Exiting conditional exports.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'klona/json' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/klona/json/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/klona/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'dist/index.js' that references '/node_modules/klona/json/dist/index.js'.", + "Loading module as file / folder, candidate module location '/node_modules/klona/json/dist/index.js', target file types: TypeScript.", + "File name '/node_modules/klona/json/dist/index.js' has a '.js' extension - stripping it.", + "======== Module name 'klona/json' was successfully resolved to '/node_modules/klona/json/index.mjs' with Package ID 'klona/json/index.mjs@2.0.6'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/klona/index.d.ts" + ] + }, + "bundler": { + "name": "./json", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/klona/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'klona/json' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'klona/json' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/klona/json/package.json' does not exist.", + "File '/node_modules/klona/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Matched 'exports' condition 'types'.", + "Using 'exports' subpath './json' with target './index.d.ts'.", + "File '/node_modules/klona/index.d.ts' exists - use it as a name resolution result.", + "Resolved under condition 'types'.", + "Exiting conditional exports.", + "======== Module name 'klona/json' was successfully resolved to '/node_modules/klona/index.d.ts' with Package ID 'klona/index.d.ts@2.0.6'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/klona/json/index.mjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'klona/json' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'klona/json' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/klona/json/package.json' does not exist.", + "File '/node_modules/klona/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Matched 'exports' condition 'import'.", + "Using 'exports' subpath './json' with target './json/index.mjs'.", + "File name '/node_modules/klona/json/index.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/klona/json/index.mts' does not exist.", + "Failed to resolve under condition 'import'.", + "Saw non-matching condition 'require'.", + "Exiting conditional exports.", + "Export specifier './json' does not exist in package.json scope at path '/node_modules/klona'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/klona/json/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/klona/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Matched 'exports' condition 'import'.", + "Using 'exports' subpath './json' with target './json/index.mjs'.", + "File name '/node_modules/klona/json/index.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/klona/json/index.mjs' exists - use it as a name resolution result.", + "Resolved under condition 'import'.", + "Exiting conditional exports.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'klona/json' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/klona/json/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/klona/package.json' exists according to earlier cached lookups.", + "File '/node_modules/klona/json.ts' does not exist.", + "File '/node_modules/klona/json.tsx' does not exist.", + "'package.json' has 'main' field 'dist/index.js' that references '/node_modules/klona/json/dist/index.js'.", + "Loading module as file / folder, candidate module location '/node_modules/klona/json/dist/index.js', target file types: TypeScript.", + "File name '/node_modules/klona/json/dist/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/klona/json/index.ts' does not exist.", + "File '/node_modules/klona/json/index.tsx' does not exist.", + "======== Module name 'klona/json' was successfully resolved to '/node_modules/klona/json/index.mjs' with Package ID 'klona/json/index.mjs@2.0.6'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/klona/index.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + }, + "./lite": { + "subpath": "./lite", + "resolutions": { + "node10": { + "name": "./lite", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/klona/lite/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'klona/lite' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'klona/lite' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/klona/lite/package.json' does not exist.", + "File '/node_modules/klona/package.json' exists according to earlier cached lookups.", + "File '/node_modules/klona/lite.ts' does not exist.", + "File '/node_modules/klona/lite.tsx' does not exist.", + "File '/node_modules/klona/lite.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/klona/lite/index.d.ts'.", + "File '/node_modules/klona/lite/index.d.ts' exists - use it as a name resolution result.", + "======== Module name 'klona/lite' was successfully resolved to '/node_modules/klona/lite/index.d.ts' with Package ID 'klona/lite/index.d.ts@2.0.6'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/klona/lite/index.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'klona/lite' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'klona/lite' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/klona/lite/package.json' does not exist.", + "File '/node_modules/klona/package.json' exists according to earlier cached lookups.", + "File '/node_modules/klona/lite.ts' does not exist.", + "File '/node_modules/klona/lite.tsx' does not exist.", + "'package.json' has 'main' field 'dist/index.js' that references '/node_modules/klona/lite/dist/index.js'.", + "Loading module as file / folder, candidate module location '/node_modules/klona/lite/dist/index.js', target file types: TypeScript.", + "File name '/node_modules/klona/lite/dist/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/klona/lite/index.ts' does not exist.", + "File '/node_modules/klona/lite/index.tsx' does not exist.", + "Loading module 'klona/lite' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/klona/lite/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/klona/package.json' exists according to earlier cached lookups.", + "File '/node_modules/klona/lite.js' does not exist.", + "File '/node_modules/klona/lite.jsx' does not exist.", + "'package.json' has 'main' field 'dist/index.js' that references '/node_modules/klona/lite/dist/index.js'.", + "Loading module as file / folder, candidate module location '/node_modules/klona/lite/dist/index.js', target file types: JavaScript, JSON.", + "File name '/node_modules/klona/lite/dist/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/klona/lite/index.js' exists - use it as a name resolution result.", + "======== Module name 'klona/lite' was successfully resolved to '/node_modules/klona/lite/index.js' with Package ID 'klona/lite/index.js@2.0.6'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/klona/lite/index.d.ts" + ] + }, + "node16-cjs": { + "name": "./lite", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/klona/index.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/klona/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'klona/lite' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'klona/lite' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/klona/lite/package.json' does not exist.", + "File '/node_modules/klona/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Matched 'exports' condition 'types'.", + "Using 'exports' subpath './lite' with target './index.d.ts'.", + "File '/node_modules/klona/index.d.ts' exists - use it as a name resolution result.", + "Resolved under condition 'types'.", + "Exiting conditional exports.", + "======== Module name 'klona/lite' was successfully resolved to '/node_modules/klona/index.d.ts' with Package ID 'klona/index.d.ts@2.0.6'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/klona/lite/index.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/klona/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'klona/lite' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'klona/lite' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/klona/lite/package.json' does not exist.", + "File '/node_modules/klona/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Saw non-matching condition 'import'.", + "Matched 'exports' condition 'require'.", + "Using 'exports' subpath './lite' with target './lite/index.js'.", + "File name '/node_modules/klona/lite/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/klona/lite/index.ts' does not exist.", + "File '/node_modules/klona/lite/index.tsx' does not exist.", + "Failed to resolve under condition 'require'.", + "Exiting conditional exports.", + "Export specifier './lite' does not exist in package.json scope at path '/node_modules/klona'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/klona/lite/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/klona/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Saw non-matching condition 'import'.", + "Matched 'exports' condition 'require'.", + "Using 'exports' subpath './lite' with target './lite/index.js'.", + "File name '/node_modules/klona/lite/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/klona/lite/index.js' exists - use it as a name resolution result.", + "Resolved under condition 'require'.", + "Exiting conditional exports.", + "======== Module name 'klona/lite' was successfully resolved to '/node_modules/klona/lite/index.js' with Package ID 'klona/lite/index.js@2.0.6'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/klona/index.d.ts" + ] + }, + "node16-esm": { + "name": "./lite", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/klona/index.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/klona/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'klona/lite' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'klona/lite' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/klona/lite/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/klona/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Matched 'exports' condition 'types'.", + "Using 'exports' subpath './lite' with target './index.d.ts'.", + "File '/node_modules/klona/index.d.ts' exists - use it as a name resolution result.", + "Resolved under condition 'types'.", + "Exiting conditional exports.", + "======== Module name 'klona/lite' was successfully resolved to '/node_modules/klona/index.d.ts' with Package ID 'klona/index.d.ts@2.0.6'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/klona/lite/index.mjs", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "extension", + "reasonFileName": "/node_modules/klona/lite/index.mjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'klona/lite' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'klona/lite' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/klona/lite/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/klona/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Matched 'exports' condition 'import'.", + "Using 'exports' subpath './lite' with target './lite/index.mjs'.", + "File name '/node_modules/klona/lite/index.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/klona/lite/index.mts' does not exist.", + "Failed to resolve under condition 'import'.", + "Saw non-matching condition 'require'.", + "Exiting conditional exports.", + "Export specifier './lite' does not exist in package.json scope at path '/node_modules/klona'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/klona/lite/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/klona/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Matched 'exports' condition 'import'.", + "Using 'exports' subpath './lite' with target './lite/index.mjs'.", + "File name '/node_modules/klona/lite/index.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/klona/lite/index.mjs' exists - use it as a name resolution result.", + "Resolved under condition 'import'.", + "Exiting conditional exports.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'klona/lite' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/klona/lite/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/klona/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'dist/index.js' that references '/node_modules/klona/lite/dist/index.js'.", + "Loading module as file / folder, candidate module location '/node_modules/klona/lite/dist/index.js', target file types: TypeScript.", + "File name '/node_modules/klona/lite/dist/index.js' has a '.js' extension - stripping it.", + "======== Module name 'klona/lite' was successfully resolved to '/node_modules/klona/lite/index.mjs' with Package ID 'klona/lite/index.mjs@2.0.6'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/klona/index.d.ts" + ] + }, + "bundler": { + "name": "./lite", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/klona/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'klona/lite' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'klona/lite' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/klona/lite/package.json' does not exist.", + "File '/node_modules/klona/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Matched 'exports' condition 'types'.", + "Using 'exports' subpath './lite' with target './index.d.ts'.", + "File '/node_modules/klona/index.d.ts' exists - use it as a name resolution result.", + "Resolved under condition 'types'.", + "Exiting conditional exports.", + "======== Module name 'klona/lite' was successfully resolved to '/node_modules/klona/index.d.ts' with Package ID 'klona/index.d.ts@2.0.6'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/klona/lite/index.mjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'klona/lite' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'klona/lite' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/klona/lite/package.json' does not exist.", + "File '/node_modules/klona/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Matched 'exports' condition 'import'.", + "Using 'exports' subpath './lite' with target './lite/index.mjs'.", + "File name '/node_modules/klona/lite/index.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/klona/lite/index.mts' does not exist.", + "Failed to resolve under condition 'import'.", + "Saw non-matching condition 'require'.", + "Exiting conditional exports.", + "Export specifier './lite' does not exist in package.json scope at path '/node_modules/klona'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/klona/lite/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/klona/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Matched 'exports' condition 'import'.", + "Using 'exports' subpath './lite' with target './lite/index.mjs'.", + "File name '/node_modules/klona/lite/index.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/klona/lite/index.mjs' exists - use it as a name resolution result.", + "Resolved under condition 'import'.", + "Exiting conditional exports.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'klona/lite' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/klona/lite/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/klona/package.json' exists according to earlier cached lookups.", + "File '/node_modules/klona/lite.ts' does not exist.", + "File '/node_modules/klona/lite.tsx' does not exist.", + "'package.json' has 'main' field 'dist/index.js' that references '/node_modules/klona/lite/dist/index.js'.", + "Loading module as file / folder, candidate module location '/node_modules/klona/lite/dist/index.js', target file types: TypeScript.", + "File name '/node_modules/klona/lite/dist/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/klona/lite/index.ts' does not exist.", + "File '/node_modules/klona/lite/index.tsx' does not exist.", + "======== Module name 'klona/lite' was successfully resolved to '/node_modules/klona/lite/index.mjs' with Package ID 'klona/lite/index.mjs@2.0.6'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/klona/index.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + }, + "./full": { + "subpath": "./full", + "resolutions": { + "node10": { + "name": "./full", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/klona/full/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'klona/full' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'klona/full' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/klona/full/package.json' does not exist.", + "File '/node_modules/klona/package.json' exists according to earlier cached lookups.", + "File '/node_modules/klona/full.ts' does not exist.", + "File '/node_modules/klona/full.tsx' does not exist.", + "File '/node_modules/klona/full.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/klona/full/index.d.ts'.", + "File '/node_modules/klona/full/index.d.ts' exists - use it as a name resolution result.", + "======== Module name 'klona/full' was successfully resolved to '/node_modules/klona/full/index.d.ts' with Package ID 'klona/full/index.d.ts@2.0.6'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/klona/full/index.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'klona/full' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'klona/full' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/klona/full/package.json' does not exist.", + "File '/node_modules/klona/package.json' exists according to earlier cached lookups.", + "File '/node_modules/klona/full.ts' does not exist.", + "File '/node_modules/klona/full.tsx' does not exist.", + "'package.json' has 'main' field 'dist/index.js' that references '/node_modules/klona/full/dist/index.js'.", + "Loading module as file / folder, candidate module location '/node_modules/klona/full/dist/index.js', target file types: TypeScript.", + "File name '/node_modules/klona/full/dist/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/klona/full/index.ts' does not exist.", + "File '/node_modules/klona/full/index.tsx' does not exist.", + "Loading module 'klona/full' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/klona/full/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/klona/package.json' exists according to earlier cached lookups.", + "File '/node_modules/klona/full.js' does not exist.", + "File '/node_modules/klona/full.jsx' does not exist.", + "'package.json' has 'main' field 'dist/index.js' that references '/node_modules/klona/full/dist/index.js'.", + "Loading module as file / folder, candidate module location '/node_modules/klona/full/dist/index.js', target file types: JavaScript, JSON.", + "File name '/node_modules/klona/full/dist/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/klona/full/index.js' exists - use it as a name resolution result.", + "======== Module name 'klona/full' was successfully resolved to '/node_modules/klona/full/index.js' with Package ID 'klona/full/index.js@2.0.6'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/klona/full/index.d.ts" + ] + }, + "node16-cjs": { + "name": "./full", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/klona/index.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/klona/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'klona/full' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'klona/full' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/klona/full/package.json' does not exist.", + "File '/node_modules/klona/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Matched 'exports' condition 'types'.", + "Using 'exports' subpath './full' with target './index.d.ts'.", + "File '/node_modules/klona/index.d.ts' exists - use it as a name resolution result.", + "Resolved under condition 'types'.", + "Exiting conditional exports.", + "======== Module name 'klona/full' was successfully resolved to '/node_modules/klona/index.d.ts' with Package ID 'klona/index.d.ts@2.0.6'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/klona/full/index.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/klona/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'klona/full' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'klona/full' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/klona/full/package.json' does not exist.", + "File '/node_modules/klona/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Saw non-matching condition 'import'.", + "Matched 'exports' condition 'require'.", + "Using 'exports' subpath './full' with target './full/index.js'.", + "File name '/node_modules/klona/full/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/klona/full/index.ts' does not exist.", + "File '/node_modules/klona/full/index.tsx' does not exist.", + "Failed to resolve under condition 'require'.", + "Exiting conditional exports.", + "Export specifier './full' does not exist in package.json scope at path '/node_modules/klona'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/klona/full/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/klona/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Saw non-matching condition 'import'.", + "Matched 'exports' condition 'require'.", + "Using 'exports' subpath './full' with target './full/index.js'.", + "File name '/node_modules/klona/full/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/klona/full/index.js' exists - use it as a name resolution result.", + "Resolved under condition 'require'.", + "Exiting conditional exports.", + "======== Module name 'klona/full' was successfully resolved to '/node_modules/klona/full/index.js' with Package ID 'klona/full/index.js@2.0.6'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/klona/index.d.ts" + ] + }, + "node16-esm": { + "name": "./full", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/klona/index.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/klona/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'klona/full' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'klona/full' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/klona/full/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/klona/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Matched 'exports' condition 'types'.", + "Using 'exports' subpath './full' with target './index.d.ts'.", + "File '/node_modules/klona/index.d.ts' exists - use it as a name resolution result.", + "Resolved under condition 'types'.", + "Exiting conditional exports.", + "======== Module name 'klona/full' was successfully resolved to '/node_modules/klona/index.d.ts' with Package ID 'klona/index.d.ts@2.0.6'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/klona/full/index.mjs", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "extension", + "reasonFileName": "/node_modules/klona/full/index.mjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'klona/full' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'klona/full' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/klona/full/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/klona/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Matched 'exports' condition 'import'.", + "Using 'exports' subpath './full' with target './full/index.mjs'.", + "File name '/node_modules/klona/full/index.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/klona/full/index.mts' does not exist.", + "Failed to resolve under condition 'import'.", + "Saw non-matching condition 'require'.", + "Exiting conditional exports.", + "Export specifier './full' does not exist in package.json scope at path '/node_modules/klona'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/klona/full/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/klona/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Matched 'exports' condition 'import'.", + "Using 'exports' subpath './full' with target './full/index.mjs'.", + "File name '/node_modules/klona/full/index.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/klona/full/index.mjs' exists - use it as a name resolution result.", + "Resolved under condition 'import'.", + "Exiting conditional exports.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'klona/full' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/klona/full/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/klona/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'dist/index.js' that references '/node_modules/klona/full/dist/index.js'.", + "Loading module as file / folder, candidate module location '/node_modules/klona/full/dist/index.js', target file types: TypeScript.", + "File name '/node_modules/klona/full/dist/index.js' has a '.js' extension - stripping it.", + "======== Module name 'klona/full' was successfully resolved to '/node_modules/klona/full/index.mjs' with Package ID 'klona/full/index.mjs@2.0.6'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/klona/index.d.ts" + ] + }, + "bundler": { + "name": "./full", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/klona/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'klona/full' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'klona/full' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/klona/full/package.json' does not exist.", + "File '/node_modules/klona/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Matched 'exports' condition 'types'.", + "Using 'exports' subpath './full' with target './index.d.ts'.", + "File '/node_modules/klona/index.d.ts' exists - use it as a name resolution result.", + "Resolved under condition 'types'.", + "Exiting conditional exports.", + "======== Module name 'klona/full' was successfully resolved to '/node_modules/klona/index.d.ts' with Package ID 'klona/index.d.ts@2.0.6'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/klona/full/index.mjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'klona/full' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'klona/full' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/klona/full/package.json' does not exist.", + "File '/node_modules/klona/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Matched 'exports' condition 'import'.", + "Using 'exports' subpath './full' with target './full/index.mjs'.", + "File name '/node_modules/klona/full/index.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/klona/full/index.mts' does not exist.", + "Failed to resolve under condition 'import'.", + "Saw non-matching condition 'require'.", + "Exiting conditional exports.", + "Export specifier './full' does not exist in package.json scope at path '/node_modules/klona'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/klona/full/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/klona/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Matched 'exports' condition 'import'.", + "Using 'exports' subpath './full' with target './full/index.mjs'.", + "File name '/node_modules/klona/full/index.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/klona/full/index.mjs' exists - use it as a name resolution result.", + "Resolved under condition 'import'.", + "Exiting conditional exports.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'klona/full' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/klona/full/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/klona/package.json' exists according to earlier cached lookups.", + "File '/node_modules/klona/full.ts' does not exist.", + "File '/node_modules/klona/full.tsx' does not exist.", + "'package.json' has 'main' field 'dist/index.js' that references '/node_modules/klona/full/dist/index.js'.", + "Loading module as file / folder, candidate module location '/node_modules/klona/full/dist/index.js', target file types: TypeScript.", + "File name '/node_modules/klona/full/dist/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/klona/full/index.ts' does not exist.", + "File '/node_modules/klona/full/index.tsx' does not exist.", + "======== Module name 'klona/full' was successfully resolved to '/node_modules/klona/full/index.mjs' with Package ID 'klona/full/index.mjs@2.0.6'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/klona/index.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + }, + "./package.json": { + "subpath": "./package.json", + "resolutions": { + "node10": { + "name": "./package.json", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/klona/package.json", + "isJson": true, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'klona/package.json' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'klona/package.json' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/klona/package.json' exists according to earlier cached lookups.", + "File name '/node_modules/klona/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/klona/package.d.json.ts' does not exist.", + "File '/node_modules/klona/package.json.ts' does not exist.", + "File '/node_modules/klona/package.json.tsx' does not exist.", + "File '/node_modules/klona/package.json.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/klona/package.json/index.d.ts'.", + "Loading module as file / folder, candidate module location '/node_modules/klona/package.json/index.d.ts', target file types: TypeScript, Declaration.", + "File name '/node_modules/klona/package.json/index.d.ts' has a '.d.ts' extension - stripping it.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "File name '/node_modules/@types/klona/package.json' has a '.json' extension - stripping it.", + "Loading module 'klona/package.json' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/klona/package.json' exists according to earlier cached lookups.", + "File name '/node_modules/klona/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/klona/package.json' exists - use it as a name resolution result.", + "======== Module name 'klona/package.json' was successfully resolved to '/node_modules/klona/package.json' with Package ID 'klona/package.json@2.0.6'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/klona/package.json" + ] + }, + "node16-cjs": { + "name": "./package.json", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/klona/package.json", + "isJson": true, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'klona/package.json' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'klona/package.json' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/klona/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './package.json' with target './package.json'.", + "File name '/node_modules/klona/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/klona/package.d.json.ts' does not exist.", + "Export specifier './package.json' does not exist in package.json scope at path '/node_modules/klona'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "File name '/node_modules/@types/klona/package.json' has a '.json' extension - stripping it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/klona/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './package.json' with target './package.json'.", + "File name '/node_modules/klona/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/klona/package.json' exists - use it as a name resolution result.", + "======== Module name 'klona/package.json' was successfully resolved to '/node_modules/klona/package.json' with Package ID 'klona/package.json@2.0.6'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/klona/package.json" + ] + }, + "node16-esm": { + "name": "./package.json", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/klona/package.json", + "isJson": true, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'klona/package.json' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'klona/package.json' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/klona/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './package.json' with target './package.json'.", + "File name '/node_modules/klona/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/klona/package.d.json.ts' does not exist.", + "Export specifier './package.json' does not exist in package.json scope at path '/node_modules/klona'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "File name '/node_modules/@types/klona/package.json' has a '.json' extension - stripping it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/klona/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './package.json' with target './package.json'.", + "File name '/node_modules/klona/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/klona/package.json' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'klona/package.json' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/klona/package.json' exists according to earlier cached lookups.", + "'package.json' does not have a 'typesVersions' field.", + "File name '/node_modules/klona/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/klona/package.d.json.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/klona/package.json/index.d.ts'.", + "Loading module as file / folder, candidate module location '/node_modules/klona/package.json/index.d.ts', target file types: TypeScript, Declaration.", + "File name '/node_modules/klona/package.json/index.d.ts' has a '.d.ts' extension - stripping it.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "File name '/node_modules/@types/klona/package.json' has a '.json' extension - stripping it.", + "======== Module name 'klona/package.json' was successfully resolved to '/node_modules/klona/package.json' with Package ID 'klona/package.json@2.0.6'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/klona/package.json" + ] + }, + "bundler": { + "name": "./package.json", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/klona/package.json", + "isJson": true, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'klona/package.json' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'klona/package.json' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/klona/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './package.json' with target './package.json'.", + "File name '/node_modules/klona/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/klona/package.d.json.ts' does not exist.", + "Export specifier './package.json' does not exist in package.json scope at path '/node_modules/klona'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "File name '/node_modules/@types/klona/package.json' has a '.json' extension - stripping it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/klona/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './package.json' with target './package.json'.", + "File name '/node_modules/klona/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/klona/package.json' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'klona/package.json' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/klona/package.json' exists according to earlier cached lookups.", + "'package.json' does not have a 'typesVersions' field.", + "File name '/node_modules/klona/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/klona/package.d.json.ts' does not exist.", + "File '/node_modules/klona/package.json.ts' does not exist.", + "File '/node_modules/klona/package.json.tsx' does not exist.", + "File '/node_modules/klona/package.json.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/klona/package.json/index.d.ts'.", + "Loading module as file / folder, candidate module location '/node_modules/klona/package.json/index.d.ts', target file types: TypeScript, Declaration.", + "File name '/node_modules/klona/package.json/index.d.ts' has a '.d.ts' extension - stripping it.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "File name '/node_modules/@types/klona/package.json' has a '.json' extension - stripping it.", + "======== Module name 'klona/package.json' was successfully resolved to '/node_modules/klona/package.json' with Package ID 'klona/package.json@2.0.6'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/klona/package.json" + ] + } + }, + "hasTypes": false, + "isWildcard": false + } + }, + "problems": [ + { + "kind": "FalseCJS", + "entrypoint": ".", + "resolutionKind": "node16-esm" + }, + { + "kind": "FalseCJS", + "entrypoint": "./json", + "resolutionKind": "node16-esm" + }, + { + "kind": "FalseCJS", + "entrypoint": "./lite", + "resolutionKind": "node16-esm" + }, + { + "kind": "FalseCJS", + "entrypoint": "./full", + "resolutionKind": "node16-esm" + } + ] +} diff --git a/packages/core/test/snapshots/klona@2.0.6.tgz.md b/packages/core/test/snapshots/klona@2.0.6.tgz.md deleted file mode 100644 index 0afa097..0000000 --- a/packages/core/test/snapshots/klona@2.0.6.tgz.md +++ /dev/null @@ -1,28 +0,0 @@ -# klona@2.0.6.tgz - -## Problems - -```json -[ - { - "kind": "FalseCJS", - "entrypoint": ".", - "resolutionKind": "node16-esm" - }, - { - "kind": "FalseCJS", - "entrypoint": "./json", - "resolutionKind": "node16-esm" - }, - { - "kind": "FalseCJS", - "entrypoint": "./lite", - "resolutionKind": "node16-esm" - }, - { - "kind": "FalseCJS", - "entrypoint": "./full", - "resolutionKind": "node16-esm" - } -] -``` \ No newline at end of file diff --git a/packages/core/test/snapshots/node-html-parser@6.1.5.tgz.json b/packages/core/test/snapshots/node-html-parser@6.1.5.tgz.json new file mode 100644 index 0000000..cc1b774 --- /dev/null +++ b/packages/core/test/snapshots/node-html-parser@6.1.5.tgz.json @@ -0,0 +1,371 @@ +{ + "packageName": "node-html-parser", + "packageVersion": "6.1.5", + "types": { + "kind": "included" + }, + "buildTools": { + "typescript": "latest" + }, + "entrypoints": { + ".": { + "subpath": ".", + "resolutions": { + "node10": { + "name": ".", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/node-html-parser/dist/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'node-html-parser' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'node-html-parser' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/node-html-parser/package.json'.", + "File '/node_modules/node-html-parser.ts' does not exist.", + "File '/node_modules/node-html-parser.tsx' does not exist.", + "File '/node_modules/node-html-parser.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'dist/index.d.ts' that references '/node_modules/node-html-parser/dist/index.d.ts'.", + "File '/node_modules/node-html-parser/dist/index.d.ts' exists - use it as a name resolution result.", + "======== Module name 'node-html-parser' was successfully resolved to '/node_modules/node-html-parser/dist/index.d.ts' with Package ID 'node-html-parser/dist/index.d.ts@6.1.5'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/node-html-parser/dist/index.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'node-html-parser' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'node-html-parser' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/node-html-parser/package.json'.", + "File '/node_modules/node-html-parser.ts' does not exist.", + "File '/node_modules/node-html-parser.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'dist/index.js' that references '/node_modules/node-html-parser/dist/index.js'.", + "File '/node_modules/node-html-parser/dist/index.js' exists - use it as a name resolution result.", + "File '/node_modules/node-html-parser/dist/index.js' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/node-html-parser/dist/index.js', target file types: TypeScript.", + "File name '/node_modules/node-html-parser/dist/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/node-html-parser/dist/index.ts' does not exist.", + "File '/node_modules/node-html-parser/dist/index.tsx' does not exist.", + "File '/node_modules/node-html-parser/dist/index.js.ts' does not exist.", + "File '/node_modules/node-html-parser/dist/index.js.tsx' does not exist.", + "Directory '/node_modules/node-html-parser/dist/index.js' does not exist, skipping all lookups in it.", + "File '/node_modules/node-html-parser/index.ts' does not exist.", + "File '/node_modules/node-html-parser/index.tsx' does not exist.", + "Loading module 'node-html-parser' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/node-html-parser/package.json' exists according to earlier cached lookups.", + "File '/node_modules/node-html-parser.js' does not exist.", + "File '/node_modules/node-html-parser.jsx' does not exist.", + "'package.json' has 'main' field 'dist/index.js' that references '/node_modules/node-html-parser/dist/index.js'.", + "File '/node_modules/node-html-parser/dist/index.js' exists - use it as a name resolution result.", + "======== Module name 'node-html-parser' was successfully resolved to '/node_modules/node-html-parser/dist/index.js' with Package ID 'node-html-parser/dist/index.js@6.1.5'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/node-html-parser/dist/void-tag.d.ts", + "/node_modules/node-html-parser/dist/nodes/type.d.ts", + "/node_modules/node-html-parser/dist/nodes/node.d.ts", + "/node_modules/node-html-parser/dist/nodes/html.d.ts", + "/node_modules/node-html-parser/dist/nodes/comment.d.ts", + "/node_modules/node-html-parser/dist/nodes/text.d.ts", + "/node_modules/node-html-parser/dist/parse.d.ts", + "/node_modules/node-html-parser/dist/valid.d.ts", + "/node_modules/node-html-parser/dist/index.d.ts" + ] + }, + "node16-cjs": { + "name": ".", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/node-html-parser/dist/index.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/node-html-parser/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'node-html-parser' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist.", + "Loading module 'node-html-parser' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/node-html-parser/package.json'.", + "File '/node_modules/node-html-parser.ts' does not exist.", + "File '/node_modules/node-html-parser.tsx' does not exist.", + "File '/node_modules/node-html-parser.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'dist/index.d.ts' that references '/node_modules/node-html-parser/dist/index.d.ts'.", + "File '/node_modules/node-html-parser/dist/index.d.ts' exists - use it as a name resolution result.", + "======== Module name 'node-html-parser' was successfully resolved to '/node_modules/node-html-parser/dist/index.d.ts' with Package ID 'node-html-parser/dist/index.d.ts@6.1.5'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/node-html-parser/dist/index.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/node-html-parser/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'node-html-parser' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist.", + "Loading module 'node-html-parser' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/node-html-parser/package.json'.", + "File '/node_modules/node-html-parser.ts' does not exist.", + "File '/node_modules/node-html-parser.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'dist/index.js' that references '/node_modules/node-html-parser/dist/index.js'.", + "File '/node_modules/node-html-parser/dist/index.js' exists - use it as a name resolution result.", + "File '/node_modules/node-html-parser/dist/index.js' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/node-html-parser/dist/index.js', target file types: TypeScript.", + "File name '/node_modules/node-html-parser/dist/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/node-html-parser/dist/index.ts' does not exist.", + "File '/node_modules/node-html-parser/dist/index.tsx' does not exist.", + "File '/node_modules/node-html-parser/dist/index.js.ts' does not exist.", + "File '/node_modules/node-html-parser/dist/index.js.tsx' does not exist.", + "Directory '/node_modules/node-html-parser/dist/index.js' does not exist, skipping all lookups in it.", + "File '/node_modules/node-html-parser/index.ts' does not exist.", + "File '/node_modules/node-html-parser/index.tsx' does not exist.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/node-html-parser/package.json' exists according to earlier cached lookups.", + "File '/node_modules/node-html-parser.js' does not exist.", + "File '/node_modules/node-html-parser.jsx' does not exist.", + "'package.json' has 'main' field 'dist/index.js' that references '/node_modules/node-html-parser/dist/index.js'.", + "File '/node_modules/node-html-parser/dist/index.js' exists - use it as a name resolution result.", + "======== Module name 'node-html-parser' was successfully resolved to '/node_modules/node-html-parser/dist/index.js' with Package ID 'node-html-parser/dist/index.js@6.1.5'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/node-html-parser/dist/void-tag.d.ts", + "/node_modules/node-html-parser/dist/nodes/type.d.ts", + "/node_modules/node-html-parser/dist/nodes/node.d.ts", + "/node_modules/node-html-parser/dist/nodes/html.d.ts", + "/node_modules/node-html-parser/dist/nodes/comment.d.ts", + "/node_modules/node-html-parser/dist/nodes/text.d.ts", + "/node_modules/node-html-parser/dist/parse.d.ts", + "/node_modules/node-html-parser/dist/valid.d.ts", + "/node_modules/node-html-parser/dist/index.d.ts" + ] + }, + "node16-esm": { + "name": ".", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/node-html-parser/dist/index.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/node-html-parser/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'node-html-parser' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'node-html-parser' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/node-html-parser/package.json' exists according to earlier cached lookups.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'dist/index.d.ts' that references '/node_modules/node-html-parser/dist/index.d.ts'.", + "File '/node_modules/node-html-parser/dist/index.d.ts' exists - use it as a name resolution result.", + "======== Module name 'node-html-parser' was successfully resolved to '/node_modules/node-html-parser/dist/index.d.ts' with Package ID 'node-html-parser/dist/index.d.ts@6.1.5'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/node-html-parser/dist/index.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/node-html-parser/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'node-html-parser' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'node-html-parser' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/node-html-parser/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'dist/index.js' that references '/node_modules/node-html-parser/dist/index.js'.", + "File '/node_modules/node-html-parser/dist/index.js' exists - use it as a name resolution result.", + "File '/node_modules/node-html-parser/dist/index.js' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/node-html-parser/dist/index.js', target file types: TypeScript.", + "File name '/node_modules/node-html-parser/dist/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/node-html-parser/dist/index.ts' does not exist.", + "File '/node_modules/node-html-parser/dist/index.tsx' does not exist.", + "File '/node_modules/node-html-parser/dist/index.js.ts' does not exist.", + "File '/node_modules/node-html-parser/dist/index.js.tsx' does not exist.", + "Directory '/node_modules/node-html-parser/dist/index.js' does not exist, skipping all lookups in it.", + "File name '/node_modules/node-html-parser/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/node-html-parser/index.ts' does not exist.", + "File '/node_modules/node-html-parser/index.tsx' does not exist.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/node-html-parser/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'dist/index.js' that references '/node_modules/node-html-parser/dist/index.js'.", + "File '/node_modules/node-html-parser/dist/index.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'node-html-parser' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/node-html-parser/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'dist/index.js' that references '/node_modules/node-html-parser/dist/index.js'.", + "File '/node_modules/node-html-parser/dist/index.js' exists - use it as a name resolution result.", + "File '/node_modules/node-html-parser/dist/index.js' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/node-html-parser/dist/index.js', target file types: TypeScript.", + "File name '/node_modules/node-html-parser/dist/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/node-html-parser/dist/index.ts' does not exist.", + "File '/node_modules/node-html-parser/dist/index.tsx' does not exist.", + "File '/node_modules/node-html-parser/dist/index.js.ts' does not exist.", + "File '/node_modules/node-html-parser/dist/index.js.tsx' does not exist.", + "Directory '/node_modules/node-html-parser/dist/index.js' does not exist, skipping all lookups in it.", + "File name '/node_modules/node-html-parser/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/node-html-parser/index.ts' does not exist.", + "File '/node_modules/node-html-parser/index.tsx' does not exist.", + "======== Module name 'node-html-parser' was successfully resolved to '/node_modules/node-html-parser/dist/index.js' with Package ID 'node-html-parser/dist/index.js@6.1.5'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/node-html-parser/dist/void-tag.d.ts", + "/node_modules/node-html-parser/dist/nodes/type.d.ts", + "/node_modules/node-html-parser/dist/nodes/node.d.ts", + "/node_modules/node-html-parser/dist/nodes/html.d.ts", + "/node_modules/node-html-parser/dist/nodes/comment.d.ts", + "/node_modules/node-html-parser/dist/nodes/text.d.ts", + "/node_modules/node-html-parser/dist/parse.d.ts", + "/node_modules/node-html-parser/dist/valid.d.ts", + "/node_modules/node-html-parser/dist/index.d.ts" + ] + }, + "bundler": { + "name": ".", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/node-html-parser/dist/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'node-html-parser' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist.", + "Loading module 'node-html-parser' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/node-html-parser/package.json'.", + "File '/node_modules/node-html-parser.ts' does not exist.", + "File '/node_modules/node-html-parser.tsx' does not exist.", + "File '/node_modules/node-html-parser.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'dist/index.d.ts' that references '/node_modules/node-html-parser/dist/index.d.ts'.", + "File '/node_modules/node-html-parser/dist/index.d.ts' exists - use it as a name resolution result.", + "======== Module name 'node-html-parser' was successfully resolved to '/node_modules/node-html-parser/dist/index.d.ts' with Package ID 'node-html-parser/dist/index.d.ts@6.1.5'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/node-html-parser/dist/index.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'node-html-parser' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist.", + "Loading module 'node-html-parser' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/node-html-parser/package.json'.", + "File '/node_modules/node-html-parser.ts' does not exist.", + "File '/node_modules/node-html-parser.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'dist/index.js' that references '/node_modules/node-html-parser/dist/index.js'.", + "File '/node_modules/node-html-parser/dist/index.js' exists - use it as a name resolution result.", + "File '/node_modules/node-html-parser/dist/index.js' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/node-html-parser/dist/index.js', target file types: TypeScript.", + "File name '/node_modules/node-html-parser/dist/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/node-html-parser/dist/index.ts' does not exist.", + "File '/node_modules/node-html-parser/dist/index.tsx' does not exist.", + "File '/node_modules/node-html-parser/dist/index.js.ts' does not exist.", + "File '/node_modules/node-html-parser/dist/index.js.tsx' does not exist.", + "Directory '/node_modules/node-html-parser/dist/index.js' does not exist, skipping all lookups in it.", + "File '/node_modules/node-html-parser/index.ts' does not exist.", + "File '/node_modules/node-html-parser/index.tsx' does not exist.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/node-html-parser/package.json' exists according to earlier cached lookups.", + "File '/node_modules/node-html-parser.js' does not exist.", + "File '/node_modules/node-html-parser.jsx' does not exist.", + "'package.json' has 'main' field 'dist/index.js' that references '/node_modules/node-html-parser/dist/index.js'.", + "File '/node_modules/node-html-parser/dist/index.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'node-html-parser' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/node-html-parser/package.json' exists according to earlier cached lookups.", + "File '/node_modules/node-html-parser.ts' does not exist.", + "File '/node_modules/node-html-parser.tsx' does not exist.", + "'package.json' has 'main' field 'dist/index.js' that references '/node_modules/node-html-parser/dist/index.js'.", + "File '/node_modules/node-html-parser/dist/index.js' exists - use it as a name resolution result.", + "File '/node_modules/node-html-parser/dist/index.js' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/node-html-parser/dist/index.js', target file types: TypeScript.", + "File name '/node_modules/node-html-parser/dist/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/node-html-parser/dist/index.ts' does not exist.", + "File '/node_modules/node-html-parser/dist/index.tsx' does not exist.", + "File '/node_modules/node-html-parser/dist/index.js.ts' does not exist.", + "File '/node_modules/node-html-parser/dist/index.js.tsx' does not exist.", + "Directory '/node_modules/node-html-parser/dist/index.js' does not exist, skipping all lookups in it.", + "File '/node_modules/node-html-parser/index.ts' does not exist.", + "File '/node_modules/node-html-parser/index.tsx' does not exist.", + "======== Module name 'node-html-parser' was successfully resolved to '/node_modules/node-html-parser/dist/index.js' with Package ID 'node-html-parser/dist/index.js@6.1.5'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/node-html-parser/dist/void-tag.d.ts", + "/node_modules/node-html-parser/dist/nodes/type.d.ts", + "/node_modules/node-html-parser/dist/nodes/node.d.ts", + "/node_modules/node-html-parser/dist/nodes/html.d.ts", + "/node_modules/node-html-parser/dist/nodes/comment.d.ts", + "/node_modules/node-html-parser/dist/nodes/text.d.ts", + "/node_modules/node-html-parser/dist/parse.d.ts", + "/node_modules/node-html-parser/dist/valid.d.ts", + "/node_modules/node-html-parser/dist/index.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + } + }, + "problems": [ + { + "kind": "CJSOnlyExportsDefault", + "fileName": "/node_modules/node-html-parser/dist/index.js", + "range": { + "pos": 1077, + "end": 1092 + } + } + ] +} diff --git a/packages/core/test/snapshots/node-html-parser@6.1.5.tgz.md b/packages/core/test/snapshots/node-html-parser@6.1.5.tgz.md deleted file mode 100644 index 1d66cdd..0000000 --- a/packages/core/test/snapshots/node-html-parser@6.1.5.tgz.md +++ /dev/null @@ -1,16 +0,0 @@ -# node-html-parser@6.1.5.tgz - -## Problems - -```json -[ - { - "kind": "CJSOnlyExportsDefault", - "fileName": "/node_modules/node-html-parser/dist/index.js", - "range": { - "pos": 1077, - "end": 1092 - } - } -] -``` \ No newline at end of file diff --git a/packages/core/test/snapshots/postcss@8.4.21.tgz.json b/packages/core/test/snapshots/postcss@8.4.21.tgz.json new file mode 100644 index 0000000..b21843b --- /dev/null +++ b/packages/core/test/snapshots/postcss@8.4.21.tgz.json @@ -0,0 +1,8499 @@ +{ + "packageName": "postcss", + "packageVersion": "8.4.21", + "types": { + "kind": "included" + }, + "buildTools": {}, + "entrypoints": { + ".": { + "subpath": ".", + "resolutions": { + "node10": { + "name": ".", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/postcss/lib/postcss.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'postcss' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/postcss/package.json'.", + "File '/node_modules/postcss.ts' does not exist.", + "File '/node_modules/postcss.tsx' does not exist.", + "File '/node_modules/postcss.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field './lib/postcss.d.ts' that references '/node_modules/postcss/lib/postcss.d.ts'.", + "File '/node_modules/postcss/lib/postcss.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss' was successfully resolved to '/node_modules/postcss/lib/postcss.d.ts' with Package ID 'postcss/lib/postcss.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/postcss.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'postcss' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/postcss/package.json'.", + "File '/node_modules/postcss.ts' does not exist.", + "File '/node_modules/postcss.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field './lib/postcss.js' that references '/node_modules/postcss/lib/postcss.js'.", + "File '/node_modules/postcss/lib/postcss.js' exists - use it as a name resolution result.", + "File '/node_modules/postcss/lib/postcss.js' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/postcss.js', target file types: TypeScript.", + "File name '/node_modules/postcss/lib/postcss.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/postcss.ts' does not exist.", + "File '/node_modules/postcss/lib/postcss.tsx' does not exist.", + "File '/node_modules/postcss/lib/postcss.js.ts' does not exist.", + "File '/node_modules/postcss/lib/postcss.js.tsx' does not exist.", + "Directory '/node_modules/postcss/lib/postcss.js' does not exist, skipping all lookups in it.", + "File '/node_modules/postcss/index.ts' does not exist.", + "File '/node_modules/postcss/index.tsx' does not exist.", + "Loading module 'postcss' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss.js' does not exist.", + "File '/node_modules/postcss.jsx' does not exist.", + "'package.json' has 'main' field './lib/postcss.js' that references '/node_modules/postcss/lib/postcss.js'.", + "File '/node_modules/postcss/lib/postcss.js' exists - use it as a name resolution result.", + "======== Module name 'postcss' was successfully resolved to '/node_modules/postcss/lib/postcss.js' with Package ID 'postcss/lib/postcss.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/postcss.d.ts" + ] + }, + "node16-cjs": { + "name": ".", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/postcss/lib/postcss.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist.", + "Loading module 'postcss' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/postcss/package.json'.", + "Entering conditional exports.", + "Matched 'exports' condition 'require'.", + "Using 'exports' subpath '.' with target './lib/postcss.js'.", + "File name '/node_modules/postcss/lib/postcss.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/postcss.ts' does not exist.", + "File '/node_modules/postcss/lib/postcss.tsx' does not exist.", + "File '/node_modules/postcss/lib/postcss.d.ts' exists - use it as a name resolution result.", + "Resolved under condition 'require'.", + "Exiting conditional exports.", + "======== Module name 'postcss' was successfully resolved to '/node_modules/postcss/lib/postcss.d.ts' with Package ID 'postcss/lib/postcss.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/postcss.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist.", + "Loading module 'postcss' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/postcss/package.json'.", + "Entering conditional exports.", + "Matched 'exports' condition 'require'.", + "Using 'exports' subpath '.' with target './lib/postcss.js'.", + "File name '/node_modules/postcss/lib/postcss.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/postcss.ts' does not exist.", + "File '/node_modules/postcss/lib/postcss.tsx' does not exist.", + "Failed to resolve under condition 'require'.", + "Saw non-matching condition 'import'.", + "Saw non-matching condition 'types'.", + "Exiting conditional exports.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Matched 'exports' condition 'require'.", + "Using 'exports' subpath '.' with target './lib/postcss.js'.", + "File name '/node_modules/postcss/lib/postcss.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/postcss.js' exists - use it as a name resolution result.", + "Resolved under condition 'require'.", + "Exiting conditional exports.", + "======== Module name 'postcss' was successfully resolved to '/node_modules/postcss/lib/postcss.js' with Package ID 'postcss/lib/postcss.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/postcss.d.ts" + ] + }, + "node16-esm": { + "name": ".", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/postcss/lib/postcss.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'require'.", + "Matched 'exports' condition 'import'.", + "Using 'exports' subpath '.' with target './lib/postcss.mjs'.", + "File name '/node_modules/postcss/lib/postcss.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/postcss/lib/postcss.mts' does not exist.", + "File '/node_modules/postcss/lib/postcss.d.mts' does not exist.", + "Failed to resolve under condition 'import'.", + "Matched 'exports' condition 'types'.", + "Using 'exports' subpath '.' with target './lib/postcss.d.ts'.", + "File '/node_modules/postcss/lib/postcss.d.ts' exists - use it as a name resolution result.", + "Resolved under condition 'types'.", + "Exiting conditional exports.", + "======== Module name 'postcss' was successfully resolved to '/node_modules/postcss/lib/postcss.d.ts' with Package ID 'postcss/lib/postcss.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/postcss.mjs", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "extension", + "reasonFileName": "/node_modules/postcss/lib/postcss.mjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'require'.", + "Matched 'exports' condition 'import'.", + "Using 'exports' subpath '.' with target './lib/postcss.mjs'.", + "File name '/node_modules/postcss/lib/postcss.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/postcss/lib/postcss.mts' does not exist.", + "Failed to resolve under condition 'import'.", + "Saw non-matching condition 'types'.", + "Exiting conditional exports.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'require'.", + "Matched 'exports' condition 'import'.", + "Using 'exports' subpath '.' with target './lib/postcss.mjs'.", + "File name '/node_modules/postcss/lib/postcss.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/postcss/lib/postcss.mjs' exists - use it as a name resolution result.", + "Resolved under condition 'import'.", + "Exiting conditional exports.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field './lib/postcss.js' that references '/node_modules/postcss/lib/postcss.js'.", + "File '/node_modules/postcss/lib/postcss.js' exists - use it as a name resolution result.", + "File '/node_modules/postcss/lib/postcss.js' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/postcss.js', target file types: TypeScript.", + "File name '/node_modules/postcss/lib/postcss.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/postcss.ts' does not exist.", + "File '/node_modules/postcss/lib/postcss.tsx' does not exist.", + "File '/node_modules/postcss/lib/postcss.js.ts' does not exist.", + "File '/node_modules/postcss/lib/postcss.js.tsx' does not exist.", + "Directory '/node_modules/postcss/lib/postcss.js' does not exist, skipping all lookups in it.", + "======== Module name 'postcss' was successfully resolved to '/node_modules/postcss/lib/postcss.mjs' with Package ID 'postcss/lib/postcss.mjs@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/postcss.d.ts" + ] + }, + "bundler": { + "name": ".", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/postcss/lib/postcss.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist.", + "Loading module 'postcss' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/postcss/package.json'.", + "Entering conditional exports.", + "Saw non-matching condition 'require'.", + "Matched 'exports' condition 'import'.", + "Using 'exports' subpath '.' with target './lib/postcss.mjs'.", + "File name '/node_modules/postcss/lib/postcss.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/postcss/lib/postcss.mts' does not exist.", + "File '/node_modules/postcss/lib/postcss.d.mts' does not exist.", + "Failed to resolve under condition 'import'.", + "Matched 'exports' condition 'types'.", + "Using 'exports' subpath '.' with target './lib/postcss.d.ts'.", + "File '/node_modules/postcss/lib/postcss.d.ts' exists - use it as a name resolution result.", + "Resolved under condition 'types'.", + "Exiting conditional exports.", + "======== Module name 'postcss' was successfully resolved to '/node_modules/postcss/lib/postcss.d.ts' with Package ID 'postcss/lib/postcss.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/postcss.mjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist.", + "Loading module 'postcss' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/postcss/package.json'.", + "Entering conditional exports.", + "Saw non-matching condition 'require'.", + "Matched 'exports' condition 'import'.", + "Using 'exports' subpath '.' with target './lib/postcss.mjs'.", + "File name '/node_modules/postcss/lib/postcss.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/postcss/lib/postcss.mts' does not exist.", + "Failed to resolve under condition 'import'.", + "Saw non-matching condition 'types'.", + "Exiting conditional exports.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'require'.", + "Matched 'exports' condition 'import'.", + "Using 'exports' subpath '.' with target './lib/postcss.mjs'.", + "File name '/node_modules/postcss/lib/postcss.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/postcss/lib/postcss.mjs' exists - use it as a name resolution result.", + "Resolved under condition 'import'.", + "Exiting conditional exports.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss.ts' does not exist.", + "File '/node_modules/postcss.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field './lib/postcss.js' that references '/node_modules/postcss/lib/postcss.js'.", + "File '/node_modules/postcss/lib/postcss.js' exists - use it as a name resolution result.", + "File '/node_modules/postcss/lib/postcss.js' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/postcss.js', target file types: TypeScript.", + "File name '/node_modules/postcss/lib/postcss.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/postcss.ts' does not exist.", + "File '/node_modules/postcss/lib/postcss.tsx' does not exist.", + "File '/node_modules/postcss/lib/postcss.js.ts' does not exist.", + "File '/node_modules/postcss/lib/postcss.js.tsx' does not exist.", + "Directory '/node_modules/postcss/lib/postcss.js' does not exist, skipping all lookups in it.", + "File '/node_modules/postcss/index.ts' does not exist.", + "File '/node_modules/postcss/index.tsx' does not exist.", + "======== Module name 'postcss' was successfully resolved to '/node_modules/postcss/lib/postcss.mjs' with Package ID 'postcss/lib/postcss.mjs@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/postcss.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + }, + "./lib/at-rule": { + "subpath": "./lib/at-rule", + "resolutions": { + "node10": { + "name": "./lib/at-rule", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/postcss/lib/at-rule.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/at-rule' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'postcss/lib/at-rule' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/at-rule.ts' does not exist.", + "File '/node_modules/postcss/lib/at-rule.tsx' does not exist.", + "File '/node_modules/postcss/lib/at-rule.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/at-rule' was successfully resolved to '/node_modules/postcss/lib/at-rule.d.ts' with Package ID 'postcss/lib/at-rule.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/at-rule.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/at-rule' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'postcss/lib/at-rule' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/at-rule.ts' does not exist.", + "File '/node_modules/postcss/lib/at-rule.tsx' does not exist.", + "'package.json' has 'main' field './lib/postcss.js' that references '/node_modules/postcss/lib/at-rule/lib/postcss.js'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/at-rule/lib/postcss.js', target file types: TypeScript.", + "File name '/node_modules/postcss/lib/at-rule/lib/postcss.js' has a '.js' extension - stripping it.", + "Loading module 'postcss/lib/at-rule' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/at-rule.js' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/at-rule' was successfully resolved to '/node_modules/postcss/lib/at-rule.js' with Package ID 'postcss/lib/at-rule.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts" + ] + }, + "node16-cjs": { + "name": "./lib/at-rule", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/postcss/lib/at-rule.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/at-rule' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/at-rule' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/at-rule' with target './lib/at-rule.js'.", + "File name '/node_modules/postcss/lib/at-rule.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/at-rule.ts' does not exist.", + "File '/node_modules/postcss/lib/at-rule.tsx' does not exist.", + "File '/node_modules/postcss/lib/at-rule.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/at-rule' was successfully resolved to '/node_modules/postcss/lib/at-rule.d.ts' with Package ID 'postcss/lib/at-rule.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/at-rule.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/at-rule' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/at-rule' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/at-rule' with target './lib/at-rule.js'.", + "File name '/node_modules/postcss/lib/at-rule.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/at-rule.ts' does not exist.", + "File '/node_modules/postcss/lib/at-rule.tsx' does not exist.", + "Export specifier './lib/at-rule' does not exist in package.json scope at path '/node_modules/postcss'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/at-rule' with target './lib/at-rule.js'.", + "File name '/node_modules/postcss/lib/at-rule.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/at-rule.js' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/at-rule' was successfully resolved to '/node_modules/postcss/lib/at-rule.js' with Package ID 'postcss/lib/at-rule.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts" + ] + }, + "node16-esm": { + "name": "./lib/at-rule", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/postcss/lib/at-rule.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/at-rule' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/at-rule' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/at-rule' with target './lib/at-rule.js'.", + "File name '/node_modules/postcss/lib/at-rule.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/at-rule.ts' does not exist.", + "File '/node_modules/postcss/lib/at-rule.tsx' does not exist.", + "File '/node_modules/postcss/lib/at-rule.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/at-rule' was successfully resolved to '/node_modules/postcss/lib/at-rule.d.ts' with Package ID 'postcss/lib/at-rule.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/at-rule.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/at-rule' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/at-rule' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/at-rule' with target './lib/at-rule.js'.", + "File name '/node_modules/postcss/lib/at-rule.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/at-rule.ts' does not exist.", + "File '/node_modules/postcss/lib/at-rule.tsx' does not exist.", + "Export specifier './lib/at-rule' does not exist in package.json scope at path '/node_modules/postcss'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/at-rule' with target './lib/at-rule.js'.", + "File name '/node_modules/postcss/lib/at-rule.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/at-rule.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/at-rule' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field './lib/postcss.js' that references '/node_modules/postcss/lib/at-rule/lib/postcss.js'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/at-rule/lib/postcss.js', target file types: TypeScript.", + "File name '/node_modules/postcss/lib/at-rule/lib/postcss.js' has a '.js' extension - stripping it.", + "======== Module name 'postcss/lib/at-rule' was successfully resolved to '/node_modules/postcss/lib/at-rule.js' with Package ID 'postcss/lib/at-rule.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts" + ] + }, + "bundler": { + "name": "./lib/at-rule", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/postcss/lib/at-rule.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/at-rule' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/at-rule' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/at-rule' with target './lib/at-rule.js'.", + "File name '/node_modules/postcss/lib/at-rule.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/at-rule.ts' does not exist.", + "File '/node_modules/postcss/lib/at-rule.tsx' does not exist.", + "File '/node_modules/postcss/lib/at-rule.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/at-rule' was successfully resolved to '/node_modules/postcss/lib/at-rule.d.ts' with Package ID 'postcss/lib/at-rule.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/at-rule.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/at-rule' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/at-rule' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/at-rule' with target './lib/at-rule.js'.", + "File name '/node_modules/postcss/lib/at-rule.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/at-rule.ts' does not exist.", + "File '/node_modules/postcss/lib/at-rule.tsx' does not exist.", + "Export specifier './lib/at-rule' does not exist in package.json scope at path '/node_modules/postcss'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/at-rule' with target './lib/at-rule.js'.", + "File name '/node_modules/postcss/lib/at-rule.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/at-rule.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/at-rule' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/at-rule.ts' does not exist.", + "File '/node_modules/postcss/lib/at-rule.tsx' does not exist.", + "'package.json' has 'main' field './lib/postcss.js' that references '/node_modules/postcss/lib/at-rule/lib/postcss.js'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/at-rule/lib/postcss.js', target file types: TypeScript.", + "File name '/node_modules/postcss/lib/at-rule/lib/postcss.js' has a '.js' extension - stripping it.", + "======== Module name 'postcss/lib/at-rule' was successfully resolved to '/node_modules/postcss/lib/at-rule.js' with Package ID 'postcss/lib/at-rule.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + }, + "./lib/comment": { + "subpath": "./lib/comment", + "resolutions": { + "node10": { + "name": "./lib/comment", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/postcss/lib/comment.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/comment' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'postcss/lib/comment' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/comment.ts' does not exist.", + "File '/node_modules/postcss/lib/comment.tsx' does not exist.", + "File '/node_modules/postcss/lib/comment.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/comment' was successfully resolved to '/node_modules/postcss/lib/comment.d.ts' with Package ID 'postcss/lib/comment.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/comment.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/comment' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'postcss/lib/comment' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/comment.ts' does not exist.", + "File '/node_modules/postcss/lib/comment.tsx' does not exist.", + "'package.json' has 'main' field './lib/postcss.js' that references '/node_modules/postcss/lib/comment/lib/postcss.js'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/comment/lib/postcss.js', target file types: TypeScript.", + "File name '/node_modules/postcss/lib/comment/lib/postcss.js' has a '.js' extension - stripping it.", + "Loading module 'postcss/lib/comment' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/comment.js' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/comment' was successfully resolved to '/node_modules/postcss/lib/comment.js' with Package ID 'postcss/lib/comment.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/comment.d.ts" + ] + }, + "node16-cjs": { + "name": "./lib/comment", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/postcss/lib/comment.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/comment' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/comment' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/comment' with target './lib/comment.js'.", + "File name '/node_modules/postcss/lib/comment.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/comment.ts' does not exist.", + "File '/node_modules/postcss/lib/comment.tsx' does not exist.", + "File '/node_modules/postcss/lib/comment.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/comment' was successfully resolved to '/node_modules/postcss/lib/comment.d.ts' with Package ID 'postcss/lib/comment.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/comment.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/comment' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/comment' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/comment' with target './lib/comment.js'.", + "File name '/node_modules/postcss/lib/comment.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/comment.ts' does not exist.", + "File '/node_modules/postcss/lib/comment.tsx' does not exist.", + "Export specifier './lib/comment' does not exist in package.json scope at path '/node_modules/postcss'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/comment' with target './lib/comment.js'.", + "File name '/node_modules/postcss/lib/comment.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/comment.js' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/comment' was successfully resolved to '/node_modules/postcss/lib/comment.js' with Package ID 'postcss/lib/comment.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/comment.d.ts" + ] + }, + "node16-esm": { + "name": "./lib/comment", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/postcss/lib/comment.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/comment' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/comment' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/comment' with target './lib/comment.js'.", + "File name '/node_modules/postcss/lib/comment.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/comment.ts' does not exist.", + "File '/node_modules/postcss/lib/comment.tsx' does not exist.", + "File '/node_modules/postcss/lib/comment.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/comment' was successfully resolved to '/node_modules/postcss/lib/comment.d.ts' with Package ID 'postcss/lib/comment.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/comment.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/comment' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/comment' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/comment' with target './lib/comment.js'.", + "File name '/node_modules/postcss/lib/comment.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/comment.ts' does not exist.", + "File '/node_modules/postcss/lib/comment.tsx' does not exist.", + "Export specifier './lib/comment' does not exist in package.json scope at path '/node_modules/postcss'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/comment' with target './lib/comment.js'.", + "File name '/node_modules/postcss/lib/comment.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/comment.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/comment' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field './lib/postcss.js' that references '/node_modules/postcss/lib/comment/lib/postcss.js'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/comment/lib/postcss.js', target file types: TypeScript.", + "File name '/node_modules/postcss/lib/comment/lib/postcss.js' has a '.js' extension - stripping it.", + "======== Module name 'postcss/lib/comment' was successfully resolved to '/node_modules/postcss/lib/comment.js' with Package ID 'postcss/lib/comment.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/comment.d.ts" + ] + }, + "bundler": { + "name": "./lib/comment", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/postcss/lib/comment.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/comment' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/comment' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/comment' with target './lib/comment.js'.", + "File name '/node_modules/postcss/lib/comment.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/comment.ts' does not exist.", + "File '/node_modules/postcss/lib/comment.tsx' does not exist.", + "File '/node_modules/postcss/lib/comment.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/comment' was successfully resolved to '/node_modules/postcss/lib/comment.d.ts' with Package ID 'postcss/lib/comment.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/comment.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/comment' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/comment' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/comment' with target './lib/comment.js'.", + "File name '/node_modules/postcss/lib/comment.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/comment.ts' does not exist.", + "File '/node_modules/postcss/lib/comment.tsx' does not exist.", + "Export specifier './lib/comment' does not exist in package.json scope at path '/node_modules/postcss'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/comment' with target './lib/comment.js'.", + "File name '/node_modules/postcss/lib/comment.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/comment.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/comment' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/comment.ts' does not exist.", + "File '/node_modules/postcss/lib/comment.tsx' does not exist.", + "'package.json' has 'main' field './lib/postcss.js' that references '/node_modules/postcss/lib/comment/lib/postcss.js'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/comment/lib/postcss.js', target file types: TypeScript.", + "File name '/node_modules/postcss/lib/comment/lib/postcss.js' has a '.js' extension - stripping it.", + "======== Module name 'postcss/lib/comment' was successfully resolved to '/node_modules/postcss/lib/comment.js' with Package ID 'postcss/lib/comment.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/comment.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + }, + "./lib/container": { + "subpath": "./lib/container", + "resolutions": { + "node10": { + "name": "./lib/container", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/postcss/lib/container.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/container' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'postcss/lib/container' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/container.ts' does not exist.", + "File '/node_modules/postcss/lib/container.tsx' does not exist.", + "File '/node_modules/postcss/lib/container.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/container' was successfully resolved to '/node_modules/postcss/lib/container.d.ts' with Package ID 'postcss/lib/container.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/container.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/container' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'postcss/lib/container' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/container.ts' does not exist.", + "File '/node_modules/postcss/lib/container.tsx' does not exist.", + "'package.json' has 'main' field './lib/postcss.js' that references '/node_modules/postcss/lib/container/lib/postcss.js'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/container/lib/postcss.js', target file types: TypeScript.", + "File name '/node_modules/postcss/lib/container/lib/postcss.js' has a '.js' extension - stripping it.", + "Loading module 'postcss/lib/container' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/container.js' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/container' was successfully resolved to '/node_modules/postcss/lib/container.js' with Package ID 'postcss/lib/container.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/container.d.ts" + ] + }, + "node16-cjs": { + "name": "./lib/container", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/postcss/lib/container.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/container' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/container' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/container' with target './lib/container.js'.", + "File name '/node_modules/postcss/lib/container.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/container.ts' does not exist.", + "File '/node_modules/postcss/lib/container.tsx' does not exist.", + "File '/node_modules/postcss/lib/container.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/container' was successfully resolved to '/node_modules/postcss/lib/container.d.ts' with Package ID 'postcss/lib/container.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/container.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/container' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/container' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/container' with target './lib/container.js'.", + "File name '/node_modules/postcss/lib/container.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/container.ts' does not exist.", + "File '/node_modules/postcss/lib/container.tsx' does not exist.", + "Export specifier './lib/container' does not exist in package.json scope at path '/node_modules/postcss'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/container' with target './lib/container.js'.", + "File name '/node_modules/postcss/lib/container.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/container.js' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/container' was successfully resolved to '/node_modules/postcss/lib/container.js' with Package ID 'postcss/lib/container.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/container.d.ts" + ] + }, + "node16-esm": { + "name": "./lib/container", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/postcss/lib/container.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/container' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/container' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/container' with target './lib/container.js'.", + "File name '/node_modules/postcss/lib/container.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/container.ts' does not exist.", + "File '/node_modules/postcss/lib/container.tsx' does not exist.", + "File '/node_modules/postcss/lib/container.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/container' was successfully resolved to '/node_modules/postcss/lib/container.d.ts' with Package ID 'postcss/lib/container.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/container.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/container' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/container' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/container' with target './lib/container.js'.", + "File name '/node_modules/postcss/lib/container.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/container.ts' does not exist.", + "File '/node_modules/postcss/lib/container.tsx' does not exist.", + "Export specifier './lib/container' does not exist in package.json scope at path '/node_modules/postcss'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/container' with target './lib/container.js'.", + "File name '/node_modules/postcss/lib/container.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/container.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/container' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field './lib/postcss.js' that references '/node_modules/postcss/lib/container/lib/postcss.js'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/container/lib/postcss.js', target file types: TypeScript.", + "File name '/node_modules/postcss/lib/container/lib/postcss.js' has a '.js' extension - stripping it.", + "======== Module name 'postcss/lib/container' was successfully resolved to '/node_modules/postcss/lib/container.js' with Package ID 'postcss/lib/container.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/container.d.ts" + ] + }, + "bundler": { + "name": "./lib/container", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/postcss/lib/container.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/container' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/container' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/container' with target './lib/container.js'.", + "File name '/node_modules/postcss/lib/container.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/container.ts' does not exist.", + "File '/node_modules/postcss/lib/container.tsx' does not exist.", + "File '/node_modules/postcss/lib/container.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/container' was successfully resolved to '/node_modules/postcss/lib/container.d.ts' with Package ID 'postcss/lib/container.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/container.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/container' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/container' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/container' with target './lib/container.js'.", + "File name '/node_modules/postcss/lib/container.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/container.ts' does not exist.", + "File '/node_modules/postcss/lib/container.tsx' does not exist.", + "Export specifier './lib/container' does not exist in package.json scope at path '/node_modules/postcss'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/container' with target './lib/container.js'.", + "File name '/node_modules/postcss/lib/container.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/container.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/container' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/container.ts' does not exist.", + "File '/node_modules/postcss/lib/container.tsx' does not exist.", + "'package.json' has 'main' field './lib/postcss.js' that references '/node_modules/postcss/lib/container/lib/postcss.js'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/container/lib/postcss.js', target file types: TypeScript.", + "File name '/node_modules/postcss/lib/container/lib/postcss.js' has a '.js' extension - stripping it.", + "======== Module name 'postcss/lib/container' was successfully resolved to '/node_modules/postcss/lib/container.js' with Package ID 'postcss/lib/container.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/container.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + }, + "./lib/css-syntax-error": { + "subpath": "./lib/css-syntax-error", + "resolutions": { + "node10": { + "name": "./lib/css-syntax-error", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/postcss/lib/css-syntax-error.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/css-syntax-error' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'postcss/lib/css-syntax-error' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/css-syntax-error.ts' does not exist.", + "File '/node_modules/postcss/lib/css-syntax-error.tsx' does not exist.", + "File '/node_modules/postcss/lib/css-syntax-error.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/css-syntax-error' was successfully resolved to '/node_modules/postcss/lib/css-syntax-error.d.ts' with Package ID 'postcss/lib/css-syntax-error.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/css-syntax-error.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/css-syntax-error' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'postcss/lib/css-syntax-error' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/css-syntax-error.ts' does not exist.", + "File '/node_modules/postcss/lib/css-syntax-error.tsx' does not exist.", + "'package.json' has 'main' field './lib/postcss.js' that references '/node_modules/postcss/lib/css-syntax-error/lib/postcss.js'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/css-syntax-error/lib/postcss.js', target file types: TypeScript.", + "File name '/node_modules/postcss/lib/css-syntax-error/lib/postcss.js' has a '.js' extension - stripping it.", + "Loading module 'postcss/lib/css-syntax-error' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/css-syntax-error.js' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/css-syntax-error' was successfully resolved to '/node_modules/postcss/lib/css-syntax-error.js' with Package ID 'postcss/lib/css-syntax-error.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts" + ] + }, + "node16-cjs": { + "name": "./lib/css-syntax-error", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/postcss/lib/css-syntax-error.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/css-syntax-error' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/css-syntax-error' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/css-syntax-error' with target './lib/css-syntax-error.js'.", + "File name '/node_modules/postcss/lib/css-syntax-error.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/css-syntax-error.ts' does not exist.", + "File '/node_modules/postcss/lib/css-syntax-error.tsx' does not exist.", + "File '/node_modules/postcss/lib/css-syntax-error.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/css-syntax-error' was successfully resolved to '/node_modules/postcss/lib/css-syntax-error.d.ts' with Package ID 'postcss/lib/css-syntax-error.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/css-syntax-error.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/css-syntax-error' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/css-syntax-error' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/css-syntax-error' with target './lib/css-syntax-error.js'.", + "File name '/node_modules/postcss/lib/css-syntax-error.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/css-syntax-error.ts' does not exist.", + "File '/node_modules/postcss/lib/css-syntax-error.tsx' does not exist.", + "Export specifier './lib/css-syntax-error' does not exist in package.json scope at path '/node_modules/postcss'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/css-syntax-error' with target './lib/css-syntax-error.js'.", + "File name '/node_modules/postcss/lib/css-syntax-error.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/css-syntax-error.js' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/css-syntax-error' was successfully resolved to '/node_modules/postcss/lib/css-syntax-error.js' with Package ID 'postcss/lib/css-syntax-error.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts" + ] + }, + "node16-esm": { + "name": "./lib/css-syntax-error", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/postcss/lib/css-syntax-error.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/css-syntax-error' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/css-syntax-error' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/css-syntax-error' with target './lib/css-syntax-error.js'.", + "File name '/node_modules/postcss/lib/css-syntax-error.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/css-syntax-error.ts' does not exist.", + "File '/node_modules/postcss/lib/css-syntax-error.tsx' does not exist.", + "File '/node_modules/postcss/lib/css-syntax-error.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/css-syntax-error' was successfully resolved to '/node_modules/postcss/lib/css-syntax-error.d.ts' with Package ID 'postcss/lib/css-syntax-error.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/css-syntax-error.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/css-syntax-error' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/css-syntax-error' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/css-syntax-error' with target './lib/css-syntax-error.js'.", + "File name '/node_modules/postcss/lib/css-syntax-error.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/css-syntax-error.ts' does not exist.", + "File '/node_modules/postcss/lib/css-syntax-error.tsx' does not exist.", + "Export specifier './lib/css-syntax-error' does not exist in package.json scope at path '/node_modules/postcss'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/css-syntax-error' with target './lib/css-syntax-error.js'.", + "File name '/node_modules/postcss/lib/css-syntax-error.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/css-syntax-error.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/css-syntax-error' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field './lib/postcss.js' that references '/node_modules/postcss/lib/css-syntax-error/lib/postcss.js'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/css-syntax-error/lib/postcss.js', target file types: TypeScript.", + "File name '/node_modules/postcss/lib/css-syntax-error/lib/postcss.js' has a '.js' extension - stripping it.", + "======== Module name 'postcss/lib/css-syntax-error' was successfully resolved to '/node_modules/postcss/lib/css-syntax-error.js' with Package ID 'postcss/lib/css-syntax-error.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts" + ] + }, + "bundler": { + "name": "./lib/css-syntax-error", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/postcss/lib/css-syntax-error.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/css-syntax-error' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/css-syntax-error' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/css-syntax-error' with target './lib/css-syntax-error.js'.", + "File name '/node_modules/postcss/lib/css-syntax-error.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/css-syntax-error.ts' does not exist.", + "File '/node_modules/postcss/lib/css-syntax-error.tsx' does not exist.", + "File '/node_modules/postcss/lib/css-syntax-error.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/css-syntax-error' was successfully resolved to '/node_modules/postcss/lib/css-syntax-error.d.ts' with Package ID 'postcss/lib/css-syntax-error.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/css-syntax-error.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/css-syntax-error' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/css-syntax-error' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/css-syntax-error' with target './lib/css-syntax-error.js'.", + "File name '/node_modules/postcss/lib/css-syntax-error.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/css-syntax-error.ts' does not exist.", + "File '/node_modules/postcss/lib/css-syntax-error.tsx' does not exist.", + "Export specifier './lib/css-syntax-error' does not exist in package.json scope at path '/node_modules/postcss'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/css-syntax-error' with target './lib/css-syntax-error.js'.", + "File name '/node_modules/postcss/lib/css-syntax-error.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/css-syntax-error.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/css-syntax-error' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/css-syntax-error.ts' does not exist.", + "File '/node_modules/postcss/lib/css-syntax-error.tsx' does not exist.", + "'package.json' has 'main' field './lib/postcss.js' that references '/node_modules/postcss/lib/css-syntax-error/lib/postcss.js'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/css-syntax-error/lib/postcss.js', target file types: TypeScript.", + "File name '/node_modules/postcss/lib/css-syntax-error/lib/postcss.js' has a '.js' extension - stripping it.", + "======== Module name 'postcss/lib/css-syntax-error' was successfully resolved to '/node_modules/postcss/lib/css-syntax-error.js' with Package ID 'postcss/lib/css-syntax-error.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + }, + "./lib/declaration": { + "subpath": "./lib/declaration", + "resolutions": { + "node10": { + "name": "./lib/declaration", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/postcss/lib/declaration.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/declaration' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'postcss/lib/declaration' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/declaration.ts' does not exist.", + "File '/node_modules/postcss/lib/declaration.tsx' does not exist.", + "File '/node_modules/postcss/lib/declaration.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/declaration' was successfully resolved to '/node_modules/postcss/lib/declaration.d.ts' with Package ID 'postcss/lib/declaration.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/declaration.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/declaration' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'postcss/lib/declaration' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/declaration.ts' does not exist.", + "File '/node_modules/postcss/lib/declaration.tsx' does not exist.", + "'package.json' has 'main' field './lib/postcss.js' that references '/node_modules/postcss/lib/declaration/lib/postcss.js'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/declaration/lib/postcss.js', target file types: TypeScript.", + "File name '/node_modules/postcss/lib/declaration/lib/postcss.js' has a '.js' extension - stripping it.", + "Loading module 'postcss/lib/declaration' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/declaration.js' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/declaration' was successfully resolved to '/node_modules/postcss/lib/declaration.js' with Package ID 'postcss/lib/declaration.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/declaration.d.ts" + ] + }, + "node16-cjs": { + "name": "./lib/declaration", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/postcss/lib/declaration.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/declaration' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/declaration' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/declaration' with target './lib/declaration.js'.", + "File name '/node_modules/postcss/lib/declaration.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/declaration.ts' does not exist.", + "File '/node_modules/postcss/lib/declaration.tsx' does not exist.", + "File '/node_modules/postcss/lib/declaration.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/declaration' was successfully resolved to '/node_modules/postcss/lib/declaration.d.ts' with Package ID 'postcss/lib/declaration.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/declaration.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/declaration' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/declaration' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/declaration' with target './lib/declaration.js'.", + "File name '/node_modules/postcss/lib/declaration.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/declaration.ts' does not exist.", + "File '/node_modules/postcss/lib/declaration.tsx' does not exist.", + "Export specifier './lib/declaration' does not exist in package.json scope at path '/node_modules/postcss'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/declaration' with target './lib/declaration.js'.", + "File name '/node_modules/postcss/lib/declaration.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/declaration.js' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/declaration' was successfully resolved to '/node_modules/postcss/lib/declaration.js' with Package ID 'postcss/lib/declaration.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/declaration.d.ts" + ] + }, + "node16-esm": { + "name": "./lib/declaration", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/postcss/lib/declaration.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/declaration' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/declaration' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/declaration' with target './lib/declaration.js'.", + "File name '/node_modules/postcss/lib/declaration.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/declaration.ts' does not exist.", + "File '/node_modules/postcss/lib/declaration.tsx' does not exist.", + "File '/node_modules/postcss/lib/declaration.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/declaration' was successfully resolved to '/node_modules/postcss/lib/declaration.d.ts' with Package ID 'postcss/lib/declaration.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/declaration.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/declaration' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/declaration' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/declaration' with target './lib/declaration.js'.", + "File name '/node_modules/postcss/lib/declaration.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/declaration.ts' does not exist.", + "File '/node_modules/postcss/lib/declaration.tsx' does not exist.", + "Export specifier './lib/declaration' does not exist in package.json scope at path '/node_modules/postcss'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/declaration' with target './lib/declaration.js'.", + "File name '/node_modules/postcss/lib/declaration.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/declaration.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/declaration' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field './lib/postcss.js' that references '/node_modules/postcss/lib/declaration/lib/postcss.js'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/declaration/lib/postcss.js', target file types: TypeScript.", + "File name '/node_modules/postcss/lib/declaration/lib/postcss.js' has a '.js' extension - stripping it.", + "======== Module name 'postcss/lib/declaration' was successfully resolved to '/node_modules/postcss/lib/declaration.js' with Package ID 'postcss/lib/declaration.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/declaration.d.ts" + ] + }, + "bundler": { + "name": "./lib/declaration", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/postcss/lib/declaration.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/declaration' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/declaration' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/declaration' with target './lib/declaration.js'.", + "File name '/node_modules/postcss/lib/declaration.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/declaration.ts' does not exist.", + "File '/node_modules/postcss/lib/declaration.tsx' does not exist.", + "File '/node_modules/postcss/lib/declaration.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/declaration' was successfully resolved to '/node_modules/postcss/lib/declaration.d.ts' with Package ID 'postcss/lib/declaration.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/declaration.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/declaration' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/declaration' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/declaration' with target './lib/declaration.js'.", + "File name '/node_modules/postcss/lib/declaration.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/declaration.ts' does not exist.", + "File '/node_modules/postcss/lib/declaration.tsx' does not exist.", + "Export specifier './lib/declaration' does not exist in package.json scope at path '/node_modules/postcss'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/declaration' with target './lib/declaration.js'.", + "File name '/node_modules/postcss/lib/declaration.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/declaration.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/declaration' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/declaration.ts' does not exist.", + "File '/node_modules/postcss/lib/declaration.tsx' does not exist.", + "'package.json' has 'main' field './lib/postcss.js' that references '/node_modules/postcss/lib/declaration/lib/postcss.js'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/declaration/lib/postcss.js', target file types: TypeScript.", + "File name '/node_modules/postcss/lib/declaration/lib/postcss.js' has a '.js' extension - stripping it.", + "======== Module name 'postcss/lib/declaration' was successfully resolved to '/node_modules/postcss/lib/declaration.js' with Package ID 'postcss/lib/declaration.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/declaration.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + }, + "./lib/fromJSON": { + "subpath": "./lib/fromJSON", + "resolutions": { + "node10": { + "name": "./lib/fromJSON", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/postcss/lib/fromJSON.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/fromJSON' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'postcss/lib/fromJSON' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/fromJSON.ts' does not exist.", + "File '/node_modules/postcss/lib/fromJSON.tsx' does not exist.", + "File '/node_modules/postcss/lib/fromJSON.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/fromJSON' was successfully resolved to '/node_modules/postcss/lib/fromJSON.d.ts' with Package ID 'postcss/lib/fromJSON.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/fromJSON.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/fromJSON' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'postcss/lib/fromJSON' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/fromJSON.ts' does not exist.", + "File '/node_modules/postcss/lib/fromJSON.tsx' does not exist.", + "'package.json' has 'main' field './lib/postcss.js' that references '/node_modules/postcss/lib/fromJSON/lib/postcss.js'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/fromJSON/lib/postcss.js', target file types: TypeScript.", + "File name '/node_modules/postcss/lib/fromJSON/lib/postcss.js' has a '.js' extension - stripping it.", + "Loading module 'postcss/lib/fromJSON' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/fromJSON.js' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/fromJSON' was successfully resolved to '/node_modules/postcss/lib/fromJSON.js' with Package ID 'postcss/lib/fromJSON.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/fromJSON.d.ts" + ] + }, + "node16-cjs": { + "name": "./lib/fromJSON", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/postcss/lib/fromJSON.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/fromJSON' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/fromJSON' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/fromJSON' with target './lib/fromJSON.js'.", + "File name '/node_modules/postcss/lib/fromJSON.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/fromJSON.ts' does not exist.", + "File '/node_modules/postcss/lib/fromJSON.tsx' does not exist.", + "File '/node_modules/postcss/lib/fromJSON.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/fromJSON' was successfully resolved to '/node_modules/postcss/lib/fromJSON.d.ts' with Package ID 'postcss/lib/fromJSON.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/fromJSON.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/fromJSON' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/fromJSON' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/fromJSON' with target './lib/fromJSON.js'.", + "File name '/node_modules/postcss/lib/fromJSON.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/fromJSON.ts' does not exist.", + "File '/node_modules/postcss/lib/fromJSON.tsx' does not exist.", + "Export specifier './lib/fromJSON' does not exist in package.json scope at path '/node_modules/postcss'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/fromJSON' with target './lib/fromJSON.js'.", + "File name '/node_modules/postcss/lib/fromJSON.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/fromJSON.js' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/fromJSON' was successfully resolved to '/node_modules/postcss/lib/fromJSON.js' with Package ID 'postcss/lib/fromJSON.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/fromJSON.d.ts" + ] + }, + "node16-esm": { + "name": "./lib/fromJSON", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/postcss/lib/fromJSON.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/fromJSON' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/fromJSON' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/fromJSON' with target './lib/fromJSON.js'.", + "File name '/node_modules/postcss/lib/fromJSON.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/fromJSON.ts' does not exist.", + "File '/node_modules/postcss/lib/fromJSON.tsx' does not exist.", + "File '/node_modules/postcss/lib/fromJSON.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/fromJSON' was successfully resolved to '/node_modules/postcss/lib/fromJSON.d.ts' with Package ID 'postcss/lib/fromJSON.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/fromJSON.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/fromJSON' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/fromJSON' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/fromJSON' with target './lib/fromJSON.js'.", + "File name '/node_modules/postcss/lib/fromJSON.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/fromJSON.ts' does not exist.", + "File '/node_modules/postcss/lib/fromJSON.tsx' does not exist.", + "Export specifier './lib/fromJSON' does not exist in package.json scope at path '/node_modules/postcss'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/fromJSON' with target './lib/fromJSON.js'.", + "File name '/node_modules/postcss/lib/fromJSON.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/fromJSON.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/fromJSON' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field './lib/postcss.js' that references '/node_modules/postcss/lib/fromJSON/lib/postcss.js'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/fromJSON/lib/postcss.js', target file types: TypeScript.", + "File name '/node_modules/postcss/lib/fromJSON/lib/postcss.js' has a '.js' extension - stripping it.", + "======== Module name 'postcss/lib/fromJSON' was successfully resolved to '/node_modules/postcss/lib/fromJSON.js' with Package ID 'postcss/lib/fromJSON.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/fromJSON.d.ts" + ] + }, + "bundler": { + "name": "./lib/fromJSON", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/postcss/lib/fromJSON.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/fromJSON' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/fromJSON' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/fromJSON' with target './lib/fromJSON.js'.", + "File name '/node_modules/postcss/lib/fromJSON.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/fromJSON.ts' does not exist.", + "File '/node_modules/postcss/lib/fromJSON.tsx' does not exist.", + "File '/node_modules/postcss/lib/fromJSON.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/fromJSON' was successfully resolved to '/node_modules/postcss/lib/fromJSON.d.ts' with Package ID 'postcss/lib/fromJSON.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/fromJSON.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/fromJSON' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/fromJSON' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/fromJSON' with target './lib/fromJSON.js'.", + "File name '/node_modules/postcss/lib/fromJSON.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/fromJSON.ts' does not exist.", + "File '/node_modules/postcss/lib/fromJSON.tsx' does not exist.", + "Export specifier './lib/fromJSON' does not exist in package.json scope at path '/node_modules/postcss'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/fromJSON' with target './lib/fromJSON.js'.", + "File name '/node_modules/postcss/lib/fromJSON.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/fromJSON.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/fromJSON' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/fromJSON.ts' does not exist.", + "File '/node_modules/postcss/lib/fromJSON.tsx' does not exist.", + "'package.json' has 'main' field './lib/postcss.js' that references '/node_modules/postcss/lib/fromJSON/lib/postcss.js'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/fromJSON/lib/postcss.js', target file types: TypeScript.", + "File name '/node_modules/postcss/lib/fromJSON/lib/postcss.js' has a '.js' extension - stripping it.", + "======== Module name 'postcss/lib/fromJSON' was successfully resolved to '/node_modules/postcss/lib/fromJSON.js' with Package ID 'postcss/lib/fromJSON.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/fromJSON.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + }, + "./lib/input": { + "subpath": "./lib/input", + "resolutions": { + "node10": { + "name": "./lib/input", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/postcss/lib/input.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/input' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'postcss/lib/input' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/input.ts' does not exist.", + "File '/node_modules/postcss/lib/input.tsx' does not exist.", + "File '/node_modules/postcss/lib/input.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/input' was successfully resolved to '/node_modules/postcss/lib/input.d.ts' with Package ID 'postcss/lib/input.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/input.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/input' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'postcss/lib/input' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/input.ts' does not exist.", + "File '/node_modules/postcss/lib/input.tsx' does not exist.", + "'package.json' has 'main' field './lib/postcss.js' that references '/node_modules/postcss/lib/input/lib/postcss.js'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/input/lib/postcss.js', target file types: TypeScript.", + "File name '/node_modules/postcss/lib/input/lib/postcss.js' has a '.js' extension - stripping it.", + "Loading module 'postcss/lib/input' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/input.js' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/input' was successfully resolved to '/node_modules/postcss/lib/input.js' with Package ID 'postcss/lib/input.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts" + ] + }, + "node16-cjs": { + "name": "./lib/input", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/postcss/lib/input.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/input' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/input' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/input' with target './lib/input.js'.", + "File name '/node_modules/postcss/lib/input.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/input.ts' does not exist.", + "File '/node_modules/postcss/lib/input.tsx' does not exist.", + "File '/node_modules/postcss/lib/input.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/input' was successfully resolved to '/node_modules/postcss/lib/input.d.ts' with Package ID 'postcss/lib/input.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/input.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/input' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/input' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/input' with target './lib/input.js'.", + "File name '/node_modules/postcss/lib/input.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/input.ts' does not exist.", + "File '/node_modules/postcss/lib/input.tsx' does not exist.", + "Export specifier './lib/input' does not exist in package.json scope at path '/node_modules/postcss'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/input' with target './lib/input.js'.", + "File name '/node_modules/postcss/lib/input.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/input.js' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/input' was successfully resolved to '/node_modules/postcss/lib/input.js' with Package ID 'postcss/lib/input.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts" + ] + }, + "node16-esm": { + "name": "./lib/input", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/postcss/lib/input.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/input' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/input' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/input' with target './lib/input.js'.", + "File name '/node_modules/postcss/lib/input.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/input.ts' does not exist.", + "File '/node_modules/postcss/lib/input.tsx' does not exist.", + "File '/node_modules/postcss/lib/input.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/input' was successfully resolved to '/node_modules/postcss/lib/input.d.ts' with Package ID 'postcss/lib/input.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/input.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/input' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/input' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/input' with target './lib/input.js'.", + "File name '/node_modules/postcss/lib/input.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/input.ts' does not exist.", + "File '/node_modules/postcss/lib/input.tsx' does not exist.", + "Export specifier './lib/input' does not exist in package.json scope at path '/node_modules/postcss'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/input' with target './lib/input.js'.", + "File name '/node_modules/postcss/lib/input.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/input.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/input' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field './lib/postcss.js' that references '/node_modules/postcss/lib/input/lib/postcss.js'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/input/lib/postcss.js', target file types: TypeScript.", + "File name '/node_modules/postcss/lib/input/lib/postcss.js' has a '.js' extension - stripping it.", + "======== Module name 'postcss/lib/input' was successfully resolved to '/node_modules/postcss/lib/input.js' with Package ID 'postcss/lib/input.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts" + ] + }, + "bundler": { + "name": "./lib/input", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/postcss/lib/input.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/input' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/input' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/input' with target './lib/input.js'.", + "File name '/node_modules/postcss/lib/input.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/input.ts' does not exist.", + "File '/node_modules/postcss/lib/input.tsx' does not exist.", + "File '/node_modules/postcss/lib/input.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/input' was successfully resolved to '/node_modules/postcss/lib/input.d.ts' with Package ID 'postcss/lib/input.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/input.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/input' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/input' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/input' with target './lib/input.js'.", + "File name '/node_modules/postcss/lib/input.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/input.ts' does not exist.", + "File '/node_modules/postcss/lib/input.tsx' does not exist.", + "Export specifier './lib/input' does not exist in package.json scope at path '/node_modules/postcss'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/input' with target './lib/input.js'.", + "File name '/node_modules/postcss/lib/input.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/input.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/input' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/input.ts' does not exist.", + "File '/node_modules/postcss/lib/input.tsx' does not exist.", + "'package.json' has 'main' field './lib/postcss.js' that references '/node_modules/postcss/lib/input/lib/postcss.js'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/input/lib/postcss.js', target file types: TypeScript.", + "File name '/node_modules/postcss/lib/input/lib/postcss.js' has a '.js' extension - stripping it.", + "======== Module name 'postcss/lib/input' was successfully resolved to '/node_modules/postcss/lib/input.js' with Package ID 'postcss/lib/input.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + }, + "./lib/lazy-result": { + "subpath": "./lib/lazy-result", + "resolutions": { + "node10": { + "name": "./lib/lazy-result", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/postcss/lib/lazy-result.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/lazy-result' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'postcss/lib/lazy-result' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/lazy-result.ts' does not exist.", + "File '/node_modules/postcss/lib/lazy-result.tsx' does not exist.", + "File '/node_modules/postcss/lib/lazy-result.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/lazy-result' was successfully resolved to '/node_modules/postcss/lib/lazy-result.d.ts' with Package ID 'postcss/lib/lazy-result.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/lazy-result.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/lazy-result' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'postcss/lib/lazy-result' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/lazy-result.ts' does not exist.", + "File '/node_modules/postcss/lib/lazy-result.tsx' does not exist.", + "'package.json' has 'main' field './lib/postcss.js' that references '/node_modules/postcss/lib/lazy-result/lib/postcss.js'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/lazy-result/lib/postcss.js', target file types: TypeScript.", + "File name '/node_modules/postcss/lib/lazy-result/lib/postcss.js' has a '.js' extension - stripping it.", + "Loading module 'postcss/lib/lazy-result' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/lazy-result.js' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/lazy-result' was successfully resolved to '/node_modules/postcss/lib/lazy-result.js' with Package ID 'postcss/lib/lazy-result.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts" + ] + }, + "node16-cjs": { + "name": "./lib/lazy-result", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/postcss/lib/lazy-result.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/lazy-result' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/lazy-result' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/lazy-result' with target './lib/lazy-result.js'.", + "File name '/node_modules/postcss/lib/lazy-result.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/lazy-result.ts' does not exist.", + "File '/node_modules/postcss/lib/lazy-result.tsx' does not exist.", + "File '/node_modules/postcss/lib/lazy-result.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/lazy-result' was successfully resolved to '/node_modules/postcss/lib/lazy-result.d.ts' with Package ID 'postcss/lib/lazy-result.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/lazy-result.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/lazy-result' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/lazy-result' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/lazy-result' with target './lib/lazy-result.js'.", + "File name '/node_modules/postcss/lib/lazy-result.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/lazy-result.ts' does not exist.", + "File '/node_modules/postcss/lib/lazy-result.tsx' does not exist.", + "Export specifier './lib/lazy-result' does not exist in package.json scope at path '/node_modules/postcss'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/lazy-result' with target './lib/lazy-result.js'.", + "File name '/node_modules/postcss/lib/lazy-result.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/lazy-result.js' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/lazy-result' was successfully resolved to '/node_modules/postcss/lib/lazy-result.js' with Package ID 'postcss/lib/lazy-result.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts" + ] + }, + "node16-esm": { + "name": "./lib/lazy-result", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/postcss/lib/lazy-result.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/lazy-result' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/lazy-result' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/lazy-result' with target './lib/lazy-result.js'.", + "File name '/node_modules/postcss/lib/lazy-result.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/lazy-result.ts' does not exist.", + "File '/node_modules/postcss/lib/lazy-result.tsx' does not exist.", + "File '/node_modules/postcss/lib/lazy-result.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/lazy-result' was successfully resolved to '/node_modules/postcss/lib/lazy-result.d.ts' with Package ID 'postcss/lib/lazy-result.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/lazy-result.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/lazy-result' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/lazy-result' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/lazy-result' with target './lib/lazy-result.js'.", + "File name '/node_modules/postcss/lib/lazy-result.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/lazy-result.ts' does not exist.", + "File '/node_modules/postcss/lib/lazy-result.tsx' does not exist.", + "Export specifier './lib/lazy-result' does not exist in package.json scope at path '/node_modules/postcss'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/lazy-result' with target './lib/lazy-result.js'.", + "File name '/node_modules/postcss/lib/lazy-result.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/lazy-result.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/lazy-result' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field './lib/postcss.js' that references '/node_modules/postcss/lib/lazy-result/lib/postcss.js'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/lazy-result/lib/postcss.js', target file types: TypeScript.", + "File name '/node_modules/postcss/lib/lazy-result/lib/postcss.js' has a '.js' extension - stripping it.", + "======== Module name 'postcss/lib/lazy-result' was successfully resolved to '/node_modules/postcss/lib/lazy-result.js' with Package ID 'postcss/lib/lazy-result.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts" + ] + }, + "bundler": { + "name": "./lib/lazy-result", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/postcss/lib/lazy-result.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/lazy-result' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/lazy-result' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/lazy-result' with target './lib/lazy-result.js'.", + "File name '/node_modules/postcss/lib/lazy-result.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/lazy-result.ts' does not exist.", + "File '/node_modules/postcss/lib/lazy-result.tsx' does not exist.", + "File '/node_modules/postcss/lib/lazy-result.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/lazy-result' was successfully resolved to '/node_modules/postcss/lib/lazy-result.d.ts' with Package ID 'postcss/lib/lazy-result.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/lazy-result.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/lazy-result' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/lazy-result' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/lazy-result' with target './lib/lazy-result.js'.", + "File name '/node_modules/postcss/lib/lazy-result.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/lazy-result.ts' does not exist.", + "File '/node_modules/postcss/lib/lazy-result.tsx' does not exist.", + "Export specifier './lib/lazy-result' does not exist in package.json scope at path '/node_modules/postcss'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/lazy-result' with target './lib/lazy-result.js'.", + "File name '/node_modules/postcss/lib/lazy-result.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/lazy-result.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/lazy-result' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/lazy-result.ts' does not exist.", + "File '/node_modules/postcss/lib/lazy-result.tsx' does not exist.", + "'package.json' has 'main' field './lib/postcss.js' that references '/node_modules/postcss/lib/lazy-result/lib/postcss.js'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/lazy-result/lib/postcss.js', target file types: TypeScript.", + "File name '/node_modules/postcss/lib/lazy-result/lib/postcss.js' has a '.js' extension - stripping it.", + "======== Module name 'postcss/lib/lazy-result' was successfully resolved to '/node_modules/postcss/lib/lazy-result.js' with Package ID 'postcss/lib/lazy-result.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + }, + "./lib/no-work-result": { + "subpath": "./lib/no-work-result", + "resolutions": { + "node10": { + "name": "./lib/no-work-result", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/postcss/lib/no-work-result.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/no-work-result' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'postcss/lib/no-work-result' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/no-work-result.ts' does not exist.", + "File '/node_modules/postcss/lib/no-work-result.tsx' does not exist.", + "File '/node_modules/postcss/lib/no-work-result.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/no-work-result' was successfully resolved to '/node_modules/postcss/lib/no-work-result.d.ts' with Package ID 'postcss/lib/no-work-result.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/no-work-result.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/no-work-result' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'postcss/lib/no-work-result' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/no-work-result.ts' does not exist.", + "File '/node_modules/postcss/lib/no-work-result.tsx' does not exist.", + "'package.json' has 'main' field './lib/postcss.js' that references '/node_modules/postcss/lib/no-work-result/lib/postcss.js'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/no-work-result/lib/postcss.js', target file types: TypeScript.", + "File name '/node_modules/postcss/lib/no-work-result/lib/postcss.js' has a '.js' extension - stripping it.", + "Loading module 'postcss/lib/no-work-result' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/no-work-result.js' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/no-work-result' was successfully resolved to '/node_modules/postcss/lib/no-work-result.js' with Package ID 'postcss/lib/no-work-result.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts" + ] + }, + "node16-cjs": { + "name": "./lib/no-work-result", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/postcss/lib/no-work-result.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/no-work-result' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/no-work-result' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/no-work-result' with target './lib/no-work-result.js'.", + "File name '/node_modules/postcss/lib/no-work-result.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/no-work-result.ts' does not exist.", + "File '/node_modules/postcss/lib/no-work-result.tsx' does not exist.", + "File '/node_modules/postcss/lib/no-work-result.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/no-work-result' was successfully resolved to '/node_modules/postcss/lib/no-work-result.d.ts' with Package ID 'postcss/lib/no-work-result.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/no-work-result.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/no-work-result' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/no-work-result' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/no-work-result' with target './lib/no-work-result.js'.", + "File name '/node_modules/postcss/lib/no-work-result.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/no-work-result.ts' does not exist.", + "File '/node_modules/postcss/lib/no-work-result.tsx' does not exist.", + "Export specifier './lib/no-work-result' does not exist in package.json scope at path '/node_modules/postcss'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/no-work-result' with target './lib/no-work-result.js'.", + "File name '/node_modules/postcss/lib/no-work-result.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/no-work-result.js' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/no-work-result' was successfully resolved to '/node_modules/postcss/lib/no-work-result.js' with Package ID 'postcss/lib/no-work-result.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts" + ] + }, + "node16-esm": { + "name": "./lib/no-work-result", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/postcss/lib/no-work-result.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/no-work-result' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/no-work-result' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/no-work-result' with target './lib/no-work-result.js'.", + "File name '/node_modules/postcss/lib/no-work-result.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/no-work-result.ts' does not exist.", + "File '/node_modules/postcss/lib/no-work-result.tsx' does not exist.", + "File '/node_modules/postcss/lib/no-work-result.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/no-work-result' was successfully resolved to '/node_modules/postcss/lib/no-work-result.d.ts' with Package ID 'postcss/lib/no-work-result.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/no-work-result.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/no-work-result' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/no-work-result' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/no-work-result' with target './lib/no-work-result.js'.", + "File name '/node_modules/postcss/lib/no-work-result.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/no-work-result.ts' does not exist.", + "File '/node_modules/postcss/lib/no-work-result.tsx' does not exist.", + "Export specifier './lib/no-work-result' does not exist in package.json scope at path '/node_modules/postcss'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/no-work-result' with target './lib/no-work-result.js'.", + "File name '/node_modules/postcss/lib/no-work-result.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/no-work-result.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/no-work-result' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field './lib/postcss.js' that references '/node_modules/postcss/lib/no-work-result/lib/postcss.js'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/no-work-result/lib/postcss.js', target file types: TypeScript.", + "File name '/node_modules/postcss/lib/no-work-result/lib/postcss.js' has a '.js' extension - stripping it.", + "======== Module name 'postcss/lib/no-work-result' was successfully resolved to '/node_modules/postcss/lib/no-work-result.js' with Package ID 'postcss/lib/no-work-result.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts" + ] + }, + "bundler": { + "name": "./lib/no-work-result", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/postcss/lib/no-work-result.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/no-work-result' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/no-work-result' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/no-work-result' with target './lib/no-work-result.js'.", + "File name '/node_modules/postcss/lib/no-work-result.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/no-work-result.ts' does not exist.", + "File '/node_modules/postcss/lib/no-work-result.tsx' does not exist.", + "File '/node_modules/postcss/lib/no-work-result.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/no-work-result' was successfully resolved to '/node_modules/postcss/lib/no-work-result.d.ts' with Package ID 'postcss/lib/no-work-result.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/no-work-result.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/no-work-result' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/no-work-result' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/no-work-result' with target './lib/no-work-result.js'.", + "File name '/node_modules/postcss/lib/no-work-result.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/no-work-result.ts' does not exist.", + "File '/node_modules/postcss/lib/no-work-result.tsx' does not exist.", + "Export specifier './lib/no-work-result' does not exist in package.json scope at path '/node_modules/postcss'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/no-work-result' with target './lib/no-work-result.js'.", + "File name '/node_modules/postcss/lib/no-work-result.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/no-work-result.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/no-work-result' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/no-work-result.ts' does not exist.", + "File '/node_modules/postcss/lib/no-work-result.tsx' does not exist.", + "'package.json' has 'main' field './lib/postcss.js' that references '/node_modules/postcss/lib/no-work-result/lib/postcss.js'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/no-work-result/lib/postcss.js', target file types: TypeScript.", + "File name '/node_modules/postcss/lib/no-work-result/lib/postcss.js' has a '.js' extension - stripping it.", + "======== Module name 'postcss/lib/no-work-result' was successfully resolved to '/node_modules/postcss/lib/no-work-result.js' with Package ID 'postcss/lib/no-work-result.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + }, + "./lib/list": { + "subpath": "./lib/list", + "resolutions": { + "node10": { + "name": "./lib/list", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/postcss/lib/list.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/list' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'postcss/lib/list' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/list.ts' does not exist.", + "File '/node_modules/postcss/lib/list.tsx' does not exist.", + "File '/node_modules/postcss/lib/list.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/list' was successfully resolved to '/node_modules/postcss/lib/list.d.ts' with Package ID 'postcss/lib/list.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/list.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/list' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'postcss/lib/list' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/list.ts' does not exist.", + "File '/node_modules/postcss/lib/list.tsx' does not exist.", + "'package.json' has 'main' field './lib/postcss.js' that references '/node_modules/postcss/lib/list/lib/postcss.js'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/list/lib/postcss.js', target file types: TypeScript.", + "File name '/node_modules/postcss/lib/list/lib/postcss.js' has a '.js' extension - stripping it.", + "Loading module 'postcss/lib/list' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/list.js' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/list' was successfully resolved to '/node_modules/postcss/lib/list.js' with Package ID 'postcss/lib/list.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/list.d.ts" + ] + }, + "node16-cjs": { + "name": "./lib/list", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/postcss/lib/list.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/list' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/list' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/list' with target './lib/list.js'.", + "File name '/node_modules/postcss/lib/list.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/list.ts' does not exist.", + "File '/node_modules/postcss/lib/list.tsx' does not exist.", + "File '/node_modules/postcss/lib/list.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/list' was successfully resolved to '/node_modules/postcss/lib/list.d.ts' with Package ID 'postcss/lib/list.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/list.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/list' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/list' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/list' with target './lib/list.js'.", + "File name '/node_modules/postcss/lib/list.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/list.ts' does not exist.", + "File '/node_modules/postcss/lib/list.tsx' does not exist.", + "Export specifier './lib/list' does not exist in package.json scope at path '/node_modules/postcss'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/list' with target './lib/list.js'.", + "File name '/node_modules/postcss/lib/list.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/list.js' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/list' was successfully resolved to '/node_modules/postcss/lib/list.js' with Package ID 'postcss/lib/list.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/list.d.ts" + ] + }, + "node16-esm": { + "name": "./lib/list", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/postcss/lib/list.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/list' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/list' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/list' with target './lib/list.js'.", + "File name '/node_modules/postcss/lib/list.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/list.ts' does not exist.", + "File '/node_modules/postcss/lib/list.tsx' does not exist.", + "File '/node_modules/postcss/lib/list.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/list' was successfully resolved to '/node_modules/postcss/lib/list.d.ts' with Package ID 'postcss/lib/list.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/list.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/list' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/list' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/list' with target './lib/list.js'.", + "File name '/node_modules/postcss/lib/list.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/list.ts' does not exist.", + "File '/node_modules/postcss/lib/list.tsx' does not exist.", + "Export specifier './lib/list' does not exist in package.json scope at path '/node_modules/postcss'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/list' with target './lib/list.js'.", + "File name '/node_modules/postcss/lib/list.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/list.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/list' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field './lib/postcss.js' that references '/node_modules/postcss/lib/list/lib/postcss.js'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/list/lib/postcss.js', target file types: TypeScript.", + "File name '/node_modules/postcss/lib/list/lib/postcss.js' has a '.js' extension - stripping it.", + "======== Module name 'postcss/lib/list' was successfully resolved to '/node_modules/postcss/lib/list.js' with Package ID 'postcss/lib/list.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/list.d.ts" + ] + }, + "bundler": { + "name": "./lib/list", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/postcss/lib/list.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/list' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/list' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/list' with target './lib/list.js'.", + "File name '/node_modules/postcss/lib/list.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/list.ts' does not exist.", + "File '/node_modules/postcss/lib/list.tsx' does not exist.", + "File '/node_modules/postcss/lib/list.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/list' was successfully resolved to '/node_modules/postcss/lib/list.d.ts' with Package ID 'postcss/lib/list.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/list.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/list' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/list' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/list' with target './lib/list.js'.", + "File name '/node_modules/postcss/lib/list.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/list.ts' does not exist.", + "File '/node_modules/postcss/lib/list.tsx' does not exist.", + "Export specifier './lib/list' does not exist in package.json scope at path '/node_modules/postcss'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/list' with target './lib/list.js'.", + "File name '/node_modules/postcss/lib/list.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/list.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/list' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/list.ts' does not exist.", + "File '/node_modules/postcss/lib/list.tsx' does not exist.", + "'package.json' has 'main' field './lib/postcss.js' that references '/node_modules/postcss/lib/list/lib/postcss.js'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/list/lib/postcss.js', target file types: TypeScript.", + "File name '/node_modules/postcss/lib/list/lib/postcss.js' has a '.js' extension - stripping it.", + "======== Module name 'postcss/lib/list' was successfully resolved to '/node_modules/postcss/lib/list.js' with Package ID 'postcss/lib/list.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/list.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + }, + "./lib/map-generator": { + "subpath": "./lib/map-generator", + "resolutions": { + "node10": { + "name": "./lib/map-generator", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/postcss/lib/map-generator.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/map-generator' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'postcss/lib/map-generator' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/map-generator.ts' does not exist.", + "File '/node_modules/postcss/lib/map-generator.tsx' does not exist.", + "File '/node_modules/postcss/lib/map-generator.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field './lib/postcss.d.ts' that references '/node_modules/postcss/lib/map-generator/lib/postcss.d.ts'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/map-generator/lib/postcss.d.ts', target file types: TypeScript, Declaration.", + "File name '/node_modules/postcss/lib/map-generator/lib/postcss.d.ts' has a '.d.ts' extension - stripping it.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "Loading module 'postcss/lib/map-generator' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/map-generator.js' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/map-generator' was successfully resolved to '/node_modules/postcss/lib/map-generator.js' with Package ID 'postcss/lib/map-generator.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts" + ] + }, + "node16-cjs": { + "name": "./lib/map-generator", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/postcss/lib/map-generator.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/map-generator' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/map-generator' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/map-generator' with target './lib/map-generator.js'.", + "File name '/node_modules/postcss/lib/map-generator.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/map-generator.ts' does not exist.", + "File '/node_modules/postcss/lib/map-generator.tsx' does not exist.", + "File '/node_modules/postcss/lib/map-generator.d.ts' does not exist.", + "Export specifier './lib/map-generator' does not exist in package.json scope at path '/node_modules/postcss'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/map-generator' with target './lib/map-generator.js'.", + "File name '/node_modules/postcss/lib/map-generator.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/map-generator.js' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/map-generator' was successfully resolved to '/node_modules/postcss/lib/map-generator.js' with Package ID 'postcss/lib/map-generator.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts" + ] + }, + "node16-esm": { + "name": "./lib/map-generator", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/postcss/lib/map-generator.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/map-generator' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/map-generator' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/map-generator' with target './lib/map-generator.js'.", + "File name '/node_modules/postcss/lib/map-generator.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/map-generator.ts' does not exist.", + "File '/node_modules/postcss/lib/map-generator.tsx' does not exist.", + "File '/node_modules/postcss/lib/map-generator.d.ts' does not exist.", + "Export specifier './lib/map-generator' does not exist in package.json scope at path '/node_modules/postcss'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/map-generator' with target './lib/map-generator.js'.", + "File name '/node_modules/postcss/lib/map-generator.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/map-generator.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/map-generator' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field './lib/postcss.d.ts' that references '/node_modules/postcss/lib/map-generator/lib/postcss.d.ts'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/map-generator/lib/postcss.d.ts', target file types: TypeScript, Declaration.", + "File name '/node_modules/postcss/lib/map-generator/lib/postcss.d.ts' has a '.d.ts' extension - stripping it.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "======== Module name 'postcss/lib/map-generator' was successfully resolved to '/node_modules/postcss/lib/map-generator.js' with Package ID 'postcss/lib/map-generator.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts" + ] + }, + "bundler": { + "name": "./lib/map-generator", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/postcss/lib/map-generator.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/map-generator' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/map-generator' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/map-generator' with target './lib/map-generator.js'.", + "File name '/node_modules/postcss/lib/map-generator.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/map-generator.ts' does not exist.", + "File '/node_modules/postcss/lib/map-generator.tsx' does not exist.", + "File '/node_modules/postcss/lib/map-generator.d.ts' does not exist.", + "Export specifier './lib/map-generator' does not exist in package.json scope at path '/node_modules/postcss'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/map-generator' with target './lib/map-generator.js'.", + "File name '/node_modules/postcss/lib/map-generator.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/map-generator.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/map-generator' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "'package.json' does not have a 'typesVersions' field.", + "File '/node_modules/postcss/lib/map-generator.ts' does not exist.", + "File '/node_modules/postcss/lib/map-generator.tsx' does not exist.", + "File '/node_modules/postcss/lib/map-generator.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field './lib/postcss.d.ts' that references '/node_modules/postcss/lib/map-generator/lib/postcss.d.ts'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/map-generator/lib/postcss.d.ts', target file types: TypeScript, Declaration.", + "File name '/node_modules/postcss/lib/map-generator/lib/postcss.d.ts' has a '.d.ts' extension - stripping it.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "======== Module name 'postcss/lib/map-generator' was successfully resolved to '/node_modules/postcss/lib/map-generator.js' with Package ID 'postcss/lib/map-generator.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts" + ] + } + }, + "hasTypes": false, + "isWildcard": false + }, + "./lib/node": { + "subpath": "./lib/node", + "resolutions": { + "node10": { + "name": "./lib/node", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/postcss/lib/node.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/node' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'postcss/lib/node' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/node.ts' does not exist.", + "File '/node_modules/postcss/lib/node.tsx' does not exist.", + "File '/node_modules/postcss/lib/node.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/node' was successfully resolved to '/node_modules/postcss/lib/node.d.ts' with Package ID 'postcss/lib/node.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/node.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/node' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'postcss/lib/node' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/node.ts' does not exist.", + "File '/node_modules/postcss/lib/node.tsx' does not exist.", + "'package.json' has 'main' field './lib/postcss.js' that references '/node_modules/postcss/lib/node/lib/postcss.js'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/node/lib/postcss.js', target file types: TypeScript.", + "File name '/node_modules/postcss/lib/node/lib/postcss.js' has a '.js' extension - stripping it.", + "Loading module 'postcss/lib/node' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/node.js' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/node' was successfully resolved to '/node_modules/postcss/lib/node.js' with Package ID 'postcss/lib/node.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/node.d.ts" + ] + }, + "node16-cjs": { + "name": "./lib/node", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/postcss/lib/node.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/node' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/node' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/node' with target './lib/node.js'.", + "File name '/node_modules/postcss/lib/node.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/node.ts' does not exist.", + "File '/node_modules/postcss/lib/node.tsx' does not exist.", + "File '/node_modules/postcss/lib/node.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/node' was successfully resolved to '/node_modules/postcss/lib/node.d.ts' with Package ID 'postcss/lib/node.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/node.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/node' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/node' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/node' with target './lib/node.js'.", + "File name '/node_modules/postcss/lib/node.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/node.ts' does not exist.", + "File '/node_modules/postcss/lib/node.tsx' does not exist.", + "Export specifier './lib/node' does not exist in package.json scope at path '/node_modules/postcss'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/node' with target './lib/node.js'.", + "File name '/node_modules/postcss/lib/node.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/node.js' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/node' was successfully resolved to '/node_modules/postcss/lib/node.js' with Package ID 'postcss/lib/node.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/node.d.ts" + ] + }, + "node16-esm": { + "name": "./lib/node", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/postcss/lib/node.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/node' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/node' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/node' with target './lib/node.js'.", + "File name '/node_modules/postcss/lib/node.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/node.ts' does not exist.", + "File '/node_modules/postcss/lib/node.tsx' does not exist.", + "File '/node_modules/postcss/lib/node.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/node' was successfully resolved to '/node_modules/postcss/lib/node.d.ts' with Package ID 'postcss/lib/node.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/node.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/node' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/node' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/node' with target './lib/node.js'.", + "File name '/node_modules/postcss/lib/node.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/node.ts' does not exist.", + "File '/node_modules/postcss/lib/node.tsx' does not exist.", + "Export specifier './lib/node' does not exist in package.json scope at path '/node_modules/postcss'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/node' with target './lib/node.js'.", + "File name '/node_modules/postcss/lib/node.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/node.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/node' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field './lib/postcss.js' that references '/node_modules/postcss/lib/node/lib/postcss.js'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/node/lib/postcss.js', target file types: TypeScript.", + "File name '/node_modules/postcss/lib/node/lib/postcss.js' has a '.js' extension - stripping it.", + "======== Module name 'postcss/lib/node' was successfully resolved to '/node_modules/postcss/lib/node.js' with Package ID 'postcss/lib/node.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/node.d.ts" + ] + }, + "bundler": { + "name": "./lib/node", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/postcss/lib/node.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/node' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/node' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/node' with target './lib/node.js'.", + "File name '/node_modules/postcss/lib/node.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/node.ts' does not exist.", + "File '/node_modules/postcss/lib/node.tsx' does not exist.", + "File '/node_modules/postcss/lib/node.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/node' was successfully resolved to '/node_modules/postcss/lib/node.d.ts' with Package ID 'postcss/lib/node.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/node.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/node' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/node' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/node' with target './lib/node.js'.", + "File name '/node_modules/postcss/lib/node.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/node.ts' does not exist.", + "File '/node_modules/postcss/lib/node.tsx' does not exist.", + "Export specifier './lib/node' does not exist in package.json scope at path '/node_modules/postcss'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/node' with target './lib/node.js'.", + "File name '/node_modules/postcss/lib/node.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/node.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/node' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/node.ts' does not exist.", + "File '/node_modules/postcss/lib/node.tsx' does not exist.", + "'package.json' has 'main' field './lib/postcss.js' that references '/node_modules/postcss/lib/node/lib/postcss.js'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/node/lib/postcss.js', target file types: TypeScript.", + "File name '/node_modules/postcss/lib/node/lib/postcss.js' has a '.js' extension - stripping it.", + "======== Module name 'postcss/lib/node' was successfully resolved to '/node_modules/postcss/lib/node.js' with Package ID 'postcss/lib/node.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/node.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + }, + "./lib/parse": { + "subpath": "./lib/parse", + "resolutions": { + "node10": { + "name": "./lib/parse", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/postcss/lib/parse.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/parse' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'postcss/lib/parse' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/parse.ts' does not exist.", + "File '/node_modules/postcss/lib/parse.tsx' does not exist.", + "File '/node_modules/postcss/lib/parse.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/parse' was successfully resolved to '/node_modules/postcss/lib/parse.d.ts' with Package ID 'postcss/lib/parse.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/parse.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/parse' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'postcss/lib/parse' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/parse.ts' does not exist.", + "File '/node_modules/postcss/lib/parse.tsx' does not exist.", + "'package.json' has 'main' field './lib/postcss.js' that references '/node_modules/postcss/lib/parse/lib/postcss.js'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/parse/lib/postcss.js', target file types: TypeScript.", + "File name '/node_modules/postcss/lib/parse/lib/postcss.js' has a '.js' extension - stripping it.", + "Loading module 'postcss/lib/parse' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/parse.js' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/parse' was successfully resolved to '/node_modules/postcss/lib/parse.js' with Package ID 'postcss/lib/parse.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/parse.d.ts" + ] + }, + "node16-cjs": { + "name": "./lib/parse", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/postcss/lib/parse.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/parse' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/parse' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/parse' with target './lib/parse.js'.", + "File name '/node_modules/postcss/lib/parse.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/parse.ts' does not exist.", + "File '/node_modules/postcss/lib/parse.tsx' does not exist.", + "File '/node_modules/postcss/lib/parse.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/parse' was successfully resolved to '/node_modules/postcss/lib/parse.d.ts' with Package ID 'postcss/lib/parse.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/parse.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/parse' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/parse' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/parse' with target './lib/parse.js'.", + "File name '/node_modules/postcss/lib/parse.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/parse.ts' does not exist.", + "File '/node_modules/postcss/lib/parse.tsx' does not exist.", + "Export specifier './lib/parse' does not exist in package.json scope at path '/node_modules/postcss'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/parse' with target './lib/parse.js'.", + "File name '/node_modules/postcss/lib/parse.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/parse.js' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/parse' was successfully resolved to '/node_modules/postcss/lib/parse.js' with Package ID 'postcss/lib/parse.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/parse.d.ts" + ] + }, + "node16-esm": { + "name": "./lib/parse", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/postcss/lib/parse.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/parse' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/parse' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/parse' with target './lib/parse.js'.", + "File name '/node_modules/postcss/lib/parse.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/parse.ts' does not exist.", + "File '/node_modules/postcss/lib/parse.tsx' does not exist.", + "File '/node_modules/postcss/lib/parse.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/parse' was successfully resolved to '/node_modules/postcss/lib/parse.d.ts' with Package ID 'postcss/lib/parse.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/parse.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/parse' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/parse' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/parse' with target './lib/parse.js'.", + "File name '/node_modules/postcss/lib/parse.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/parse.ts' does not exist.", + "File '/node_modules/postcss/lib/parse.tsx' does not exist.", + "Export specifier './lib/parse' does not exist in package.json scope at path '/node_modules/postcss'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/parse' with target './lib/parse.js'.", + "File name '/node_modules/postcss/lib/parse.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/parse.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/parse' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field './lib/postcss.js' that references '/node_modules/postcss/lib/parse/lib/postcss.js'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/parse/lib/postcss.js', target file types: TypeScript.", + "File name '/node_modules/postcss/lib/parse/lib/postcss.js' has a '.js' extension - stripping it.", + "======== Module name 'postcss/lib/parse' was successfully resolved to '/node_modules/postcss/lib/parse.js' with Package ID 'postcss/lib/parse.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/parse.d.ts" + ] + }, + "bundler": { + "name": "./lib/parse", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/postcss/lib/parse.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/parse' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/parse' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/parse' with target './lib/parse.js'.", + "File name '/node_modules/postcss/lib/parse.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/parse.ts' does not exist.", + "File '/node_modules/postcss/lib/parse.tsx' does not exist.", + "File '/node_modules/postcss/lib/parse.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/parse' was successfully resolved to '/node_modules/postcss/lib/parse.d.ts' with Package ID 'postcss/lib/parse.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/parse.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/parse' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/parse' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/parse' with target './lib/parse.js'.", + "File name '/node_modules/postcss/lib/parse.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/parse.ts' does not exist.", + "File '/node_modules/postcss/lib/parse.tsx' does not exist.", + "Export specifier './lib/parse' does not exist in package.json scope at path '/node_modules/postcss'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/parse' with target './lib/parse.js'.", + "File name '/node_modules/postcss/lib/parse.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/parse.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/parse' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/parse.ts' does not exist.", + "File '/node_modules/postcss/lib/parse.tsx' does not exist.", + "'package.json' has 'main' field './lib/postcss.js' that references '/node_modules/postcss/lib/parse/lib/postcss.js'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/parse/lib/postcss.js', target file types: TypeScript.", + "File name '/node_modules/postcss/lib/parse/lib/postcss.js' has a '.js' extension - stripping it.", + "======== Module name 'postcss/lib/parse' was successfully resolved to '/node_modules/postcss/lib/parse.js' with Package ID 'postcss/lib/parse.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/parse.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + }, + "./lib/parser": { + "subpath": "./lib/parser", + "resolutions": { + "node10": { + "name": "./lib/parser", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/postcss/lib/parser.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/parser' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'postcss/lib/parser' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/parser.ts' does not exist.", + "File '/node_modules/postcss/lib/parser.tsx' does not exist.", + "File '/node_modules/postcss/lib/parser.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field './lib/postcss.d.ts' that references '/node_modules/postcss/lib/parser/lib/postcss.d.ts'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/parser/lib/postcss.d.ts', target file types: TypeScript, Declaration.", + "File name '/node_modules/postcss/lib/parser/lib/postcss.d.ts' has a '.d.ts' extension - stripping it.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "Loading module 'postcss/lib/parser' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/parser.js' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/parser' was successfully resolved to '/node_modules/postcss/lib/parser.js' with Package ID 'postcss/lib/parser.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts" + ] + }, + "node16-cjs": { + "name": "./lib/parser", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/postcss/lib/parser.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/parser' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/parser' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/parser' with target './lib/parser.js'.", + "File name '/node_modules/postcss/lib/parser.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/parser.ts' does not exist.", + "File '/node_modules/postcss/lib/parser.tsx' does not exist.", + "File '/node_modules/postcss/lib/parser.d.ts' does not exist.", + "Export specifier './lib/parser' does not exist in package.json scope at path '/node_modules/postcss'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/parser' with target './lib/parser.js'.", + "File name '/node_modules/postcss/lib/parser.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/parser.js' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/parser' was successfully resolved to '/node_modules/postcss/lib/parser.js' with Package ID 'postcss/lib/parser.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts" + ] + }, + "node16-esm": { + "name": "./lib/parser", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/postcss/lib/parser.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/parser' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/parser' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/parser' with target './lib/parser.js'.", + "File name '/node_modules/postcss/lib/parser.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/parser.ts' does not exist.", + "File '/node_modules/postcss/lib/parser.tsx' does not exist.", + "File '/node_modules/postcss/lib/parser.d.ts' does not exist.", + "Export specifier './lib/parser' does not exist in package.json scope at path '/node_modules/postcss'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/parser' with target './lib/parser.js'.", + "File name '/node_modules/postcss/lib/parser.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/parser.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/parser' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field './lib/postcss.d.ts' that references '/node_modules/postcss/lib/parser/lib/postcss.d.ts'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/parser/lib/postcss.d.ts', target file types: TypeScript, Declaration.", + "File name '/node_modules/postcss/lib/parser/lib/postcss.d.ts' has a '.d.ts' extension - stripping it.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "======== Module name 'postcss/lib/parser' was successfully resolved to '/node_modules/postcss/lib/parser.js' with Package ID 'postcss/lib/parser.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts" + ] + }, + "bundler": { + "name": "./lib/parser", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/postcss/lib/parser.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/parser' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/parser' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/parser' with target './lib/parser.js'.", + "File name '/node_modules/postcss/lib/parser.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/parser.ts' does not exist.", + "File '/node_modules/postcss/lib/parser.tsx' does not exist.", + "File '/node_modules/postcss/lib/parser.d.ts' does not exist.", + "Export specifier './lib/parser' does not exist in package.json scope at path '/node_modules/postcss'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/parser' with target './lib/parser.js'.", + "File name '/node_modules/postcss/lib/parser.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/parser.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/parser' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/parser.ts' does not exist.", + "File '/node_modules/postcss/lib/parser.tsx' does not exist.", + "File '/node_modules/postcss/lib/parser.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field './lib/postcss.d.ts' that references '/node_modules/postcss/lib/parser/lib/postcss.d.ts'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/parser/lib/postcss.d.ts', target file types: TypeScript, Declaration.", + "File name '/node_modules/postcss/lib/parser/lib/postcss.d.ts' has a '.d.ts' extension - stripping it.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "======== Module name 'postcss/lib/parser' was successfully resolved to '/node_modules/postcss/lib/parser.js' with Package ID 'postcss/lib/parser.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts" + ] + } + }, + "hasTypes": false, + "isWildcard": false + }, + "./lib/postcss": { + "subpath": "./lib/postcss", + "resolutions": { + "node10": { + "name": "./lib/postcss", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/postcss/lib/postcss.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/postcss' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'postcss/lib/postcss' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/postcss.ts' does not exist.", + "File '/node_modules/postcss/lib/postcss.tsx' does not exist.", + "File '/node_modules/postcss/lib/postcss.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/postcss' was successfully resolved to '/node_modules/postcss/lib/postcss.d.ts' with Package ID 'postcss/lib/postcss.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/postcss.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/postcss' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'postcss/lib/postcss' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/postcss.ts' does not exist.", + "File '/node_modules/postcss/lib/postcss.tsx' does not exist.", + "'package.json' has 'main' field './lib/postcss.js' that references '/node_modules/postcss/lib/postcss/lib/postcss.js'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/postcss/lib/postcss.js', target file types: TypeScript.", + "File name '/node_modules/postcss/lib/postcss/lib/postcss.js' has a '.js' extension - stripping it.", + "Loading module 'postcss/lib/postcss' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/postcss.js' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/postcss' was successfully resolved to '/node_modules/postcss/lib/postcss.js' with Package ID 'postcss/lib/postcss.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/postcss.d.ts" + ] + }, + "node16-cjs": { + "name": "./lib/postcss", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/postcss/lib/postcss.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/postcss' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/postcss' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/postcss' with target './lib/postcss.js'.", + "File name '/node_modules/postcss/lib/postcss.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/postcss.ts' does not exist.", + "File '/node_modules/postcss/lib/postcss.tsx' does not exist.", + "File '/node_modules/postcss/lib/postcss.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/postcss' was successfully resolved to '/node_modules/postcss/lib/postcss.d.ts' with Package ID 'postcss/lib/postcss.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/postcss.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/postcss' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/postcss' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/postcss' with target './lib/postcss.js'.", + "File name '/node_modules/postcss/lib/postcss.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/postcss.ts' does not exist.", + "File '/node_modules/postcss/lib/postcss.tsx' does not exist.", + "Export specifier './lib/postcss' does not exist in package.json scope at path '/node_modules/postcss'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/postcss' with target './lib/postcss.js'.", + "File name '/node_modules/postcss/lib/postcss.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/postcss.js' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/postcss' was successfully resolved to '/node_modules/postcss/lib/postcss.js' with Package ID 'postcss/lib/postcss.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/postcss.d.ts" + ] + }, + "node16-esm": { + "name": "./lib/postcss", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/postcss/lib/postcss.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/postcss' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/postcss' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/postcss' with target './lib/postcss.js'.", + "File name '/node_modules/postcss/lib/postcss.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/postcss.ts' does not exist.", + "File '/node_modules/postcss/lib/postcss.tsx' does not exist.", + "File '/node_modules/postcss/lib/postcss.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/postcss' was successfully resolved to '/node_modules/postcss/lib/postcss.d.ts' with Package ID 'postcss/lib/postcss.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/postcss.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/postcss' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/postcss' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/postcss' with target './lib/postcss.js'.", + "File name '/node_modules/postcss/lib/postcss.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/postcss.ts' does not exist.", + "File '/node_modules/postcss/lib/postcss.tsx' does not exist.", + "Export specifier './lib/postcss' does not exist in package.json scope at path '/node_modules/postcss'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/postcss' with target './lib/postcss.js'.", + "File name '/node_modules/postcss/lib/postcss.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/postcss.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/postcss' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field './lib/postcss.js' that references '/node_modules/postcss/lib/postcss/lib/postcss.js'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/postcss/lib/postcss.js', target file types: TypeScript.", + "File name '/node_modules/postcss/lib/postcss/lib/postcss.js' has a '.js' extension - stripping it.", + "======== Module name 'postcss/lib/postcss' was successfully resolved to '/node_modules/postcss/lib/postcss.js' with Package ID 'postcss/lib/postcss.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/postcss.d.ts" + ] + }, + "bundler": { + "name": "./lib/postcss", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/postcss/lib/postcss.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/postcss' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/postcss' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/postcss' with target './lib/postcss.js'.", + "File name '/node_modules/postcss/lib/postcss.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/postcss.ts' does not exist.", + "File '/node_modules/postcss/lib/postcss.tsx' does not exist.", + "File '/node_modules/postcss/lib/postcss.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/postcss' was successfully resolved to '/node_modules/postcss/lib/postcss.d.ts' with Package ID 'postcss/lib/postcss.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/postcss.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/postcss' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/postcss' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/postcss' with target './lib/postcss.js'.", + "File name '/node_modules/postcss/lib/postcss.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/postcss.ts' does not exist.", + "File '/node_modules/postcss/lib/postcss.tsx' does not exist.", + "Export specifier './lib/postcss' does not exist in package.json scope at path '/node_modules/postcss'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/postcss' with target './lib/postcss.js'.", + "File name '/node_modules/postcss/lib/postcss.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/postcss.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/postcss' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/postcss.ts' does not exist.", + "File '/node_modules/postcss/lib/postcss.tsx' does not exist.", + "'package.json' has 'main' field './lib/postcss.js' that references '/node_modules/postcss/lib/postcss/lib/postcss.js'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/postcss/lib/postcss.js', target file types: TypeScript.", + "File name '/node_modules/postcss/lib/postcss/lib/postcss.js' has a '.js' extension - stripping it.", + "======== Module name 'postcss/lib/postcss' was successfully resolved to '/node_modules/postcss/lib/postcss.js' with Package ID 'postcss/lib/postcss.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/postcss.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + }, + "./lib/previous-map": { + "subpath": "./lib/previous-map", + "resolutions": { + "node10": { + "name": "./lib/previous-map", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/postcss/lib/previous-map.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/previous-map' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'postcss/lib/previous-map' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/previous-map.ts' does not exist.", + "File '/node_modules/postcss/lib/previous-map.tsx' does not exist.", + "File '/node_modules/postcss/lib/previous-map.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/previous-map' was successfully resolved to '/node_modules/postcss/lib/previous-map.d.ts' with Package ID 'postcss/lib/previous-map.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/previous-map.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/previous-map' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'postcss/lib/previous-map' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/previous-map.ts' does not exist.", + "File '/node_modules/postcss/lib/previous-map.tsx' does not exist.", + "'package.json' has 'main' field './lib/postcss.js' that references '/node_modules/postcss/lib/previous-map/lib/postcss.js'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/previous-map/lib/postcss.js', target file types: TypeScript.", + "File name '/node_modules/postcss/lib/previous-map/lib/postcss.js' has a '.js' extension - stripping it.", + "Loading module 'postcss/lib/previous-map' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/previous-map.js' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/previous-map' was successfully resolved to '/node_modules/postcss/lib/previous-map.js' with Package ID 'postcss/lib/previous-map.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts" + ] + }, + "node16-cjs": { + "name": "./lib/previous-map", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/postcss/lib/previous-map.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/previous-map' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/previous-map' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/previous-map' with target './lib/previous-map.js'.", + "File name '/node_modules/postcss/lib/previous-map.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/previous-map.ts' does not exist.", + "File '/node_modules/postcss/lib/previous-map.tsx' does not exist.", + "File '/node_modules/postcss/lib/previous-map.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/previous-map' was successfully resolved to '/node_modules/postcss/lib/previous-map.d.ts' with Package ID 'postcss/lib/previous-map.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/previous-map.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/previous-map' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/previous-map' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/previous-map' with target './lib/previous-map.js'.", + "File name '/node_modules/postcss/lib/previous-map.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/previous-map.ts' does not exist.", + "File '/node_modules/postcss/lib/previous-map.tsx' does not exist.", + "Export specifier './lib/previous-map' does not exist in package.json scope at path '/node_modules/postcss'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/previous-map' with target './lib/previous-map.js'.", + "File name '/node_modules/postcss/lib/previous-map.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/previous-map.js' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/previous-map' was successfully resolved to '/node_modules/postcss/lib/previous-map.js' with Package ID 'postcss/lib/previous-map.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts" + ] + }, + "node16-esm": { + "name": "./lib/previous-map", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/postcss/lib/previous-map.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/previous-map' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/previous-map' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/previous-map' with target './lib/previous-map.js'.", + "File name '/node_modules/postcss/lib/previous-map.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/previous-map.ts' does not exist.", + "File '/node_modules/postcss/lib/previous-map.tsx' does not exist.", + "File '/node_modules/postcss/lib/previous-map.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/previous-map' was successfully resolved to '/node_modules/postcss/lib/previous-map.d.ts' with Package ID 'postcss/lib/previous-map.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/previous-map.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/previous-map' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/previous-map' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/previous-map' with target './lib/previous-map.js'.", + "File name '/node_modules/postcss/lib/previous-map.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/previous-map.ts' does not exist.", + "File '/node_modules/postcss/lib/previous-map.tsx' does not exist.", + "Export specifier './lib/previous-map' does not exist in package.json scope at path '/node_modules/postcss'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/previous-map' with target './lib/previous-map.js'.", + "File name '/node_modules/postcss/lib/previous-map.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/previous-map.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/previous-map' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field './lib/postcss.js' that references '/node_modules/postcss/lib/previous-map/lib/postcss.js'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/previous-map/lib/postcss.js', target file types: TypeScript.", + "File name '/node_modules/postcss/lib/previous-map/lib/postcss.js' has a '.js' extension - stripping it.", + "======== Module name 'postcss/lib/previous-map' was successfully resolved to '/node_modules/postcss/lib/previous-map.js' with Package ID 'postcss/lib/previous-map.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts" + ] + }, + "bundler": { + "name": "./lib/previous-map", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/postcss/lib/previous-map.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/previous-map' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/previous-map' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/previous-map' with target './lib/previous-map.js'.", + "File name '/node_modules/postcss/lib/previous-map.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/previous-map.ts' does not exist.", + "File '/node_modules/postcss/lib/previous-map.tsx' does not exist.", + "File '/node_modules/postcss/lib/previous-map.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/previous-map' was successfully resolved to '/node_modules/postcss/lib/previous-map.d.ts' with Package ID 'postcss/lib/previous-map.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/previous-map.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/previous-map' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/previous-map' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/previous-map' with target './lib/previous-map.js'.", + "File name '/node_modules/postcss/lib/previous-map.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/previous-map.ts' does not exist.", + "File '/node_modules/postcss/lib/previous-map.tsx' does not exist.", + "Export specifier './lib/previous-map' does not exist in package.json scope at path '/node_modules/postcss'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/previous-map' with target './lib/previous-map.js'.", + "File name '/node_modules/postcss/lib/previous-map.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/previous-map.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/previous-map' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/previous-map.ts' does not exist.", + "File '/node_modules/postcss/lib/previous-map.tsx' does not exist.", + "'package.json' has 'main' field './lib/postcss.js' that references '/node_modules/postcss/lib/previous-map/lib/postcss.js'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/previous-map/lib/postcss.js', target file types: TypeScript.", + "File name '/node_modules/postcss/lib/previous-map/lib/postcss.js' has a '.js' extension - stripping it.", + "======== Module name 'postcss/lib/previous-map' was successfully resolved to '/node_modules/postcss/lib/previous-map.js' with Package ID 'postcss/lib/previous-map.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + }, + "./lib/processor": { + "subpath": "./lib/processor", + "resolutions": { + "node10": { + "name": "./lib/processor", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/postcss/lib/processor.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/processor' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'postcss/lib/processor' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/processor.ts' does not exist.", + "File '/node_modules/postcss/lib/processor.tsx' does not exist.", + "File '/node_modules/postcss/lib/processor.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/processor' was successfully resolved to '/node_modules/postcss/lib/processor.d.ts' with Package ID 'postcss/lib/processor.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/processor.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/processor' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'postcss/lib/processor' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/processor.ts' does not exist.", + "File '/node_modules/postcss/lib/processor.tsx' does not exist.", + "'package.json' has 'main' field './lib/postcss.js' that references '/node_modules/postcss/lib/processor/lib/postcss.js'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/processor/lib/postcss.js', target file types: TypeScript.", + "File name '/node_modules/postcss/lib/processor/lib/postcss.js' has a '.js' extension - stripping it.", + "Loading module 'postcss/lib/processor' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/processor.js' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/processor' was successfully resolved to '/node_modules/postcss/lib/processor.js' with Package ID 'postcss/lib/processor.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts" + ] + }, + "node16-cjs": { + "name": "./lib/processor", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/postcss/lib/processor.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/processor' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/processor' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/processor' with target './lib/processor.js'.", + "File name '/node_modules/postcss/lib/processor.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/processor.ts' does not exist.", + "File '/node_modules/postcss/lib/processor.tsx' does not exist.", + "File '/node_modules/postcss/lib/processor.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/processor' was successfully resolved to '/node_modules/postcss/lib/processor.d.ts' with Package ID 'postcss/lib/processor.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/processor.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/processor' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/processor' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/processor' with target './lib/processor.js'.", + "File name '/node_modules/postcss/lib/processor.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/processor.ts' does not exist.", + "File '/node_modules/postcss/lib/processor.tsx' does not exist.", + "Export specifier './lib/processor' does not exist in package.json scope at path '/node_modules/postcss'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/processor' with target './lib/processor.js'.", + "File name '/node_modules/postcss/lib/processor.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/processor.js' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/processor' was successfully resolved to '/node_modules/postcss/lib/processor.js' with Package ID 'postcss/lib/processor.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts" + ] + }, + "node16-esm": { + "name": "./lib/processor", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/postcss/lib/processor.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/processor' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/processor' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/processor' with target './lib/processor.js'.", + "File name '/node_modules/postcss/lib/processor.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/processor.ts' does not exist.", + "File '/node_modules/postcss/lib/processor.tsx' does not exist.", + "File '/node_modules/postcss/lib/processor.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/processor' was successfully resolved to '/node_modules/postcss/lib/processor.d.ts' with Package ID 'postcss/lib/processor.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/processor.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/processor' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/processor' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/processor' with target './lib/processor.js'.", + "File name '/node_modules/postcss/lib/processor.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/processor.ts' does not exist.", + "File '/node_modules/postcss/lib/processor.tsx' does not exist.", + "Export specifier './lib/processor' does not exist in package.json scope at path '/node_modules/postcss'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/processor' with target './lib/processor.js'.", + "File name '/node_modules/postcss/lib/processor.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/processor.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/processor' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field './lib/postcss.js' that references '/node_modules/postcss/lib/processor/lib/postcss.js'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/processor/lib/postcss.js', target file types: TypeScript.", + "File name '/node_modules/postcss/lib/processor/lib/postcss.js' has a '.js' extension - stripping it.", + "======== Module name 'postcss/lib/processor' was successfully resolved to '/node_modules/postcss/lib/processor.js' with Package ID 'postcss/lib/processor.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts" + ] + }, + "bundler": { + "name": "./lib/processor", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/postcss/lib/processor.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/processor' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/processor' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/processor' with target './lib/processor.js'.", + "File name '/node_modules/postcss/lib/processor.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/processor.ts' does not exist.", + "File '/node_modules/postcss/lib/processor.tsx' does not exist.", + "File '/node_modules/postcss/lib/processor.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/processor' was successfully resolved to '/node_modules/postcss/lib/processor.d.ts' with Package ID 'postcss/lib/processor.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/processor.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/processor' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/processor' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/processor' with target './lib/processor.js'.", + "File name '/node_modules/postcss/lib/processor.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/processor.ts' does not exist.", + "File '/node_modules/postcss/lib/processor.tsx' does not exist.", + "Export specifier './lib/processor' does not exist in package.json scope at path '/node_modules/postcss'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/processor' with target './lib/processor.js'.", + "File name '/node_modules/postcss/lib/processor.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/processor.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/processor' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/processor.ts' does not exist.", + "File '/node_modules/postcss/lib/processor.tsx' does not exist.", + "'package.json' has 'main' field './lib/postcss.js' that references '/node_modules/postcss/lib/processor/lib/postcss.js'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/processor/lib/postcss.js', target file types: TypeScript.", + "File name '/node_modules/postcss/lib/processor/lib/postcss.js' has a '.js' extension - stripping it.", + "======== Module name 'postcss/lib/processor' was successfully resolved to '/node_modules/postcss/lib/processor.js' with Package ID 'postcss/lib/processor.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + }, + "./lib/result": { + "subpath": "./lib/result", + "resolutions": { + "node10": { + "name": "./lib/result", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/postcss/lib/result.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/result' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'postcss/lib/result' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/result.ts' does not exist.", + "File '/node_modules/postcss/lib/result.tsx' does not exist.", + "File '/node_modules/postcss/lib/result.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/result' was successfully resolved to '/node_modules/postcss/lib/result.d.ts' with Package ID 'postcss/lib/result.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/result.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/result' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'postcss/lib/result' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/result.ts' does not exist.", + "File '/node_modules/postcss/lib/result.tsx' does not exist.", + "'package.json' has 'main' field './lib/postcss.js' that references '/node_modules/postcss/lib/result/lib/postcss.js'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/result/lib/postcss.js', target file types: TypeScript.", + "File name '/node_modules/postcss/lib/result/lib/postcss.js' has a '.js' extension - stripping it.", + "Loading module 'postcss/lib/result' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/result.js' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/result' was successfully resolved to '/node_modules/postcss/lib/result.js' with Package ID 'postcss/lib/result.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/result.d.ts" + ] + }, + "node16-cjs": { + "name": "./lib/result", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/postcss/lib/result.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/result' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/result' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/result' with target './lib/result.js'.", + "File name '/node_modules/postcss/lib/result.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/result.ts' does not exist.", + "File '/node_modules/postcss/lib/result.tsx' does not exist.", + "File '/node_modules/postcss/lib/result.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/result' was successfully resolved to '/node_modules/postcss/lib/result.d.ts' with Package ID 'postcss/lib/result.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/result.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/result' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/result' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/result' with target './lib/result.js'.", + "File name '/node_modules/postcss/lib/result.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/result.ts' does not exist.", + "File '/node_modules/postcss/lib/result.tsx' does not exist.", + "Export specifier './lib/result' does not exist in package.json scope at path '/node_modules/postcss'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/result' with target './lib/result.js'.", + "File name '/node_modules/postcss/lib/result.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/result.js' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/result' was successfully resolved to '/node_modules/postcss/lib/result.js' with Package ID 'postcss/lib/result.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/result.d.ts" + ] + }, + "node16-esm": { + "name": "./lib/result", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/postcss/lib/result.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/result' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/result' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/result' with target './lib/result.js'.", + "File name '/node_modules/postcss/lib/result.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/result.ts' does not exist.", + "File '/node_modules/postcss/lib/result.tsx' does not exist.", + "File '/node_modules/postcss/lib/result.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/result' was successfully resolved to '/node_modules/postcss/lib/result.d.ts' with Package ID 'postcss/lib/result.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/result.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/result' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/result' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/result' with target './lib/result.js'.", + "File name '/node_modules/postcss/lib/result.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/result.ts' does not exist.", + "File '/node_modules/postcss/lib/result.tsx' does not exist.", + "Export specifier './lib/result' does not exist in package.json scope at path '/node_modules/postcss'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/result' with target './lib/result.js'.", + "File name '/node_modules/postcss/lib/result.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/result.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/result' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field './lib/postcss.js' that references '/node_modules/postcss/lib/result/lib/postcss.js'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/result/lib/postcss.js', target file types: TypeScript.", + "File name '/node_modules/postcss/lib/result/lib/postcss.js' has a '.js' extension - stripping it.", + "======== Module name 'postcss/lib/result' was successfully resolved to '/node_modules/postcss/lib/result.js' with Package ID 'postcss/lib/result.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/result.d.ts" + ] + }, + "bundler": { + "name": "./lib/result", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/postcss/lib/result.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/result' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/result' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/result' with target './lib/result.js'.", + "File name '/node_modules/postcss/lib/result.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/result.ts' does not exist.", + "File '/node_modules/postcss/lib/result.tsx' does not exist.", + "File '/node_modules/postcss/lib/result.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/result' was successfully resolved to '/node_modules/postcss/lib/result.d.ts' with Package ID 'postcss/lib/result.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/result.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/result' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/result' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/result' with target './lib/result.js'.", + "File name '/node_modules/postcss/lib/result.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/result.ts' does not exist.", + "File '/node_modules/postcss/lib/result.tsx' does not exist.", + "Export specifier './lib/result' does not exist in package.json scope at path '/node_modules/postcss'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/result' with target './lib/result.js'.", + "File name '/node_modules/postcss/lib/result.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/result.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/result' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/result.ts' does not exist.", + "File '/node_modules/postcss/lib/result.tsx' does not exist.", + "'package.json' has 'main' field './lib/postcss.js' that references '/node_modules/postcss/lib/result/lib/postcss.js'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/result/lib/postcss.js', target file types: TypeScript.", + "File name '/node_modules/postcss/lib/result/lib/postcss.js' has a '.js' extension - stripping it.", + "======== Module name 'postcss/lib/result' was successfully resolved to '/node_modules/postcss/lib/result.js' with Package ID 'postcss/lib/result.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/result.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + }, + "./lib/root": { + "subpath": "./lib/root", + "resolutions": { + "node10": { + "name": "./lib/root", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/postcss/lib/root.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/root' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'postcss/lib/root' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/root.ts' does not exist.", + "File '/node_modules/postcss/lib/root.tsx' does not exist.", + "File '/node_modules/postcss/lib/root.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/root' was successfully resolved to '/node_modules/postcss/lib/root.d.ts' with Package ID 'postcss/lib/root.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/root.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/root' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'postcss/lib/root' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/root.ts' does not exist.", + "File '/node_modules/postcss/lib/root.tsx' does not exist.", + "'package.json' has 'main' field './lib/postcss.js' that references '/node_modules/postcss/lib/root/lib/postcss.js'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/root/lib/postcss.js', target file types: TypeScript.", + "File name '/node_modules/postcss/lib/root/lib/postcss.js' has a '.js' extension - stripping it.", + "Loading module 'postcss/lib/root' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/root.js' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/root' was successfully resolved to '/node_modules/postcss/lib/root.js' with Package ID 'postcss/lib/root.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/root.d.ts" + ] + }, + "node16-cjs": { + "name": "./lib/root", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/postcss/lib/root.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/root' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/root' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/root' with target './lib/root.js'.", + "File name '/node_modules/postcss/lib/root.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/root.ts' does not exist.", + "File '/node_modules/postcss/lib/root.tsx' does not exist.", + "File '/node_modules/postcss/lib/root.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/root' was successfully resolved to '/node_modules/postcss/lib/root.d.ts' with Package ID 'postcss/lib/root.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/root.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/root' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/root' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/root' with target './lib/root.js'.", + "File name '/node_modules/postcss/lib/root.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/root.ts' does not exist.", + "File '/node_modules/postcss/lib/root.tsx' does not exist.", + "Export specifier './lib/root' does not exist in package.json scope at path '/node_modules/postcss'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/root' with target './lib/root.js'.", + "File name '/node_modules/postcss/lib/root.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/root.js' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/root' was successfully resolved to '/node_modules/postcss/lib/root.js' with Package ID 'postcss/lib/root.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/root.d.ts" + ] + }, + "node16-esm": { + "name": "./lib/root", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/postcss/lib/root.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/root' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/root' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/root' with target './lib/root.js'.", + "File name '/node_modules/postcss/lib/root.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/root.ts' does not exist.", + "File '/node_modules/postcss/lib/root.tsx' does not exist.", + "File '/node_modules/postcss/lib/root.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/root' was successfully resolved to '/node_modules/postcss/lib/root.d.ts' with Package ID 'postcss/lib/root.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/root.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/root' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/root' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/root' with target './lib/root.js'.", + "File name '/node_modules/postcss/lib/root.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/root.ts' does not exist.", + "File '/node_modules/postcss/lib/root.tsx' does not exist.", + "Export specifier './lib/root' does not exist in package.json scope at path '/node_modules/postcss'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/root' with target './lib/root.js'.", + "File name '/node_modules/postcss/lib/root.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/root.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/root' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field './lib/postcss.js' that references '/node_modules/postcss/lib/root/lib/postcss.js'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/root/lib/postcss.js', target file types: TypeScript.", + "File name '/node_modules/postcss/lib/root/lib/postcss.js' has a '.js' extension - stripping it.", + "======== Module name 'postcss/lib/root' was successfully resolved to '/node_modules/postcss/lib/root.js' with Package ID 'postcss/lib/root.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/root.d.ts" + ] + }, + "bundler": { + "name": "./lib/root", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/postcss/lib/root.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/root' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/root' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/root' with target './lib/root.js'.", + "File name '/node_modules/postcss/lib/root.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/root.ts' does not exist.", + "File '/node_modules/postcss/lib/root.tsx' does not exist.", + "File '/node_modules/postcss/lib/root.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/root' was successfully resolved to '/node_modules/postcss/lib/root.d.ts' with Package ID 'postcss/lib/root.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/root.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/root' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/root' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/root' with target './lib/root.js'.", + "File name '/node_modules/postcss/lib/root.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/root.ts' does not exist.", + "File '/node_modules/postcss/lib/root.tsx' does not exist.", + "Export specifier './lib/root' does not exist in package.json scope at path '/node_modules/postcss'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/root' with target './lib/root.js'.", + "File name '/node_modules/postcss/lib/root.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/root.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/root' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/root.ts' does not exist.", + "File '/node_modules/postcss/lib/root.tsx' does not exist.", + "'package.json' has 'main' field './lib/postcss.js' that references '/node_modules/postcss/lib/root/lib/postcss.js'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/root/lib/postcss.js', target file types: TypeScript.", + "File name '/node_modules/postcss/lib/root/lib/postcss.js' has a '.js' extension - stripping it.", + "======== Module name 'postcss/lib/root' was successfully resolved to '/node_modules/postcss/lib/root.js' with Package ID 'postcss/lib/root.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/root.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + }, + "./lib/rule": { + "subpath": "./lib/rule", + "resolutions": { + "node10": { + "name": "./lib/rule", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/postcss/lib/rule.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/rule' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'postcss/lib/rule' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/rule.ts' does not exist.", + "File '/node_modules/postcss/lib/rule.tsx' does not exist.", + "File '/node_modules/postcss/lib/rule.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/rule' was successfully resolved to '/node_modules/postcss/lib/rule.d.ts' with Package ID 'postcss/lib/rule.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/rule.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/rule' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'postcss/lib/rule' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/rule.ts' does not exist.", + "File '/node_modules/postcss/lib/rule.tsx' does not exist.", + "'package.json' has 'main' field './lib/postcss.js' that references '/node_modules/postcss/lib/rule/lib/postcss.js'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/rule/lib/postcss.js', target file types: TypeScript.", + "File name '/node_modules/postcss/lib/rule/lib/postcss.js' has a '.js' extension - stripping it.", + "Loading module 'postcss/lib/rule' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/rule.js' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/rule' was successfully resolved to '/node_modules/postcss/lib/rule.js' with Package ID 'postcss/lib/rule.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/rule.d.ts" + ] + }, + "node16-cjs": { + "name": "./lib/rule", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/postcss/lib/rule.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/rule' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/rule' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/rule' with target './lib/rule.js'.", + "File name '/node_modules/postcss/lib/rule.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/rule.ts' does not exist.", + "File '/node_modules/postcss/lib/rule.tsx' does not exist.", + "File '/node_modules/postcss/lib/rule.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/rule' was successfully resolved to '/node_modules/postcss/lib/rule.d.ts' with Package ID 'postcss/lib/rule.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/rule.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/rule' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/rule' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/rule' with target './lib/rule.js'.", + "File name '/node_modules/postcss/lib/rule.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/rule.ts' does not exist.", + "File '/node_modules/postcss/lib/rule.tsx' does not exist.", + "Export specifier './lib/rule' does not exist in package.json scope at path '/node_modules/postcss'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/rule' with target './lib/rule.js'.", + "File name '/node_modules/postcss/lib/rule.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/rule.js' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/rule' was successfully resolved to '/node_modules/postcss/lib/rule.js' with Package ID 'postcss/lib/rule.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/rule.d.ts" + ] + }, + "node16-esm": { + "name": "./lib/rule", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/postcss/lib/rule.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/rule' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/rule' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/rule' with target './lib/rule.js'.", + "File name '/node_modules/postcss/lib/rule.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/rule.ts' does not exist.", + "File '/node_modules/postcss/lib/rule.tsx' does not exist.", + "File '/node_modules/postcss/lib/rule.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/rule' was successfully resolved to '/node_modules/postcss/lib/rule.d.ts' with Package ID 'postcss/lib/rule.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/rule.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/rule' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/rule' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/rule' with target './lib/rule.js'.", + "File name '/node_modules/postcss/lib/rule.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/rule.ts' does not exist.", + "File '/node_modules/postcss/lib/rule.tsx' does not exist.", + "Export specifier './lib/rule' does not exist in package.json scope at path '/node_modules/postcss'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/rule' with target './lib/rule.js'.", + "File name '/node_modules/postcss/lib/rule.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/rule.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/rule' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field './lib/postcss.js' that references '/node_modules/postcss/lib/rule/lib/postcss.js'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/rule/lib/postcss.js', target file types: TypeScript.", + "File name '/node_modules/postcss/lib/rule/lib/postcss.js' has a '.js' extension - stripping it.", + "======== Module name 'postcss/lib/rule' was successfully resolved to '/node_modules/postcss/lib/rule.js' with Package ID 'postcss/lib/rule.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/rule.d.ts" + ] + }, + "bundler": { + "name": "./lib/rule", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/postcss/lib/rule.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/rule' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/rule' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/rule' with target './lib/rule.js'.", + "File name '/node_modules/postcss/lib/rule.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/rule.ts' does not exist.", + "File '/node_modules/postcss/lib/rule.tsx' does not exist.", + "File '/node_modules/postcss/lib/rule.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/rule' was successfully resolved to '/node_modules/postcss/lib/rule.d.ts' with Package ID 'postcss/lib/rule.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/rule.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/rule' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/rule' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/rule' with target './lib/rule.js'.", + "File name '/node_modules/postcss/lib/rule.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/rule.ts' does not exist.", + "File '/node_modules/postcss/lib/rule.tsx' does not exist.", + "Export specifier './lib/rule' does not exist in package.json scope at path '/node_modules/postcss'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/rule' with target './lib/rule.js'.", + "File name '/node_modules/postcss/lib/rule.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/rule.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/rule' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/rule.ts' does not exist.", + "File '/node_modules/postcss/lib/rule.tsx' does not exist.", + "'package.json' has 'main' field './lib/postcss.js' that references '/node_modules/postcss/lib/rule/lib/postcss.js'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/rule/lib/postcss.js', target file types: TypeScript.", + "File name '/node_modules/postcss/lib/rule/lib/postcss.js' has a '.js' extension - stripping it.", + "======== Module name 'postcss/lib/rule' was successfully resolved to '/node_modules/postcss/lib/rule.js' with Package ID 'postcss/lib/rule.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/rule.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + }, + "./lib/stringifier": { + "subpath": "./lib/stringifier", + "resolutions": { + "node10": { + "name": "./lib/stringifier", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/postcss/lib/stringifier.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/stringifier' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'postcss/lib/stringifier' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/stringifier.ts' does not exist.", + "File '/node_modules/postcss/lib/stringifier.tsx' does not exist.", + "File '/node_modules/postcss/lib/stringifier.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/stringifier' was successfully resolved to '/node_modules/postcss/lib/stringifier.d.ts' with Package ID 'postcss/lib/stringifier.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/stringifier.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/stringifier' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'postcss/lib/stringifier' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/stringifier.ts' does not exist.", + "File '/node_modules/postcss/lib/stringifier.tsx' does not exist.", + "'package.json' has 'main' field './lib/postcss.js' that references '/node_modules/postcss/lib/stringifier/lib/postcss.js'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/stringifier/lib/postcss.js', target file types: TypeScript.", + "File name '/node_modules/postcss/lib/stringifier/lib/postcss.js' has a '.js' extension - stripping it.", + "Loading module 'postcss/lib/stringifier' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/stringifier.js' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/stringifier' was successfully resolved to '/node_modules/postcss/lib/stringifier.js' with Package ID 'postcss/lib/stringifier.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/stringifier.d.ts" + ] + }, + "node16-cjs": { + "name": "./lib/stringifier", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/postcss/lib/stringifier.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/stringifier' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/stringifier' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/stringifier' with target './lib/stringifier.js'.", + "File name '/node_modules/postcss/lib/stringifier.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/stringifier.ts' does not exist.", + "File '/node_modules/postcss/lib/stringifier.tsx' does not exist.", + "File '/node_modules/postcss/lib/stringifier.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/stringifier' was successfully resolved to '/node_modules/postcss/lib/stringifier.d.ts' with Package ID 'postcss/lib/stringifier.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/stringifier.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/stringifier' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/stringifier' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/stringifier' with target './lib/stringifier.js'.", + "File name '/node_modules/postcss/lib/stringifier.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/stringifier.ts' does not exist.", + "File '/node_modules/postcss/lib/stringifier.tsx' does not exist.", + "Export specifier './lib/stringifier' does not exist in package.json scope at path '/node_modules/postcss'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/stringifier' with target './lib/stringifier.js'.", + "File name '/node_modules/postcss/lib/stringifier.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/stringifier.js' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/stringifier' was successfully resolved to '/node_modules/postcss/lib/stringifier.js' with Package ID 'postcss/lib/stringifier.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/stringifier.d.ts" + ] + }, + "node16-esm": { + "name": "./lib/stringifier", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/postcss/lib/stringifier.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/stringifier' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/stringifier' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/stringifier' with target './lib/stringifier.js'.", + "File name '/node_modules/postcss/lib/stringifier.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/stringifier.ts' does not exist.", + "File '/node_modules/postcss/lib/stringifier.tsx' does not exist.", + "File '/node_modules/postcss/lib/stringifier.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/stringifier' was successfully resolved to '/node_modules/postcss/lib/stringifier.d.ts' with Package ID 'postcss/lib/stringifier.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/stringifier.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/stringifier' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/stringifier' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/stringifier' with target './lib/stringifier.js'.", + "File name '/node_modules/postcss/lib/stringifier.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/stringifier.ts' does not exist.", + "File '/node_modules/postcss/lib/stringifier.tsx' does not exist.", + "Export specifier './lib/stringifier' does not exist in package.json scope at path '/node_modules/postcss'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/stringifier' with target './lib/stringifier.js'.", + "File name '/node_modules/postcss/lib/stringifier.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/stringifier.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/stringifier' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field './lib/postcss.js' that references '/node_modules/postcss/lib/stringifier/lib/postcss.js'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/stringifier/lib/postcss.js', target file types: TypeScript.", + "File name '/node_modules/postcss/lib/stringifier/lib/postcss.js' has a '.js' extension - stripping it.", + "======== Module name 'postcss/lib/stringifier' was successfully resolved to '/node_modules/postcss/lib/stringifier.js' with Package ID 'postcss/lib/stringifier.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/stringifier.d.ts" + ] + }, + "bundler": { + "name": "./lib/stringifier", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/postcss/lib/stringifier.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/stringifier' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/stringifier' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/stringifier' with target './lib/stringifier.js'.", + "File name '/node_modules/postcss/lib/stringifier.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/stringifier.ts' does not exist.", + "File '/node_modules/postcss/lib/stringifier.tsx' does not exist.", + "File '/node_modules/postcss/lib/stringifier.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/stringifier' was successfully resolved to '/node_modules/postcss/lib/stringifier.d.ts' with Package ID 'postcss/lib/stringifier.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/stringifier.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/stringifier' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/stringifier' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/stringifier' with target './lib/stringifier.js'.", + "File name '/node_modules/postcss/lib/stringifier.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/stringifier.ts' does not exist.", + "File '/node_modules/postcss/lib/stringifier.tsx' does not exist.", + "Export specifier './lib/stringifier' does not exist in package.json scope at path '/node_modules/postcss'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/stringifier' with target './lib/stringifier.js'.", + "File name '/node_modules/postcss/lib/stringifier.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/stringifier.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/stringifier' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/stringifier.ts' does not exist.", + "File '/node_modules/postcss/lib/stringifier.tsx' does not exist.", + "'package.json' has 'main' field './lib/postcss.js' that references '/node_modules/postcss/lib/stringifier/lib/postcss.js'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/stringifier/lib/postcss.js', target file types: TypeScript.", + "File name '/node_modules/postcss/lib/stringifier/lib/postcss.js' has a '.js' extension - stripping it.", + "======== Module name 'postcss/lib/stringifier' was successfully resolved to '/node_modules/postcss/lib/stringifier.js' with Package ID 'postcss/lib/stringifier.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/stringifier.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + }, + "./lib/stringify": { + "subpath": "./lib/stringify", + "resolutions": { + "node10": { + "name": "./lib/stringify", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/postcss/lib/stringify.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/stringify' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'postcss/lib/stringify' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/stringify.ts' does not exist.", + "File '/node_modules/postcss/lib/stringify.tsx' does not exist.", + "File '/node_modules/postcss/lib/stringify.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/stringify' was successfully resolved to '/node_modules/postcss/lib/stringify.d.ts' with Package ID 'postcss/lib/stringify.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/stringify.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/stringify' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'postcss/lib/stringify' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/stringify.ts' does not exist.", + "File '/node_modules/postcss/lib/stringify.tsx' does not exist.", + "'package.json' has 'main' field './lib/postcss.js' that references '/node_modules/postcss/lib/stringify/lib/postcss.js'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/stringify/lib/postcss.js', target file types: TypeScript.", + "File name '/node_modules/postcss/lib/stringify/lib/postcss.js' has a '.js' extension - stripping it.", + "Loading module 'postcss/lib/stringify' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/stringify.js' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/stringify' was successfully resolved to '/node_modules/postcss/lib/stringify.js' with Package ID 'postcss/lib/stringify.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/stringify.d.ts" + ] + }, + "node16-cjs": { + "name": "./lib/stringify", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/postcss/lib/stringify.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/stringify' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/stringify' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/stringify' with target './lib/stringify.js'.", + "File name '/node_modules/postcss/lib/stringify.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/stringify.ts' does not exist.", + "File '/node_modules/postcss/lib/stringify.tsx' does not exist.", + "File '/node_modules/postcss/lib/stringify.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/stringify' was successfully resolved to '/node_modules/postcss/lib/stringify.d.ts' with Package ID 'postcss/lib/stringify.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/stringify.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/stringify' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/stringify' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/stringify' with target './lib/stringify.js'.", + "File name '/node_modules/postcss/lib/stringify.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/stringify.ts' does not exist.", + "File '/node_modules/postcss/lib/stringify.tsx' does not exist.", + "Export specifier './lib/stringify' does not exist in package.json scope at path '/node_modules/postcss'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/stringify' with target './lib/stringify.js'.", + "File name '/node_modules/postcss/lib/stringify.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/stringify.js' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/stringify' was successfully resolved to '/node_modules/postcss/lib/stringify.js' with Package ID 'postcss/lib/stringify.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/stringify.d.ts" + ] + }, + "node16-esm": { + "name": "./lib/stringify", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/postcss/lib/stringify.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/stringify' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/stringify' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/stringify' with target './lib/stringify.js'.", + "File name '/node_modules/postcss/lib/stringify.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/stringify.ts' does not exist.", + "File '/node_modules/postcss/lib/stringify.tsx' does not exist.", + "File '/node_modules/postcss/lib/stringify.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/stringify' was successfully resolved to '/node_modules/postcss/lib/stringify.d.ts' with Package ID 'postcss/lib/stringify.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/stringify.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/stringify' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/stringify' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/stringify' with target './lib/stringify.js'.", + "File name '/node_modules/postcss/lib/stringify.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/stringify.ts' does not exist.", + "File '/node_modules/postcss/lib/stringify.tsx' does not exist.", + "Export specifier './lib/stringify' does not exist in package.json scope at path '/node_modules/postcss'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/stringify' with target './lib/stringify.js'.", + "File name '/node_modules/postcss/lib/stringify.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/stringify.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/stringify' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field './lib/postcss.js' that references '/node_modules/postcss/lib/stringify/lib/postcss.js'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/stringify/lib/postcss.js', target file types: TypeScript.", + "File name '/node_modules/postcss/lib/stringify/lib/postcss.js' has a '.js' extension - stripping it.", + "======== Module name 'postcss/lib/stringify' was successfully resolved to '/node_modules/postcss/lib/stringify.js' with Package ID 'postcss/lib/stringify.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/stringify.d.ts" + ] + }, + "bundler": { + "name": "./lib/stringify", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/postcss/lib/stringify.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/stringify' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/stringify' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/stringify' with target './lib/stringify.js'.", + "File name '/node_modules/postcss/lib/stringify.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/stringify.ts' does not exist.", + "File '/node_modules/postcss/lib/stringify.tsx' does not exist.", + "File '/node_modules/postcss/lib/stringify.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/stringify' was successfully resolved to '/node_modules/postcss/lib/stringify.d.ts' with Package ID 'postcss/lib/stringify.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/stringify.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/stringify' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/stringify' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/stringify' with target './lib/stringify.js'.", + "File name '/node_modules/postcss/lib/stringify.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/stringify.ts' does not exist.", + "File '/node_modules/postcss/lib/stringify.tsx' does not exist.", + "Export specifier './lib/stringify' does not exist in package.json scope at path '/node_modules/postcss'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/stringify' with target './lib/stringify.js'.", + "File name '/node_modules/postcss/lib/stringify.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/stringify.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/stringify' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/stringify.ts' does not exist.", + "File '/node_modules/postcss/lib/stringify.tsx' does not exist.", + "'package.json' has 'main' field './lib/postcss.js' that references '/node_modules/postcss/lib/stringify/lib/postcss.js'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/stringify/lib/postcss.js', target file types: TypeScript.", + "File name '/node_modules/postcss/lib/stringify/lib/postcss.js' has a '.js' extension - stripping it.", + "======== Module name 'postcss/lib/stringify' was successfully resolved to '/node_modules/postcss/lib/stringify.js' with Package ID 'postcss/lib/stringify.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/stringify.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + }, + "./lib/symbols": { + "subpath": "./lib/symbols", + "resolutions": { + "node10": { + "name": "./lib/symbols", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/postcss/lib/symbols.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/symbols' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'postcss/lib/symbols' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/symbols.ts' does not exist.", + "File '/node_modules/postcss/lib/symbols.tsx' does not exist.", + "File '/node_modules/postcss/lib/symbols.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field './lib/postcss.d.ts' that references '/node_modules/postcss/lib/symbols/lib/postcss.d.ts'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/symbols/lib/postcss.d.ts', target file types: TypeScript, Declaration.", + "File name '/node_modules/postcss/lib/symbols/lib/postcss.d.ts' has a '.d.ts' extension - stripping it.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "Loading module 'postcss/lib/symbols' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/symbols.js' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/symbols' was successfully resolved to '/node_modules/postcss/lib/symbols.js' with Package ID 'postcss/lib/symbols.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts" + ] + }, + "node16-cjs": { + "name": "./lib/symbols", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/postcss/lib/symbols.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/symbols' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/symbols' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/symbols' with target './lib/symbols.js'.", + "File name '/node_modules/postcss/lib/symbols.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/symbols.ts' does not exist.", + "File '/node_modules/postcss/lib/symbols.tsx' does not exist.", + "File '/node_modules/postcss/lib/symbols.d.ts' does not exist.", + "Export specifier './lib/symbols' does not exist in package.json scope at path '/node_modules/postcss'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/symbols' with target './lib/symbols.js'.", + "File name '/node_modules/postcss/lib/symbols.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/symbols.js' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/symbols' was successfully resolved to '/node_modules/postcss/lib/symbols.js' with Package ID 'postcss/lib/symbols.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts" + ] + }, + "node16-esm": { + "name": "./lib/symbols", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/postcss/lib/symbols.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/symbols' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/symbols' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/symbols' with target './lib/symbols.js'.", + "File name '/node_modules/postcss/lib/symbols.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/symbols.ts' does not exist.", + "File '/node_modules/postcss/lib/symbols.tsx' does not exist.", + "File '/node_modules/postcss/lib/symbols.d.ts' does not exist.", + "Export specifier './lib/symbols' does not exist in package.json scope at path '/node_modules/postcss'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/symbols' with target './lib/symbols.js'.", + "File name '/node_modules/postcss/lib/symbols.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/symbols.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/symbols' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field './lib/postcss.d.ts' that references '/node_modules/postcss/lib/symbols/lib/postcss.d.ts'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/symbols/lib/postcss.d.ts', target file types: TypeScript, Declaration.", + "File name '/node_modules/postcss/lib/symbols/lib/postcss.d.ts' has a '.d.ts' extension - stripping it.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "======== Module name 'postcss/lib/symbols' was successfully resolved to '/node_modules/postcss/lib/symbols.js' with Package ID 'postcss/lib/symbols.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts" + ] + }, + "bundler": { + "name": "./lib/symbols", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/postcss/lib/symbols.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/symbols' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/symbols' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/symbols' with target './lib/symbols.js'.", + "File name '/node_modules/postcss/lib/symbols.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/symbols.ts' does not exist.", + "File '/node_modules/postcss/lib/symbols.tsx' does not exist.", + "File '/node_modules/postcss/lib/symbols.d.ts' does not exist.", + "Export specifier './lib/symbols' does not exist in package.json scope at path '/node_modules/postcss'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/symbols' with target './lib/symbols.js'.", + "File name '/node_modules/postcss/lib/symbols.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/symbols.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/symbols' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/symbols.ts' does not exist.", + "File '/node_modules/postcss/lib/symbols.tsx' does not exist.", + "File '/node_modules/postcss/lib/symbols.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field './lib/postcss.d.ts' that references '/node_modules/postcss/lib/symbols/lib/postcss.d.ts'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/symbols/lib/postcss.d.ts', target file types: TypeScript, Declaration.", + "File name '/node_modules/postcss/lib/symbols/lib/postcss.d.ts' has a '.d.ts' extension - stripping it.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "======== Module name 'postcss/lib/symbols' was successfully resolved to '/node_modules/postcss/lib/symbols.js' with Package ID 'postcss/lib/symbols.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts" + ] + } + }, + "hasTypes": false, + "isWildcard": false + }, + "./lib/terminal-highlight": { + "subpath": "./lib/terminal-highlight", + "resolutions": { + "node10": { + "name": "./lib/terminal-highlight", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/postcss/lib/terminal-highlight.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/terminal-highlight' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'postcss/lib/terminal-highlight' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/terminal-highlight.ts' does not exist.", + "File '/node_modules/postcss/lib/terminal-highlight.tsx' does not exist.", + "File '/node_modules/postcss/lib/terminal-highlight.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field './lib/postcss.d.ts' that references '/node_modules/postcss/lib/terminal-highlight/lib/postcss.d.ts'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/terminal-highlight/lib/postcss.d.ts', target file types: TypeScript, Declaration.", + "File name '/node_modules/postcss/lib/terminal-highlight/lib/postcss.d.ts' has a '.d.ts' extension - stripping it.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "Loading module 'postcss/lib/terminal-highlight' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/terminal-highlight.js' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/terminal-highlight' was successfully resolved to '/node_modules/postcss/lib/terminal-highlight.js' with Package ID 'postcss/lib/terminal-highlight.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts" + ] + }, + "node16-cjs": { + "name": "./lib/terminal-highlight", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/postcss/lib/terminal-highlight.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/terminal-highlight' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/terminal-highlight' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/terminal-highlight' with target './lib/terminal-highlight.js'.", + "File name '/node_modules/postcss/lib/terminal-highlight.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/terminal-highlight.ts' does not exist.", + "File '/node_modules/postcss/lib/terminal-highlight.tsx' does not exist.", + "File '/node_modules/postcss/lib/terminal-highlight.d.ts' does not exist.", + "Export specifier './lib/terminal-highlight' does not exist in package.json scope at path '/node_modules/postcss'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/terminal-highlight' with target './lib/terminal-highlight.js'.", + "File name '/node_modules/postcss/lib/terminal-highlight.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/terminal-highlight.js' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/terminal-highlight' was successfully resolved to '/node_modules/postcss/lib/terminal-highlight.js' with Package ID 'postcss/lib/terminal-highlight.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts" + ] + }, + "node16-esm": { + "name": "./lib/terminal-highlight", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/postcss/lib/terminal-highlight.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/terminal-highlight' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/terminal-highlight' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/terminal-highlight' with target './lib/terminal-highlight.js'.", + "File name '/node_modules/postcss/lib/terminal-highlight.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/terminal-highlight.ts' does not exist.", + "File '/node_modules/postcss/lib/terminal-highlight.tsx' does not exist.", + "File '/node_modules/postcss/lib/terminal-highlight.d.ts' does not exist.", + "Export specifier './lib/terminal-highlight' does not exist in package.json scope at path '/node_modules/postcss'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/terminal-highlight' with target './lib/terminal-highlight.js'.", + "File name '/node_modules/postcss/lib/terminal-highlight.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/terminal-highlight.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/terminal-highlight' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field './lib/postcss.d.ts' that references '/node_modules/postcss/lib/terminal-highlight/lib/postcss.d.ts'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/terminal-highlight/lib/postcss.d.ts', target file types: TypeScript, Declaration.", + "File name '/node_modules/postcss/lib/terminal-highlight/lib/postcss.d.ts' has a '.d.ts' extension - stripping it.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "======== Module name 'postcss/lib/terminal-highlight' was successfully resolved to '/node_modules/postcss/lib/terminal-highlight.js' with Package ID 'postcss/lib/terminal-highlight.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts" + ] + }, + "bundler": { + "name": "./lib/terminal-highlight", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/postcss/lib/terminal-highlight.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/terminal-highlight' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/terminal-highlight' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/terminal-highlight' with target './lib/terminal-highlight.js'.", + "File name '/node_modules/postcss/lib/terminal-highlight.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/terminal-highlight.ts' does not exist.", + "File '/node_modules/postcss/lib/terminal-highlight.tsx' does not exist.", + "File '/node_modules/postcss/lib/terminal-highlight.d.ts' does not exist.", + "Export specifier './lib/terminal-highlight' does not exist in package.json scope at path '/node_modules/postcss'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/terminal-highlight' with target './lib/terminal-highlight.js'.", + "File name '/node_modules/postcss/lib/terminal-highlight.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/terminal-highlight.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/terminal-highlight' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/terminal-highlight.ts' does not exist.", + "File '/node_modules/postcss/lib/terminal-highlight.tsx' does not exist.", + "File '/node_modules/postcss/lib/terminal-highlight.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field './lib/postcss.d.ts' that references '/node_modules/postcss/lib/terminal-highlight/lib/postcss.d.ts'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/terminal-highlight/lib/postcss.d.ts', target file types: TypeScript, Declaration.", + "File name '/node_modules/postcss/lib/terminal-highlight/lib/postcss.d.ts' has a '.d.ts' extension - stripping it.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "======== Module name 'postcss/lib/terminal-highlight' was successfully resolved to '/node_modules/postcss/lib/terminal-highlight.js' with Package ID 'postcss/lib/terminal-highlight.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts" + ] + } + }, + "hasTypes": false, + "isWildcard": false + }, + "./lib/tokenize": { + "subpath": "./lib/tokenize", + "resolutions": { + "node10": { + "name": "./lib/tokenize", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/postcss/lib/tokenize.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/tokenize' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'postcss/lib/tokenize' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/tokenize.ts' does not exist.", + "File '/node_modules/postcss/lib/tokenize.tsx' does not exist.", + "File '/node_modules/postcss/lib/tokenize.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field './lib/postcss.d.ts' that references '/node_modules/postcss/lib/tokenize/lib/postcss.d.ts'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/tokenize/lib/postcss.d.ts', target file types: TypeScript, Declaration.", + "File name '/node_modules/postcss/lib/tokenize/lib/postcss.d.ts' has a '.d.ts' extension - stripping it.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "Loading module 'postcss/lib/tokenize' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/tokenize.js' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/tokenize' was successfully resolved to '/node_modules/postcss/lib/tokenize.js' with Package ID 'postcss/lib/tokenize.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts" + ] + }, + "node16-cjs": { + "name": "./lib/tokenize", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/postcss/lib/tokenize.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/tokenize' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/tokenize' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/tokenize' with target './lib/tokenize.js'.", + "File name '/node_modules/postcss/lib/tokenize.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/tokenize.ts' does not exist.", + "File '/node_modules/postcss/lib/tokenize.tsx' does not exist.", + "File '/node_modules/postcss/lib/tokenize.d.ts' does not exist.", + "Export specifier './lib/tokenize' does not exist in package.json scope at path '/node_modules/postcss'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/tokenize' with target './lib/tokenize.js'.", + "File name '/node_modules/postcss/lib/tokenize.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/tokenize.js' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/tokenize' was successfully resolved to '/node_modules/postcss/lib/tokenize.js' with Package ID 'postcss/lib/tokenize.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts" + ] + }, + "node16-esm": { + "name": "./lib/tokenize", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/postcss/lib/tokenize.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/tokenize' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/tokenize' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/tokenize' with target './lib/tokenize.js'.", + "File name '/node_modules/postcss/lib/tokenize.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/tokenize.ts' does not exist.", + "File '/node_modules/postcss/lib/tokenize.tsx' does not exist.", + "File '/node_modules/postcss/lib/tokenize.d.ts' does not exist.", + "Export specifier './lib/tokenize' does not exist in package.json scope at path '/node_modules/postcss'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/tokenize' with target './lib/tokenize.js'.", + "File name '/node_modules/postcss/lib/tokenize.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/tokenize.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/tokenize' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field './lib/postcss.d.ts' that references '/node_modules/postcss/lib/tokenize/lib/postcss.d.ts'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/tokenize/lib/postcss.d.ts', target file types: TypeScript, Declaration.", + "File name '/node_modules/postcss/lib/tokenize/lib/postcss.d.ts' has a '.d.ts' extension - stripping it.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "======== Module name 'postcss/lib/tokenize' was successfully resolved to '/node_modules/postcss/lib/tokenize.js' with Package ID 'postcss/lib/tokenize.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts" + ] + }, + "bundler": { + "name": "./lib/tokenize", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/postcss/lib/tokenize.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/tokenize' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/tokenize' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/tokenize' with target './lib/tokenize.js'.", + "File name '/node_modules/postcss/lib/tokenize.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/tokenize.ts' does not exist.", + "File '/node_modules/postcss/lib/tokenize.tsx' does not exist.", + "File '/node_modules/postcss/lib/tokenize.d.ts' does not exist.", + "Export specifier './lib/tokenize' does not exist in package.json scope at path '/node_modules/postcss'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/tokenize' with target './lib/tokenize.js'.", + "File name '/node_modules/postcss/lib/tokenize.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/tokenize.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/tokenize' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/tokenize.ts' does not exist.", + "File '/node_modules/postcss/lib/tokenize.tsx' does not exist.", + "File '/node_modules/postcss/lib/tokenize.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field './lib/postcss.d.ts' that references '/node_modules/postcss/lib/tokenize/lib/postcss.d.ts'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/tokenize/lib/postcss.d.ts', target file types: TypeScript, Declaration.", + "File name '/node_modules/postcss/lib/tokenize/lib/postcss.d.ts' has a '.d.ts' extension - stripping it.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "======== Module name 'postcss/lib/tokenize' was successfully resolved to '/node_modules/postcss/lib/tokenize.js' with Package ID 'postcss/lib/tokenize.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts" + ] + } + }, + "hasTypes": false, + "isWildcard": false + }, + "./lib/warn-once": { + "subpath": "./lib/warn-once", + "resolutions": { + "node10": { + "name": "./lib/warn-once", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/postcss/lib/warn-once.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/warn-once' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'postcss/lib/warn-once' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/warn-once.ts' does not exist.", + "File '/node_modules/postcss/lib/warn-once.tsx' does not exist.", + "File '/node_modules/postcss/lib/warn-once.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field './lib/postcss.d.ts' that references '/node_modules/postcss/lib/warn-once/lib/postcss.d.ts'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/warn-once/lib/postcss.d.ts', target file types: TypeScript, Declaration.", + "File name '/node_modules/postcss/lib/warn-once/lib/postcss.d.ts' has a '.d.ts' extension - stripping it.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "Loading module 'postcss/lib/warn-once' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/warn-once.js' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/warn-once' was successfully resolved to '/node_modules/postcss/lib/warn-once.js' with Package ID 'postcss/lib/warn-once.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts" + ] + }, + "node16-cjs": { + "name": "./lib/warn-once", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/postcss/lib/warn-once.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/warn-once' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/warn-once' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/warn-once' with target './lib/warn-once.js'.", + "File name '/node_modules/postcss/lib/warn-once.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/warn-once.ts' does not exist.", + "File '/node_modules/postcss/lib/warn-once.tsx' does not exist.", + "File '/node_modules/postcss/lib/warn-once.d.ts' does not exist.", + "Export specifier './lib/warn-once' does not exist in package.json scope at path '/node_modules/postcss'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/warn-once' with target './lib/warn-once.js'.", + "File name '/node_modules/postcss/lib/warn-once.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/warn-once.js' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/warn-once' was successfully resolved to '/node_modules/postcss/lib/warn-once.js' with Package ID 'postcss/lib/warn-once.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts" + ] + }, + "node16-esm": { + "name": "./lib/warn-once", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/postcss/lib/warn-once.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/warn-once' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/warn-once' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/warn-once' with target './lib/warn-once.js'.", + "File name '/node_modules/postcss/lib/warn-once.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/warn-once.ts' does not exist.", + "File '/node_modules/postcss/lib/warn-once.tsx' does not exist.", + "File '/node_modules/postcss/lib/warn-once.d.ts' does not exist.", + "Export specifier './lib/warn-once' does not exist in package.json scope at path '/node_modules/postcss'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/warn-once' with target './lib/warn-once.js'.", + "File name '/node_modules/postcss/lib/warn-once.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/warn-once.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/warn-once' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field './lib/postcss.d.ts' that references '/node_modules/postcss/lib/warn-once/lib/postcss.d.ts'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/warn-once/lib/postcss.d.ts', target file types: TypeScript, Declaration.", + "File name '/node_modules/postcss/lib/warn-once/lib/postcss.d.ts' has a '.d.ts' extension - stripping it.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "======== Module name 'postcss/lib/warn-once' was successfully resolved to '/node_modules/postcss/lib/warn-once.js' with Package ID 'postcss/lib/warn-once.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts" + ] + }, + "bundler": { + "name": "./lib/warn-once", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/postcss/lib/warn-once.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/warn-once' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/warn-once' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/warn-once' with target './lib/warn-once.js'.", + "File name '/node_modules/postcss/lib/warn-once.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/warn-once.ts' does not exist.", + "File '/node_modules/postcss/lib/warn-once.tsx' does not exist.", + "File '/node_modules/postcss/lib/warn-once.d.ts' does not exist.", + "Export specifier './lib/warn-once' does not exist in package.json scope at path '/node_modules/postcss'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/warn-once' with target './lib/warn-once.js'.", + "File name '/node_modules/postcss/lib/warn-once.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/warn-once.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/warn-once' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/warn-once.ts' does not exist.", + "File '/node_modules/postcss/lib/warn-once.tsx' does not exist.", + "File '/node_modules/postcss/lib/warn-once.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field './lib/postcss.d.ts' that references '/node_modules/postcss/lib/warn-once/lib/postcss.d.ts'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/warn-once/lib/postcss.d.ts', target file types: TypeScript, Declaration.", + "File name '/node_modules/postcss/lib/warn-once/lib/postcss.d.ts' has a '.d.ts' extension - stripping it.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "======== Module name 'postcss/lib/warn-once' was successfully resolved to '/node_modules/postcss/lib/warn-once.js' with Package ID 'postcss/lib/warn-once.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts" + ] + } + }, + "hasTypes": false, + "isWildcard": false + }, + "./lib/warning": { + "subpath": "./lib/warning", + "resolutions": { + "node10": { + "name": "./lib/warning", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/postcss/lib/warning.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/warning' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'postcss/lib/warning' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/warning.ts' does not exist.", + "File '/node_modules/postcss/lib/warning.tsx' does not exist.", + "File '/node_modules/postcss/lib/warning.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/warning' was successfully resolved to '/node_modules/postcss/lib/warning.d.ts' with Package ID 'postcss/lib/warning.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/warning.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/warning' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'postcss/lib/warning' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/warning.ts' does not exist.", + "File '/node_modules/postcss/lib/warning.tsx' does not exist.", + "'package.json' has 'main' field './lib/postcss.js' that references '/node_modules/postcss/lib/warning/lib/postcss.js'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/warning/lib/postcss.js', target file types: TypeScript.", + "File name '/node_modules/postcss/lib/warning/lib/postcss.js' has a '.js' extension - stripping it.", + "Loading module 'postcss/lib/warning' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/warning.js' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/warning' was successfully resolved to '/node_modules/postcss/lib/warning.js' with Package ID 'postcss/lib/warning.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts" + ] + }, + "node16-cjs": { + "name": "./lib/warning", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/postcss/lib/warning.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/warning' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/warning' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/warning' with target './lib/warning.js'.", + "File name '/node_modules/postcss/lib/warning.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/warning.ts' does not exist.", + "File '/node_modules/postcss/lib/warning.tsx' does not exist.", + "File '/node_modules/postcss/lib/warning.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/warning' was successfully resolved to '/node_modules/postcss/lib/warning.d.ts' with Package ID 'postcss/lib/warning.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/warning.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/warning' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/warning' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/warning' with target './lib/warning.js'.", + "File name '/node_modules/postcss/lib/warning.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/warning.ts' does not exist.", + "File '/node_modules/postcss/lib/warning.tsx' does not exist.", + "Export specifier './lib/warning' does not exist in package.json scope at path '/node_modules/postcss'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/warning' with target './lib/warning.js'.", + "File name '/node_modules/postcss/lib/warning.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/warning.js' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/warning' was successfully resolved to '/node_modules/postcss/lib/warning.js' with Package ID 'postcss/lib/warning.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts" + ] + }, + "node16-esm": { + "name": "./lib/warning", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/postcss/lib/warning.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/warning' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/warning' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/warning' with target './lib/warning.js'.", + "File name '/node_modules/postcss/lib/warning.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/warning.ts' does not exist.", + "File '/node_modules/postcss/lib/warning.tsx' does not exist.", + "File '/node_modules/postcss/lib/warning.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/warning' was successfully resolved to '/node_modules/postcss/lib/warning.d.ts' with Package ID 'postcss/lib/warning.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/warning.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/postcss/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/warning' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/warning' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/warning' with target './lib/warning.js'.", + "File name '/node_modules/postcss/lib/warning.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/warning.ts' does not exist.", + "File '/node_modules/postcss/lib/warning.tsx' does not exist.", + "Export specifier './lib/warning' does not exist in package.json scope at path '/node_modules/postcss'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/warning' with target './lib/warning.js'.", + "File name '/node_modules/postcss/lib/warning.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/warning.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/warning' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field './lib/postcss.js' that references '/node_modules/postcss/lib/warning/lib/postcss.js'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/warning/lib/postcss.js', target file types: TypeScript.", + "File name '/node_modules/postcss/lib/warning/lib/postcss.js' has a '.js' extension - stripping it.", + "======== Module name 'postcss/lib/warning' was successfully resolved to '/node_modules/postcss/lib/warning.js' with Package ID 'postcss/lib/warning.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts" + ] + }, + "bundler": { + "name": "./lib/warning", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/postcss/lib/warning.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'postcss/lib/warning' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/warning' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/warning' with target './lib/warning.js'.", + "File name '/node_modules/postcss/lib/warning.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/warning.ts' does not exist.", + "File '/node_modules/postcss/lib/warning.tsx' does not exist.", + "File '/node_modules/postcss/lib/warning.d.ts' exists - use it as a name resolution result.", + "======== Module name 'postcss/lib/warning' was successfully resolved to '/node_modules/postcss/lib/warning.d.ts' with Package ID 'postcss/lib/warning.d.ts@8.4.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/postcss/lib/warning.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/lib/warning' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/warning' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/warning' with target './lib/warning.js'.", + "File name '/node_modules/postcss/lib/warning.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/warning.ts' does not exist.", + "File '/node_modules/postcss/lib/warning.tsx' does not exist.", + "Export specifier './lib/warning' does not exist in package.json scope at path '/node_modules/postcss'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './lib/warning' with target './lib/warning.js'.", + "File name '/node_modules/postcss/lib/warning.js' has a '.js' extension - stripping it.", + "File '/node_modules/postcss/lib/warning.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/lib/warning' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File '/node_modules/postcss/lib/warning.ts' does not exist.", + "File '/node_modules/postcss/lib/warning.tsx' does not exist.", + "'package.json' has 'main' field './lib/postcss.js' that references '/node_modules/postcss/lib/warning/lib/postcss.js'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/lib/warning/lib/postcss.js', target file types: TypeScript.", + "File name '/node_modules/postcss/lib/warning/lib/postcss.js' has a '.js' extension - stripping it.", + "======== Module name 'postcss/lib/warning' was successfully resolved to '/node_modules/postcss/lib/warning.js' with Package ID 'postcss/lib/warning.js@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/lib/comment.d.ts", + "/node_modules/postcss/lib/at-rule.d.ts", + "/node_modules/postcss/lib/rule.d.ts", + "/node_modules/postcss/lib/container.d.ts", + "/node_modules/postcss/lib/declaration.d.ts", + "/node_modules/postcss/lib/document.d.ts", + "/node_modules/postcss/lib/root.d.ts", + "/node_modules/postcss/lib/lazy-result.d.ts", + "/node_modules/postcss/lib/no-work-result.d.ts", + "/node_modules/postcss/lib/processor.d.ts", + "/node_modules/postcss/lib/result.d.ts", + "/node_modules/postcss/lib/node.d.ts", + "/node_modules/postcss/lib/list.d.ts", + "/node_modules/postcss/lib/postcss.d.ts", + "/node_modules/postcss/lib/previous-map.d.ts", + "/node_modules/postcss/lib/input.d.ts", + "/node_modules/postcss/lib/css-syntax-error.d.ts", + "/node_modules/postcss/lib/warning.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + }, + "./package.json": { + "subpath": "./package.json", + "resolutions": { + "node10": { + "name": "./package.json", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/postcss/package.json", + "isJson": true, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/package.json' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'postcss/package.json' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File name '/node_modules/postcss/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/postcss/package.d.json.ts' does not exist.", + "File '/node_modules/postcss/package.json.ts' does not exist.", + "File '/node_modules/postcss/package.json.tsx' does not exist.", + "File '/node_modules/postcss/package.json.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field './lib/postcss.d.ts' that references '/node_modules/postcss/package.json/lib/postcss.d.ts'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/package.json/lib/postcss.d.ts', target file types: TypeScript, Declaration.", + "File name '/node_modules/postcss/package.json/lib/postcss.d.ts' has a '.d.ts' extension - stripping it.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "File name '/node_modules/@types/postcss/package.json' has a '.json' extension - stripping it.", + "Loading module 'postcss/package.json' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File name '/node_modules/postcss/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/postcss/package.json' exists - use it as a name resolution result.", + "======== Module name 'postcss/package.json' was successfully resolved to '/node_modules/postcss/package.json' with Package ID 'postcss/package.json@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/package.json" + ] + }, + "node16-cjs": { + "name": "./package.json", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/postcss/package.json", + "isJson": true, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/package.json' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/package.json' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './package.json' with target './package.json'.", + "File name '/node_modules/postcss/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/postcss/package.d.json.ts' does not exist.", + "Export specifier './package.json' does not exist in package.json scope at path '/node_modules/postcss'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "File name '/node_modules/@types/postcss/package.json' has a '.json' extension - stripping it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './package.json' with target './package.json'.", + "File name '/node_modules/postcss/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/postcss/package.json' exists - use it as a name resolution result.", + "======== Module name 'postcss/package.json' was successfully resolved to '/node_modules/postcss/package.json' with Package ID 'postcss/package.json@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/package.json" + ] + }, + "node16-esm": { + "name": "./package.json", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/postcss/package.json", + "isJson": true, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/package.json' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/package.json' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './package.json' with target './package.json'.", + "File name '/node_modules/postcss/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/postcss/package.d.json.ts' does not exist.", + "Export specifier './package.json' does not exist in package.json scope at path '/node_modules/postcss'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "File name '/node_modules/@types/postcss/package.json' has a '.json' extension - stripping it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './package.json' with target './package.json'.", + "File name '/node_modules/postcss/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/postcss/package.json' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/package.json' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File name '/node_modules/postcss/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/postcss/package.d.json.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field './lib/postcss.d.ts' that references '/node_modules/postcss/package.json/lib/postcss.d.ts'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/package.json/lib/postcss.d.ts', target file types: TypeScript, Declaration.", + "File name '/node_modules/postcss/package.json/lib/postcss.d.ts' has a '.d.ts' extension - stripping it.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "File name '/node_modules/@types/postcss/package.json' has a '.json' extension - stripping it.", + "======== Module name 'postcss/package.json' was successfully resolved to '/node_modules/postcss/package.json' with Package ID 'postcss/package.json@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/package.json" + ] + }, + "bundler": { + "name": "./package.json", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/postcss/package.json", + "isJson": true, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'postcss/package.json' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/package.json' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './package.json' with target './package.json'.", + "File name '/node_modules/postcss/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/postcss/package.d.json.ts' does not exist.", + "Export specifier './package.json' does not exist in package.json scope at path '/node_modules/postcss'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "File name '/node_modules/@types/postcss/package.json' has a '.json' extension - stripping it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './package.json' with target './package.json'.", + "File name '/node_modules/postcss/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/postcss/package.json' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'postcss/package.json' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/postcss/package.json' exists according to earlier cached lookups.", + "File name '/node_modules/postcss/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/postcss/package.d.json.ts' does not exist.", + "File '/node_modules/postcss/package.json.ts' does not exist.", + "File '/node_modules/postcss/package.json.tsx' does not exist.", + "File '/node_modules/postcss/package.json.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field './lib/postcss.d.ts' that references '/node_modules/postcss/package.json/lib/postcss.d.ts'.", + "Loading module as file / folder, candidate module location '/node_modules/postcss/package.json/lib/postcss.d.ts', target file types: TypeScript, Declaration.", + "File name '/node_modules/postcss/package.json/lib/postcss.d.ts' has a '.d.ts' extension - stripping it.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "File name '/node_modules/@types/postcss/package.json' has a '.json' extension - stripping it.", + "======== Module name 'postcss/package.json' was successfully resolved to '/node_modules/postcss/package.json' with Package ID 'postcss/package.json@8.4.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/postcss/package.json" + ] + } + }, + "hasTypes": false, + "isWildcard": false + } + }, + "problems": [ + { + "kind": "FalseCJS", + "entrypoint": ".", + "resolutionKind": "node16-esm" + }, + { + "kind": "FallbackCondition", + "entrypoint": ".", + "resolutionKind": "node16-esm" + }, + { + "kind": "FallbackCondition", + "entrypoint": ".", + "resolutionKind": "bundler" + }, + { + "kind": "FalseExportDefault", + "entrypoint": "./lib/at-rule", + "resolutionKind": "node16-esm" + }, + { + "kind": "FalseExportDefault", + "entrypoint": "./lib/comment", + "resolutionKind": "node16-esm" + }, + { + "kind": "FalseExportDefault", + "entrypoint": "./lib/container", + "resolutionKind": "node16-esm" + }, + { + "kind": "FalseExportDefault", + "entrypoint": "./lib/css-syntax-error", + "resolutionKind": "node16-esm" + }, + { + "kind": "FalseExportDefault", + "entrypoint": "./lib/declaration", + "resolutionKind": "node16-esm" + }, + { + "kind": "FalseExportDefault", + "entrypoint": "./lib/fromJSON", + "resolutionKind": "node16-esm" + }, + { + "kind": "FalseExportDefault", + "entrypoint": "./lib/input", + "resolutionKind": "node16-esm" + }, + { + "kind": "FalseExportDefault", + "entrypoint": "./lib/lazy-result", + "resolutionKind": "node16-esm" + }, + { + "kind": "FalseExportDefault", + "entrypoint": "./lib/no-work-result", + "resolutionKind": "node16-esm" + }, + { + "kind": "FalseExportDefault", + "entrypoint": "./lib/list", + "resolutionKind": "node16-esm" + }, + { + "kind": "UntypedResolution", + "entrypoint": "./lib/map-generator", + "resolutionKind": "node10" + }, + { + "kind": "UntypedResolution", + "entrypoint": "./lib/map-generator", + "resolutionKind": "node16-cjs" + }, + { + "kind": "UntypedResolution", + "entrypoint": "./lib/map-generator", + "resolutionKind": "node16-esm" + }, + { + "kind": "UntypedResolution", + "entrypoint": "./lib/map-generator", + "resolutionKind": "bundler" + }, + { + "kind": "FalseExportDefault", + "entrypoint": "./lib/node", + "resolutionKind": "node16-esm" + }, + { + "kind": "FalseExportDefault", + "entrypoint": "./lib/parse", + "resolutionKind": "node16-esm" + }, + { + "kind": "UntypedResolution", + "entrypoint": "./lib/parser", + "resolutionKind": "node10" + }, + { + "kind": "UntypedResolution", + "entrypoint": "./lib/parser", + "resolutionKind": "node16-cjs" + }, + { + "kind": "UntypedResolution", + "entrypoint": "./lib/parser", + "resolutionKind": "node16-esm" + }, + { + "kind": "UntypedResolution", + "entrypoint": "./lib/parser", + "resolutionKind": "bundler" + }, + { + "kind": "FalseExportDefault", + "entrypoint": "./lib/postcss", + "resolutionKind": "node16-esm" + }, + { + "kind": "FalseExportDefault", + "entrypoint": "./lib/previous-map", + "resolutionKind": "node16-esm" + }, + { + "kind": "FalseExportDefault", + "entrypoint": "./lib/processor", + "resolutionKind": "node16-esm" + }, + { + "kind": "FalseExportDefault", + "entrypoint": "./lib/result", + "resolutionKind": "node16-esm" + }, + { + "kind": "FalseExportDefault", + "entrypoint": "./lib/root", + "resolutionKind": "node16-esm" + }, + { + "kind": "FalseExportDefault", + "entrypoint": "./lib/rule", + "resolutionKind": "node16-esm" + }, + { + "kind": "FalseExportDefault", + "entrypoint": "./lib/stringifier", + "resolutionKind": "node16-esm" + }, + { + "kind": "FalseExportDefault", + "entrypoint": "./lib/stringify", + "resolutionKind": "node16-esm" + }, + { + "kind": "UntypedResolution", + "entrypoint": "./lib/symbols", + "resolutionKind": "node10" + }, + { + "kind": "UntypedResolution", + "entrypoint": "./lib/symbols", + "resolutionKind": "node16-cjs" + }, + { + "kind": "UntypedResolution", + "entrypoint": "./lib/symbols", + "resolutionKind": "node16-esm" + }, + { + "kind": "UntypedResolution", + "entrypoint": "./lib/symbols", + "resolutionKind": "bundler" + }, + { + "kind": "UntypedResolution", + "entrypoint": "./lib/terminal-highlight", + "resolutionKind": "node10" + }, + { + "kind": "UntypedResolution", + "entrypoint": "./lib/terminal-highlight", + "resolutionKind": "node16-cjs" + }, + { + "kind": "UntypedResolution", + "entrypoint": "./lib/terminal-highlight", + "resolutionKind": "node16-esm" + }, + { + "kind": "UntypedResolution", + "entrypoint": "./lib/terminal-highlight", + "resolutionKind": "bundler" + }, + { + "kind": "UntypedResolution", + "entrypoint": "./lib/tokenize", + "resolutionKind": "node10" + }, + { + "kind": "UntypedResolution", + "entrypoint": "./lib/tokenize", + "resolutionKind": "node16-cjs" + }, + { + "kind": "UntypedResolution", + "entrypoint": "./lib/tokenize", + "resolutionKind": "node16-esm" + }, + { + "kind": "UntypedResolution", + "entrypoint": "./lib/tokenize", + "resolutionKind": "bundler" + }, + { + "kind": "UntypedResolution", + "entrypoint": "./lib/warn-once", + "resolutionKind": "node10" + }, + { + "kind": "UntypedResolution", + "entrypoint": "./lib/warn-once", + "resolutionKind": "node16-cjs" + }, + { + "kind": "UntypedResolution", + "entrypoint": "./lib/warn-once", + "resolutionKind": "node16-esm" + }, + { + "kind": "UntypedResolution", + "entrypoint": "./lib/warn-once", + "resolutionKind": "bundler" + }, + { + "kind": "FalseExportDefault", + "entrypoint": "./lib/warning", + "resolutionKind": "node16-esm" + } + ] +} diff --git a/packages/core/test/snapshots/postcss@8.4.21.tgz.md b/packages/core/test/snapshots/postcss@8.4.21.tgz.md deleted file mode 100644 index 575b43b..0000000 --- a/packages/core/test/snapshots/postcss@8.4.21.tgz.md +++ /dev/null @@ -1,248 +0,0 @@ -# postcss@8.4.21.tgz - -## Problems - -```json -[ - { - "kind": "FalseCJS", - "entrypoint": ".", - "resolutionKind": "node16-esm" - }, - { - "kind": "FallbackCondition", - "entrypoint": ".", - "resolutionKind": "node16-esm" - }, - { - "kind": "FallbackCondition", - "entrypoint": ".", - "resolutionKind": "bundler" - }, - { - "kind": "FalseExportDefault", - "entrypoint": "./lib/at-rule", - "resolutionKind": "node16-esm" - }, - { - "kind": "FalseExportDefault", - "entrypoint": "./lib/comment", - "resolutionKind": "node16-esm" - }, - { - "kind": "FalseExportDefault", - "entrypoint": "./lib/container", - "resolutionKind": "node16-esm" - }, - { - "kind": "FalseExportDefault", - "entrypoint": "./lib/css-syntax-error", - "resolutionKind": "node16-esm" - }, - { - "kind": "FalseExportDefault", - "entrypoint": "./lib/declaration", - "resolutionKind": "node16-esm" - }, - { - "kind": "FalseExportDefault", - "entrypoint": "./lib/fromJSON", - "resolutionKind": "node16-esm" - }, - { - "kind": "FalseExportDefault", - "entrypoint": "./lib/input", - "resolutionKind": "node16-esm" - }, - { - "kind": "FalseExportDefault", - "entrypoint": "./lib/lazy-result", - "resolutionKind": "node16-esm" - }, - { - "kind": "FalseExportDefault", - "entrypoint": "./lib/no-work-result", - "resolutionKind": "node16-esm" - }, - { - "kind": "FalseExportDefault", - "entrypoint": "./lib/list", - "resolutionKind": "node16-esm" - }, - { - "kind": "UntypedResolution", - "entrypoint": "./lib/map-generator", - "resolutionKind": "node10" - }, - { - "kind": "UntypedResolution", - "entrypoint": "./lib/map-generator", - "resolutionKind": "node16-cjs" - }, - { - "kind": "UntypedResolution", - "entrypoint": "./lib/map-generator", - "resolutionKind": "node16-esm" - }, - { - "kind": "UntypedResolution", - "entrypoint": "./lib/map-generator", - "resolutionKind": "bundler" - }, - { - "kind": "FalseExportDefault", - "entrypoint": "./lib/node", - "resolutionKind": "node16-esm" - }, - { - "kind": "FalseExportDefault", - "entrypoint": "./lib/parse", - "resolutionKind": "node16-esm" - }, - { - "kind": "UntypedResolution", - "entrypoint": "./lib/parser", - "resolutionKind": "node10" - }, - { - "kind": "UntypedResolution", - "entrypoint": "./lib/parser", - "resolutionKind": "node16-cjs" - }, - { - "kind": "UntypedResolution", - "entrypoint": "./lib/parser", - "resolutionKind": "node16-esm" - }, - { - "kind": "UntypedResolution", - "entrypoint": "./lib/parser", - "resolutionKind": "bundler" - }, - { - "kind": "FalseExportDefault", - "entrypoint": "./lib/postcss", - "resolutionKind": "node16-esm" - }, - { - "kind": "FalseExportDefault", - "entrypoint": "./lib/previous-map", - "resolutionKind": "node16-esm" - }, - { - "kind": "FalseExportDefault", - "entrypoint": "./lib/processor", - "resolutionKind": "node16-esm" - }, - { - "kind": "FalseExportDefault", - "entrypoint": "./lib/result", - "resolutionKind": "node16-esm" - }, - { - "kind": "FalseExportDefault", - "entrypoint": "./lib/root", - "resolutionKind": "node16-esm" - }, - { - "kind": "FalseExportDefault", - "entrypoint": "./lib/rule", - "resolutionKind": "node16-esm" - }, - { - "kind": "FalseExportDefault", - "entrypoint": "./lib/stringifier", - "resolutionKind": "node16-esm" - }, - { - "kind": "FalseExportDefault", - "entrypoint": "./lib/stringify", - "resolutionKind": "node16-esm" - }, - { - "kind": "UntypedResolution", - "entrypoint": "./lib/symbols", - "resolutionKind": "node10" - }, - { - "kind": "UntypedResolution", - "entrypoint": "./lib/symbols", - "resolutionKind": "node16-cjs" - }, - { - "kind": "UntypedResolution", - "entrypoint": "./lib/symbols", - "resolutionKind": "node16-esm" - }, - { - "kind": "UntypedResolution", - "entrypoint": "./lib/symbols", - "resolutionKind": "bundler" - }, - { - "kind": "UntypedResolution", - "entrypoint": "./lib/terminal-highlight", - "resolutionKind": "node10" - }, - { - "kind": "UntypedResolution", - "entrypoint": "./lib/terminal-highlight", - "resolutionKind": "node16-cjs" - }, - { - "kind": "UntypedResolution", - "entrypoint": "./lib/terminal-highlight", - "resolutionKind": "node16-esm" - }, - { - "kind": "UntypedResolution", - "entrypoint": "./lib/terminal-highlight", - "resolutionKind": "bundler" - }, - { - "kind": "UntypedResolution", - "entrypoint": "./lib/tokenize", - "resolutionKind": "node10" - }, - { - "kind": "UntypedResolution", - "entrypoint": "./lib/tokenize", - "resolutionKind": "node16-cjs" - }, - { - "kind": "UntypedResolution", - "entrypoint": "./lib/tokenize", - "resolutionKind": "node16-esm" - }, - { - "kind": "UntypedResolution", - "entrypoint": "./lib/tokenize", - "resolutionKind": "bundler" - }, - { - "kind": "UntypedResolution", - "entrypoint": "./lib/warn-once", - "resolutionKind": "node10" - }, - { - "kind": "UntypedResolution", - "entrypoint": "./lib/warn-once", - "resolutionKind": "node16-cjs" - }, - { - "kind": "UntypedResolution", - "entrypoint": "./lib/warn-once", - "resolutionKind": "node16-esm" - }, - { - "kind": "UntypedResolution", - "entrypoint": "./lib/warn-once", - "resolutionKind": "bundler" - }, - { - "kind": "FalseExportDefault", - "entrypoint": "./lib/warning", - "resolutionKind": "node16-esm" - } -] -``` \ No newline at end of file diff --git a/packages/core/test/snapshots/react-chartjs-2@5.2.0.tgz.json b/packages/core/test/snapshots/react-chartjs-2@5.2.0.tgz.json new file mode 100644 index 0000000..9847a75 --- /dev/null +++ b/packages/core/test/snapshots/react-chartjs-2@5.2.0.tgz.json @@ -0,0 +1,351 @@ +{ + "packageName": "react-chartjs-2", + "packageVersion": "5.2.0", + "types": { + "kind": "included" + }, + "buildTools": {}, + "entrypoints": { + ".": { + "subpath": ".", + "resolutions": { + "node10": { + "name": ".", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/react-chartjs-2/dist/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'react-chartjs-2' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'react-chartjs-2' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/react-chartjs-2/package.json'.", + "File '/node_modules/react-chartjs-2.ts' does not exist.", + "File '/node_modules/react-chartjs-2.tsx' does not exist.", + "File '/node_modules/react-chartjs-2.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field './dist/index.d.ts' that references '/node_modules/react-chartjs-2/dist/index.d.ts'.", + "File '/node_modules/react-chartjs-2/dist/index.d.ts' exists - use it as a name resolution result.", + "======== Module name 'react-chartjs-2' was successfully resolved to '/node_modules/react-chartjs-2/dist/index.d.ts' with Package ID 'react-chartjs-2/dist/index.d.ts@5.2.0'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/react-chartjs-2/dist/index.cjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'react-chartjs-2' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'react-chartjs-2' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/react-chartjs-2/package.json'.", + "File '/node_modules/react-chartjs-2.ts' does not exist.", + "File '/node_modules/react-chartjs-2.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field './dist/index.cjs' that references '/node_modules/react-chartjs-2/dist/index.cjs'.", + "File '/node_modules/react-chartjs-2/dist/index.cjs' exists - use it as a name resolution result.", + "File '/node_modules/react-chartjs-2/dist/index.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/react-chartjs-2/dist/index.cjs', target file types: TypeScript.", + "File name '/node_modules/react-chartjs-2/dist/index.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/react-chartjs-2/dist/index.cts' does not exist.", + "File '/node_modules/react-chartjs-2/dist/index.cjs.ts' does not exist.", + "File '/node_modules/react-chartjs-2/dist/index.cjs.tsx' does not exist.", + "Directory '/node_modules/react-chartjs-2/dist/index.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/react-chartjs-2/index.ts' does not exist.", + "File '/node_modules/react-chartjs-2/index.tsx' does not exist.", + "Loading module 'react-chartjs-2' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/react-chartjs-2/package.json' exists according to earlier cached lookups.", + "File '/node_modules/react-chartjs-2.js' does not exist.", + "File '/node_modules/react-chartjs-2.jsx' does not exist.", + "'package.json' has 'main' field './dist/index.cjs' that references '/node_modules/react-chartjs-2/dist/index.cjs'.", + "File '/node_modules/react-chartjs-2/dist/index.cjs' exists - use it as a name resolution result.", + "======== Module name 'react-chartjs-2' was successfully resolved to '/node_modules/react-chartjs-2/dist/index.cjs' with Package ID 'react-chartjs-2/dist/index.cjs@5.2.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/react-chartjs-2/dist/types.d.ts", + "/node_modules/react-chartjs-2/dist/chart.d.ts", + "/node_modules/react-chartjs-2/dist/typedCharts.d.ts", + "/node_modules/react-chartjs-2/dist/utils.d.ts", + "/node_modules/react-chartjs-2/dist/index.d.ts" + ] + }, + "node16-cjs": { + "name": ".", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/react-chartjs-2/dist/index.d.ts", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/react-chartjs-2/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'react-chartjs-2' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist.", + "Loading module 'react-chartjs-2' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/react-chartjs-2/package.json'.", + "Entering conditional exports.", + "Matched 'exports' condition 'types'.", + "Using 'exports' subpath '.' with target './dist/index.d.ts'.", + "File '/node_modules/react-chartjs-2/dist/index.d.ts' exists - use it as a name resolution result.", + "Resolved under condition 'types'.", + "Exiting conditional exports.", + "======== Module name 'react-chartjs-2' was successfully resolved to '/node_modules/react-chartjs-2/dist/index.d.ts' with Package ID 'react-chartjs-2/dist/index.d.ts@5.2.0'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/react-chartjs-2/dist/index.cjs", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "extension", + "reasonFileName": "/node_modules/react-chartjs-2/dist/index.cjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'react-chartjs-2' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist.", + "Loading module 'react-chartjs-2' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/react-chartjs-2/package.json'.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Saw non-matching condition 'import'.", + "Matched 'exports' condition 'require'.", + "Using 'exports' subpath '.' with target './dist/index.cjs'.", + "File name '/node_modules/react-chartjs-2/dist/index.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/react-chartjs-2/dist/index.cts' does not exist.", + "Failed to resolve under condition 'require'.", + "Exiting conditional exports.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/react-chartjs-2/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Saw non-matching condition 'import'.", + "Matched 'exports' condition 'require'.", + "Using 'exports' subpath '.' with target './dist/index.cjs'.", + "File name '/node_modules/react-chartjs-2/dist/index.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/react-chartjs-2/dist/index.cjs' exists - use it as a name resolution result.", + "Resolved under condition 'require'.", + "Exiting conditional exports.", + "======== Module name 'react-chartjs-2' was successfully resolved to '/node_modules/react-chartjs-2/dist/index.cjs' with Package ID 'react-chartjs-2/dist/index.cjs@5.2.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/react-chartjs-2/dist/types.d.ts", + "/node_modules/react-chartjs-2/dist/chart.d.ts", + "/node_modules/react-chartjs-2/dist/typedCharts.d.ts", + "/node_modules/react-chartjs-2/dist/utils.d.ts", + "/node_modules/react-chartjs-2/dist/index.d.ts" + ] + }, + "node16-esm": { + "name": ".", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/react-chartjs-2/dist/index.d.ts", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/react-chartjs-2/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'react-chartjs-2' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'react-chartjs-2' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/react-chartjs-2/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Matched 'exports' condition 'types'.", + "Using 'exports' subpath '.' with target './dist/index.d.ts'.", + "File '/node_modules/react-chartjs-2/dist/index.d.ts' exists - use it as a name resolution result.", + "Resolved under condition 'types'.", + "Exiting conditional exports.", + "======== Module name 'react-chartjs-2' was successfully resolved to '/node_modules/react-chartjs-2/dist/index.d.ts' with Package ID 'react-chartjs-2/dist/index.d.ts@5.2.0'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/react-chartjs-2/dist/index.js", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "type", + "reasonFileName": "/node_modules/react-chartjs-2/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'react-chartjs-2' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'react-chartjs-2' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/react-chartjs-2/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Matched 'exports' condition 'import'.", + "Using 'exports' subpath '.' with target './dist/index.js'.", + "File name '/node_modules/react-chartjs-2/dist/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/react-chartjs-2/dist/index.ts' does not exist.", + "File '/node_modules/react-chartjs-2/dist/index.tsx' does not exist.", + "Failed to resolve under condition 'import'.", + "Saw non-matching condition 'require'.", + "Exiting conditional exports.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/react-chartjs-2/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Matched 'exports' condition 'import'.", + "Using 'exports' subpath '.' with target './dist/index.js'.", + "File name '/node_modules/react-chartjs-2/dist/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/react-chartjs-2/dist/index.js' exists - use it as a name resolution result.", + "Resolved under condition 'import'.", + "Exiting conditional exports.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'react-chartjs-2' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/react-chartjs-2/package.json' exists according to earlier cached lookups.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field './dist/index.cjs' that references '/node_modules/react-chartjs-2/dist/index.cjs'.", + "File '/node_modules/react-chartjs-2/dist/index.cjs' exists - use it as a name resolution result.", + "File '/node_modules/react-chartjs-2/dist/index.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/react-chartjs-2/dist/index.cjs', target file types: TypeScript.", + "File name '/node_modules/react-chartjs-2/dist/index.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/react-chartjs-2/dist/index.cts' does not exist.", + "Directory '/node_modules/react-chartjs-2/dist/index.cjs' does not exist, skipping all lookups in it.", + "======== Module name 'react-chartjs-2' was successfully resolved to '/node_modules/react-chartjs-2/dist/index.js' with Package ID 'react-chartjs-2/dist/index.js@5.2.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/react-chartjs-2/dist/types.d.ts", + "/node_modules/react-chartjs-2/dist/chart.d.ts", + "/node_modules/react-chartjs-2/dist/typedCharts.d.ts", + "/node_modules/react-chartjs-2/dist/utils.d.ts", + "/node_modules/react-chartjs-2/dist/index.d.ts" + ] + }, + "bundler": { + "name": ".", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/react-chartjs-2/dist/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'react-chartjs-2' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist.", + "Loading module 'react-chartjs-2' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/react-chartjs-2/package.json'.", + "Entering conditional exports.", + "Matched 'exports' condition 'types'.", + "Using 'exports' subpath '.' with target './dist/index.d.ts'.", + "File '/node_modules/react-chartjs-2/dist/index.d.ts' exists - use it as a name resolution result.", + "Resolved under condition 'types'.", + "Exiting conditional exports.", + "======== Module name 'react-chartjs-2' was successfully resolved to '/node_modules/react-chartjs-2/dist/index.d.ts' with Package ID 'react-chartjs-2/dist/index.d.ts@5.2.0'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/react-chartjs-2/dist/index.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'react-chartjs-2' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist.", + "Loading module 'react-chartjs-2' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/react-chartjs-2/package.json'.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Matched 'exports' condition 'import'.", + "Using 'exports' subpath '.' with target './dist/index.js'.", + "File name '/node_modules/react-chartjs-2/dist/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/react-chartjs-2/dist/index.ts' does not exist.", + "File '/node_modules/react-chartjs-2/dist/index.tsx' does not exist.", + "Failed to resolve under condition 'import'.", + "Saw non-matching condition 'require'.", + "Exiting conditional exports.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/react-chartjs-2/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Matched 'exports' condition 'import'.", + "Using 'exports' subpath '.' with target './dist/index.js'.", + "File name '/node_modules/react-chartjs-2/dist/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/react-chartjs-2/dist/index.js' exists - use it as a name resolution result.", + "Resolved under condition 'import'.", + "Exiting conditional exports.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'react-chartjs-2' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/react-chartjs-2/package.json' exists according to earlier cached lookups.", + "File '/node_modules/react-chartjs-2.ts' does not exist.", + "File '/node_modules/react-chartjs-2.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field './dist/index.cjs' that references '/node_modules/react-chartjs-2/dist/index.cjs'.", + "File '/node_modules/react-chartjs-2/dist/index.cjs' exists - use it as a name resolution result.", + "File '/node_modules/react-chartjs-2/dist/index.cjs' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/react-chartjs-2/dist/index.cjs', target file types: TypeScript.", + "File name '/node_modules/react-chartjs-2/dist/index.cjs' has a '.cjs' extension - stripping it.", + "File '/node_modules/react-chartjs-2/dist/index.cts' does not exist.", + "File '/node_modules/react-chartjs-2/dist/index.cjs.ts' does not exist.", + "File '/node_modules/react-chartjs-2/dist/index.cjs.tsx' does not exist.", + "Directory '/node_modules/react-chartjs-2/dist/index.cjs' does not exist, skipping all lookups in it.", + "File '/node_modules/react-chartjs-2/index.ts' does not exist.", + "File '/node_modules/react-chartjs-2/index.tsx' does not exist.", + "======== Module name 'react-chartjs-2' was successfully resolved to '/node_modules/react-chartjs-2/dist/index.js' with Package ID 'react-chartjs-2/dist/index.js@5.2.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/react-chartjs-2/dist/types.d.ts", + "/node_modules/react-chartjs-2/dist/chart.d.ts", + "/node_modules/react-chartjs-2/dist/typedCharts.d.ts", + "/node_modules/react-chartjs-2/dist/utils.d.ts", + "/node_modules/react-chartjs-2/dist/index.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + } + }, + "problems": [ + { + "kind": "FalseESM", + "entrypoint": ".", + "resolutionKind": "node16-cjs" + }, + { + "kind": "CJSResolvesToESM", + "entrypoint": ".", + "resolutionKind": "node16-cjs" + } + ] +} diff --git a/packages/core/test/snapshots/react-chartjs-2@5.2.0.tgz.md b/packages/core/test/snapshots/react-chartjs-2@5.2.0.tgz.md deleted file mode 100644 index b8933e4..0000000 --- a/packages/core/test/snapshots/react-chartjs-2@5.2.0.tgz.md +++ /dev/null @@ -1,18 +0,0 @@ -# react-chartjs-2@5.2.0.tgz - -## Problems - -```json -[ - { - "kind": "FalseESM", - "entrypoint": ".", - "resolutionKind": "node16-cjs" - }, - { - "kind": "CJSResolvesToESM", - "entrypoint": ".", - "resolutionKind": "node16-cjs" - } -] -``` \ No newline at end of file diff --git a/packages/core/test/snapshots/react@18.2.0.tgz.json b/packages/core/test/snapshots/react@18.2.0.tgz.json new file mode 100644 index 0000000..e772370 --- /dev/null +++ b/packages/core/test/snapshots/react@18.2.0.tgz.json @@ -0,0 +1,1552 @@ +{ + "packageName": "react", + "packageVersion": "18.2.0", + "types": { + "kind": "@types", + "packageName": "@types/react", + "packageVersion": "18.2.21", + "definitelyTypedUrl": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react" + }, + "buildTools": {}, + "entrypoints": { + ".": { + "subpath": ".", + "resolutions": { + "node10": { + "name": ".", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/@types/react/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'react' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'react' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/react/package.json'.", + "File '/node_modules/react.ts' does not exist.", + "File '/node_modules/react.tsx' does not exist.", + "File '/node_modules/react.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' does not have a 'types' field.", + "'package.json' has 'main' field 'index.js' that references '/node_modules/react/index.js'.", + "File '/node_modules/react/index.js' exists - use it as a name resolution result.", + "File '/node_modules/react/index.js' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/react/index.js', target file types: TypeScript, Declaration.", + "File name '/node_modules/react/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/react/index.ts' does not exist.", + "File '/node_modules/react/index.tsx' does not exist.", + "File '/node_modules/react/index.d.ts' does not exist.", + "File '/node_modules/react/index.js.ts' does not exist.", + "File '/node_modules/react/index.js.tsx' does not exist.", + "File '/node_modules/react/index.js.d.ts' does not exist.", + "Directory '/node_modules/react/index.js' does not exist, skipping all lookups in it.", + "File '/node_modules/react/index.ts' does not exist.", + "File '/node_modules/react/index.tsx' does not exist.", + "File '/node_modules/react/index.d.ts' does not exist.", + "Found 'package.json' at '/node_modules/@types/react/package.json'.", + "File '/node_modules/@types/react.d.ts' does not exist.", + "'package.json' has a 'typesVersions' field with version-specific path mappings.", + "'package.json' does not have a 'typesVersions' entry that matches version '5.2'.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@types/react/index.d.ts'.", + "File '/node_modules/@types/react/index.d.ts' exists - use it as a name resolution result.", + "======== Module name 'react' was successfully resolved to '/node_modules/@types/react/index.d.ts' with Package ID '@types/react/index.d.ts@18.2.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/react/index.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'react' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'react' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/react/package.json'.", + "File '/node_modules/react.ts' does not exist.", + "File '/node_modules/react.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'index.js' that references '/node_modules/react/index.js'.", + "File '/node_modules/react/index.js' exists - use it as a name resolution result.", + "File '/node_modules/react/index.js' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/react/index.js', target file types: TypeScript.", + "File name '/node_modules/react/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/react/index.ts' does not exist.", + "File '/node_modules/react/index.tsx' does not exist.", + "File '/node_modules/react/index.js.ts' does not exist.", + "File '/node_modules/react/index.js.tsx' does not exist.", + "Directory '/node_modules/react/index.js' does not exist, skipping all lookups in it.", + "File '/node_modules/react/index.ts' does not exist.", + "File '/node_modules/react/index.tsx' does not exist.", + "Loading module 'react' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/react/package.json' exists according to earlier cached lookups.", + "File '/node_modules/react.js' does not exist.", + "File '/node_modules/react.jsx' does not exist.", + "'package.json' has 'main' field 'index.js' that references '/node_modules/react/index.js'.", + "File '/node_modules/react/index.js' exists - use it as a name resolution result.", + "======== Module name 'react' was successfully resolved to '/node_modules/react/index.js' with Package ID 'react/index.js@18.2.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@types/react/global.d.ts", + "/node_modules/@types/react/index.d.ts" + ] + }, + "node16-cjs": { + "name": ".", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/@types/react/index.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/@types/react/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'react' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist.", + "Loading module 'react' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/react/package.json'.", + "Entering conditional exports.", + "Saw non-matching condition 'react-server'.", + "Matched 'exports' condition 'default'.", + "Using 'exports' subpath '.' with target './index.js'.", + "File name '/node_modules/react/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/react/index.ts' does not exist.", + "File '/node_modules/react/index.tsx' does not exist.", + "File '/node_modules/react/index.d.ts' does not exist.", + "Failed to resolve under condition 'default'.", + "Exiting conditional exports.", + "Found 'package.json' at '/node_modules/@types/react/package.json'.", + "Entering conditional exports.", + "Saw non-matching condition 'types@<=5.0'.", + "Matched 'exports' condition 'types'.", + "Entering conditional exports.", + "Matched 'exports' condition 'default'.", + "Using 'exports' subpath '.' with target './index.d.ts'.", + "File '/node_modules/@types/react/index.d.ts' exists - use it as a name resolution result.", + "Resolved under condition 'default'.", + "Exiting conditional exports.", + "Resolved under condition 'types'.", + "Exiting conditional exports.", + "======== Module name 'react' was successfully resolved to '/node_modules/@types/react/index.d.ts' with Package ID '@types/react/index.d.ts@18.2.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/react/index.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/react/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'react' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist.", + "Loading module 'react' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/react/package.json'.", + "Entering conditional exports.", + "Saw non-matching condition 'react-server'.", + "Matched 'exports' condition 'default'.", + "Using 'exports' subpath '.' with target './index.js'.", + "File name '/node_modules/react/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/react/index.ts' does not exist.", + "File '/node_modules/react/index.tsx' does not exist.", + "Failed to resolve under condition 'default'.", + "Exiting conditional exports.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/react/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'react-server'.", + "Matched 'exports' condition 'default'.", + "Using 'exports' subpath '.' with target './index.js'.", + "File name '/node_modules/react/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/react/index.js' exists - use it as a name resolution result.", + "Resolved under condition 'default'.", + "Exiting conditional exports.", + "======== Module name 'react' was successfully resolved to '/node_modules/react/index.js' with Package ID 'react/index.js@18.2.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@types/react/global.d.ts", + "/node_modules/@types/react/index.d.ts" + ] + }, + "node16-esm": { + "name": ".", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/@types/react/index.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/@types/react/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'react' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'react' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/react/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'react-server'.", + "Matched 'exports' condition 'default'.", + "Using 'exports' subpath '.' with target './index.js'.", + "File name '/node_modules/react/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/react/index.ts' does not exist.", + "File '/node_modules/react/index.tsx' does not exist.", + "File '/node_modules/react/index.d.ts' does not exist.", + "Failed to resolve under condition 'default'.", + "Exiting conditional exports.", + "File '/node_modules/@types/react/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types@<=5.0'.", + "Matched 'exports' condition 'types'.", + "Entering conditional exports.", + "Matched 'exports' condition 'default'.", + "Using 'exports' subpath '.' with target './index.d.ts'.", + "File '/node_modules/@types/react/index.d.ts' exists - use it as a name resolution result.", + "Resolved under condition 'default'.", + "Exiting conditional exports.", + "Resolved under condition 'types'.", + "Exiting conditional exports.", + "======== Module name 'react' was successfully resolved to '/node_modules/@types/react/index.d.ts' with Package ID '@types/react/index.d.ts@18.2.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/react/index.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/react/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'react' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'react' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/react/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'react-server'.", + "Matched 'exports' condition 'default'.", + "Using 'exports' subpath '.' with target './index.js'.", + "File name '/node_modules/react/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/react/index.ts' does not exist.", + "File '/node_modules/react/index.tsx' does not exist.", + "Failed to resolve under condition 'default'.", + "Exiting conditional exports.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/react/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'react-server'.", + "Matched 'exports' condition 'default'.", + "Using 'exports' subpath '.' with target './index.js'.", + "File name '/node_modules/react/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/react/index.js' exists - use it as a name resolution result.", + "Resolved under condition 'default'.", + "Exiting conditional exports.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'react' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/react/package.json' exists according to earlier cached lookups.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'index.js' that references '/node_modules/react/index.js'.", + "File '/node_modules/react/index.js' exists - use it as a name resolution result.", + "File '/node_modules/react/index.js' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/react/index.js', target file types: TypeScript.", + "File name '/node_modules/react/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/react/index.ts' does not exist.", + "File '/node_modules/react/index.tsx' does not exist.", + "File '/node_modules/react/index.js.ts' does not exist.", + "File '/node_modules/react/index.js.tsx' does not exist.", + "Directory '/node_modules/react/index.js' does not exist, skipping all lookups in it.", + "======== Module name 'react' was successfully resolved to '/node_modules/react/index.js' with Package ID 'react/index.js@18.2.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@types/react/global.d.ts", + "/node_modules/@types/react/index.d.ts" + ] + }, + "bundler": { + "name": ".", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/@types/react/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'react' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist.", + "Loading module 'react' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/react/package.json'.", + "Entering conditional exports.", + "Saw non-matching condition 'react-server'.", + "Matched 'exports' condition 'default'.", + "Using 'exports' subpath '.' with target './index.js'.", + "File name '/node_modules/react/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/react/index.ts' does not exist.", + "File '/node_modules/react/index.tsx' does not exist.", + "File '/node_modules/react/index.d.ts' does not exist.", + "Failed to resolve under condition 'default'.", + "Exiting conditional exports.", + "Found 'package.json' at '/node_modules/@types/react/package.json'.", + "Entering conditional exports.", + "Saw non-matching condition 'types@<=5.0'.", + "Matched 'exports' condition 'types'.", + "Entering conditional exports.", + "Matched 'exports' condition 'default'.", + "Using 'exports' subpath '.' with target './index.d.ts'.", + "File '/node_modules/@types/react/index.d.ts' exists - use it as a name resolution result.", + "Resolved under condition 'default'.", + "Exiting conditional exports.", + "Resolved under condition 'types'.", + "Exiting conditional exports.", + "======== Module name 'react' was successfully resolved to '/node_modules/@types/react/index.d.ts' with Package ID '@types/react/index.d.ts@18.2.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/react/index.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'react' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist.", + "Loading module 'react' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/react/package.json'.", + "Entering conditional exports.", + "Saw non-matching condition 'react-server'.", + "Matched 'exports' condition 'default'.", + "Using 'exports' subpath '.' with target './index.js'.", + "File name '/node_modules/react/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/react/index.ts' does not exist.", + "File '/node_modules/react/index.tsx' does not exist.", + "Failed to resolve under condition 'default'.", + "Exiting conditional exports.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/react/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'react-server'.", + "Matched 'exports' condition 'default'.", + "Using 'exports' subpath '.' with target './index.js'.", + "File name '/node_modules/react/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/react/index.js' exists - use it as a name resolution result.", + "Resolved under condition 'default'.", + "Exiting conditional exports.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'react' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/react/package.json' exists according to earlier cached lookups.", + "File '/node_modules/react.ts' does not exist.", + "File '/node_modules/react.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'index.js' that references '/node_modules/react/index.js'.", + "File '/node_modules/react/index.js' exists - use it as a name resolution result.", + "File '/node_modules/react/index.js' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/react/index.js', target file types: TypeScript.", + "File name '/node_modules/react/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/react/index.ts' does not exist.", + "File '/node_modules/react/index.tsx' does not exist.", + "File '/node_modules/react/index.js.ts' does not exist.", + "File '/node_modules/react/index.js.tsx' does not exist.", + "Directory '/node_modules/react/index.js' does not exist, skipping all lookups in it.", + "File '/node_modules/react/index.ts' does not exist.", + "File '/node_modules/react/index.tsx' does not exist.", + "======== Module name 'react' was successfully resolved to '/node_modules/react/index.js' with Package ID 'react/index.js@18.2.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@types/react/global.d.ts", + "/node_modules/@types/react/index.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + }, + "./package.json": { + "subpath": "./package.json", + "resolutions": { + "node10": { + "name": "./package.json", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/react/package.json", + "isJson": true, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'react/package.json' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'react/package.json' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/react/package.json' exists according to earlier cached lookups.", + "File name '/node_modules/react/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/react/package.d.json.ts' does not exist.", + "File '/node_modules/react/package.json.ts' does not exist.", + "File '/node_modules/react/package.json.tsx' does not exist.", + "File '/node_modules/react/package.json.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' does not have a 'types' field.", + "'package.json' has 'main' field 'index.js' that references '/node_modules/react/package.json/index.js'.", + "Loading module as file / folder, candidate module location '/node_modules/react/package.json/index.js', target file types: TypeScript, Declaration.", + "File name '/node_modules/react/package.json/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/@types/react/package.json' exists according to earlier cached lookups.", + "File name '/node_modules/@types/react/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/@types/react/package.d.json.ts' does not exist.", + "File '/node_modules/@types/react/package.json.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@types/react/package.json/index.d.ts'.", + "Loading module as file / folder, candidate module location '/node_modules/@types/react/package.json/index.d.ts', target file types: TypeScript, Declaration.", + "File name '/node_modules/@types/react/package.json/index.d.ts' has a '.d.ts' extension - stripping it.", + "Loading module 'react/package.json' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/react/package.json' exists according to earlier cached lookups.", + "File name '/node_modules/react/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/react/package.json' exists - use it as a name resolution result.", + "======== Module name 'react/package.json' was successfully resolved to '/node_modules/react/package.json' with Package ID 'react/package.json@18.2.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/react/package.json" + ] + }, + "node16-cjs": { + "name": "./package.json", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/react/package.json", + "isJson": true, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'react/package.json' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'react/package.json' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/react/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './package.json' with target './package.json'.", + "File name '/node_modules/react/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/react/package.d.json.ts' does not exist.", + "Export specifier './package.json' does not exist in package.json scope at path '/node_modules/react'.", + "File '/node_modules/@types/react/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './package.json' with target './package.json'.", + "File name '/node_modules/@types/react/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/@types/react/package.d.json.ts' does not exist.", + "Export specifier './package.json' does not exist in package.json scope at path '/node_modules/@types/react'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/react/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './package.json' with target './package.json'.", + "File name '/node_modules/react/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/react/package.json' exists - use it as a name resolution result.", + "======== Module name 'react/package.json' was successfully resolved to '/node_modules/react/package.json' with Package ID 'react/package.json@18.2.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/react/package.json" + ] + }, + "node16-esm": { + "name": "./package.json", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/react/package.json", + "isJson": true, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'react/package.json' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'react/package.json' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/react/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './package.json' with target './package.json'.", + "File name '/node_modules/react/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/react/package.d.json.ts' does not exist.", + "Export specifier './package.json' does not exist in package.json scope at path '/node_modules/react'.", + "File '/node_modules/@types/react/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './package.json' with target './package.json'.", + "File name '/node_modules/@types/react/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/@types/react/package.d.json.ts' does not exist.", + "Export specifier './package.json' does not exist in package.json scope at path '/node_modules/@types/react'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/react/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './package.json' with target './package.json'.", + "File name '/node_modules/react/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/react/package.json' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'react/package.json' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/react/package.json' exists according to earlier cached lookups.", + "'package.json' does not have a 'typesVersions' field.", + "File name '/node_modules/react/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/react/package.d.json.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' does not have a 'types' field.", + "'package.json' has 'main' field 'index.js' that references '/node_modules/react/package.json/index.js'.", + "Loading module as file / folder, candidate module location '/node_modules/react/package.json/index.js', target file types: TypeScript, Declaration.", + "File name '/node_modules/react/package.json/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/@types/react/package.json' exists according to earlier cached lookups.", + "'package.json' has a 'typesVersions' field with version-specific path mappings.", + "'package.json' does not have a 'typesVersions' entry that matches version '5.2'.", + "File name '/node_modules/@types/react/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/@types/react/package.d.json.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@types/react/package.json/index.d.ts'.", + "Loading module as file / folder, candidate module location '/node_modules/@types/react/package.json/index.d.ts', target file types: TypeScript, Declaration.", + "File name '/node_modules/@types/react/package.json/index.d.ts' has a '.d.ts' extension - stripping it.", + "======== Module name 'react/package.json' was successfully resolved to '/node_modules/react/package.json' with Package ID 'react/package.json@18.2.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/react/package.json" + ] + }, + "bundler": { + "name": "./package.json", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/react/package.json", + "isJson": true, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'react/package.json' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'react/package.json' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/react/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './package.json' with target './package.json'.", + "File name '/node_modules/react/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/react/package.d.json.ts' does not exist.", + "Export specifier './package.json' does not exist in package.json scope at path '/node_modules/react'.", + "File '/node_modules/@types/react/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './package.json' with target './package.json'.", + "File name '/node_modules/@types/react/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/@types/react/package.d.json.ts' does not exist.", + "Export specifier './package.json' does not exist in package.json scope at path '/node_modules/@types/react'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/react/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './package.json' with target './package.json'.", + "File name '/node_modules/react/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/react/package.json' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'react/package.json' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/react/package.json' exists according to earlier cached lookups.", + "'package.json' does not have a 'typesVersions' field.", + "File name '/node_modules/react/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/react/package.d.json.ts' does not exist.", + "File '/node_modules/react/package.json.ts' does not exist.", + "File '/node_modules/react/package.json.tsx' does not exist.", + "File '/node_modules/react/package.json.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' does not have a 'types' field.", + "'package.json' has 'main' field 'index.js' that references '/node_modules/react/package.json/index.js'.", + "Loading module as file / folder, candidate module location '/node_modules/react/package.json/index.js', target file types: TypeScript, Declaration.", + "File name '/node_modules/react/package.json/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/@types/react/package.json' exists according to earlier cached lookups.", + "'package.json' has a 'typesVersions' field with version-specific path mappings.", + "'package.json' does not have a 'typesVersions' entry that matches version '5.2'.", + "File name '/node_modules/@types/react/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/@types/react/package.d.json.ts' does not exist.", + "File '/node_modules/@types/react/package.json.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/@types/react/package.json/index.d.ts'.", + "Loading module as file / folder, candidate module location '/node_modules/@types/react/package.json/index.d.ts', target file types: TypeScript, Declaration.", + "File name '/node_modules/@types/react/package.json/index.d.ts' has a '.d.ts' extension - stripping it.", + "======== Module name 'react/package.json' was successfully resolved to '/node_modules/react/package.json' with Package ID 'react/package.json@18.2.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/react/package.json" + ] + } + }, + "hasTypes": false, + "isWildcard": false + }, + "./jsx-runtime": { + "subpath": "./jsx-runtime", + "resolutions": { + "node10": { + "name": "./jsx-runtime", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/@types/react/jsx-runtime.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'react/jsx-runtime' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'react/jsx-runtime' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/react/package.json' exists according to earlier cached lookups.", + "File '/node_modules/react/jsx-runtime.ts' does not exist.", + "File '/node_modules/react/jsx-runtime.tsx' does not exist.", + "File '/node_modules/react/jsx-runtime.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' does not have a 'types' field.", + "'package.json' has 'main' field 'index.js' that references '/node_modules/react/jsx-runtime/index.js'.", + "Loading module as file / folder, candidate module location '/node_modules/react/jsx-runtime/index.js', target file types: TypeScript, Declaration.", + "File name '/node_modules/react/jsx-runtime/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/@types/react/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@types/react/jsx-runtime.d.ts' exists - use it as a name resolution result.", + "======== Module name 'react/jsx-runtime' was successfully resolved to '/node_modules/@types/react/jsx-runtime.d.ts' with Package ID '@types/react/jsx-runtime.d.ts@18.2.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/react/jsx-runtime.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'react/jsx-runtime' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'react/jsx-runtime' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/react/package.json' exists according to earlier cached lookups.", + "File '/node_modules/react/jsx-runtime.ts' does not exist.", + "File '/node_modules/react/jsx-runtime.tsx' does not exist.", + "'package.json' has 'main' field 'index.js' that references '/node_modules/react/jsx-runtime/index.js'.", + "Loading module as file / folder, candidate module location '/node_modules/react/jsx-runtime/index.js', target file types: TypeScript.", + "File name '/node_modules/react/jsx-runtime/index.js' has a '.js' extension - stripping it.", + "Loading module 'react/jsx-runtime' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/react/package.json' exists according to earlier cached lookups.", + "File '/node_modules/react/jsx-runtime.js' exists - use it as a name resolution result.", + "======== Module name 'react/jsx-runtime' was successfully resolved to '/node_modules/react/jsx-runtime.js' with Package ID 'react/jsx-runtime.js@18.2.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@types/react/global.d.ts", + "/node_modules/@types/react/index.d.ts", + "/node_modules/@types/react/jsx-runtime.d.ts" + ] + }, + "node16-cjs": { + "name": "./jsx-runtime", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/@types/react/jsx-runtime.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/@types/react/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'react/jsx-runtime' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'react/jsx-runtime' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/react/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './jsx-runtime' with target './jsx-runtime.js'.", + "File name '/node_modules/react/jsx-runtime.js' has a '.js' extension - stripping it.", + "File '/node_modules/react/jsx-runtime.ts' does not exist.", + "File '/node_modules/react/jsx-runtime.tsx' does not exist.", + "File '/node_modules/react/jsx-runtime.d.ts' does not exist.", + "Export specifier './jsx-runtime' does not exist in package.json scope at path '/node_modules/react'.", + "File '/node_modules/@types/react/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types@<=5.0'.", + "Matched 'exports' condition 'types'.", + "Entering conditional exports.", + "Matched 'exports' condition 'default'.", + "Using 'exports' subpath './jsx-runtime' with target './jsx-runtime.d.ts'.", + "File '/node_modules/@types/react/jsx-runtime.d.ts' exists - use it as a name resolution result.", + "Resolved under condition 'default'.", + "Exiting conditional exports.", + "Resolved under condition 'types'.", + "Exiting conditional exports.", + "======== Module name 'react/jsx-runtime' was successfully resolved to '/node_modules/@types/react/jsx-runtime.d.ts' with Package ID '@types/react/jsx-runtime.d.ts@18.2.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/react/jsx-runtime.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/react/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'react/jsx-runtime' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'react/jsx-runtime' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/react/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './jsx-runtime' with target './jsx-runtime.js'.", + "File name '/node_modules/react/jsx-runtime.js' has a '.js' extension - stripping it.", + "File '/node_modules/react/jsx-runtime.ts' does not exist.", + "File '/node_modules/react/jsx-runtime.tsx' does not exist.", + "Export specifier './jsx-runtime' does not exist in package.json scope at path '/node_modules/react'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/react/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './jsx-runtime' with target './jsx-runtime.js'.", + "File name '/node_modules/react/jsx-runtime.js' has a '.js' extension - stripping it.", + "File '/node_modules/react/jsx-runtime.js' exists - use it as a name resolution result.", + "======== Module name 'react/jsx-runtime' was successfully resolved to '/node_modules/react/jsx-runtime.js' with Package ID 'react/jsx-runtime.js@18.2.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@types/react/global.d.ts", + "/node_modules/@types/react/index.d.ts", + "/node_modules/@types/react/jsx-runtime.d.ts" + ] + }, + "node16-esm": { + "name": "./jsx-runtime", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/@types/react/jsx-runtime.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/@types/react/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'react/jsx-runtime' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'react/jsx-runtime' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/react/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './jsx-runtime' with target './jsx-runtime.js'.", + "File name '/node_modules/react/jsx-runtime.js' has a '.js' extension - stripping it.", + "File '/node_modules/react/jsx-runtime.ts' does not exist.", + "File '/node_modules/react/jsx-runtime.tsx' does not exist.", + "File '/node_modules/react/jsx-runtime.d.ts' does not exist.", + "Export specifier './jsx-runtime' does not exist in package.json scope at path '/node_modules/react'.", + "File '/node_modules/@types/react/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types@<=5.0'.", + "Matched 'exports' condition 'types'.", + "Entering conditional exports.", + "Matched 'exports' condition 'default'.", + "Using 'exports' subpath './jsx-runtime' with target './jsx-runtime.d.ts'.", + "File '/node_modules/@types/react/jsx-runtime.d.ts' exists - use it as a name resolution result.", + "Resolved under condition 'default'.", + "Exiting conditional exports.", + "Resolved under condition 'types'.", + "Exiting conditional exports.", + "======== Module name 'react/jsx-runtime' was successfully resolved to '/node_modules/@types/react/jsx-runtime.d.ts' with Package ID '@types/react/jsx-runtime.d.ts@18.2.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/react/jsx-runtime.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/react/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'react/jsx-runtime' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'react/jsx-runtime' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/react/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './jsx-runtime' with target './jsx-runtime.js'.", + "File name '/node_modules/react/jsx-runtime.js' has a '.js' extension - stripping it.", + "File '/node_modules/react/jsx-runtime.ts' does not exist.", + "File '/node_modules/react/jsx-runtime.tsx' does not exist.", + "Export specifier './jsx-runtime' does not exist in package.json scope at path '/node_modules/react'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/react/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './jsx-runtime' with target './jsx-runtime.js'.", + "File name '/node_modules/react/jsx-runtime.js' has a '.js' extension - stripping it.", + "File '/node_modules/react/jsx-runtime.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'react/jsx-runtime' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/react/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'index.js' that references '/node_modules/react/jsx-runtime/index.js'.", + "Loading module as file / folder, candidate module location '/node_modules/react/jsx-runtime/index.js', target file types: TypeScript.", + "File name '/node_modules/react/jsx-runtime/index.js' has a '.js' extension - stripping it.", + "======== Module name 'react/jsx-runtime' was successfully resolved to '/node_modules/react/jsx-runtime.js' with Package ID 'react/jsx-runtime.js@18.2.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@types/react/global.d.ts", + "/node_modules/@types/react/index.d.ts", + "/node_modules/@types/react/jsx-runtime.d.ts" + ] + }, + "bundler": { + "name": "./jsx-runtime", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/@types/react/jsx-runtime.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'react/jsx-runtime' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'react/jsx-runtime' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/react/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './jsx-runtime' with target './jsx-runtime.js'.", + "File name '/node_modules/react/jsx-runtime.js' has a '.js' extension - stripping it.", + "File '/node_modules/react/jsx-runtime.ts' does not exist.", + "File '/node_modules/react/jsx-runtime.tsx' does not exist.", + "File '/node_modules/react/jsx-runtime.d.ts' does not exist.", + "Export specifier './jsx-runtime' does not exist in package.json scope at path '/node_modules/react'.", + "File '/node_modules/@types/react/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types@<=5.0'.", + "Matched 'exports' condition 'types'.", + "Entering conditional exports.", + "Matched 'exports' condition 'default'.", + "Using 'exports' subpath './jsx-runtime' with target './jsx-runtime.d.ts'.", + "File '/node_modules/@types/react/jsx-runtime.d.ts' exists - use it as a name resolution result.", + "Resolved under condition 'default'.", + "Exiting conditional exports.", + "Resolved under condition 'types'.", + "Exiting conditional exports.", + "======== Module name 'react/jsx-runtime' was successfully resolved to '/node_modules/@types/react/jsx-runtime.d.ts' with Package ID '@types/react/jsx-runtime.d.ts@18.2.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/react/jsx-runtime.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'react/jsx-runtime' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'react/jsx-runtime' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/react/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './jsx-runtime' with target './jsx-runtime.js'.", + "File name '/node_modules/react/jsx-runtime.js' has a '.js' extension - stripping it.", + "File '/node_modules/react/jsx-runtime.ts' does not exist.", + "File '/node_modules/react/jsx-runtime.tsx' does not exist.", + "Export specifier './jsx-runtime' does not exist in package.json scope at path '/node_modules/react'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/react/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './jsx-runtime' with target './jsx-runtime.js'.", + "File name '/node_modules/react/jsx-runtime.js' has a '.js' extension - stripping it.", + "File '/node_modules/react/jsx-runtime.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'react/jsx-runtime' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/react/package.json' exists according to earlier cached lookups.", + "File '/node_modules/react/jsx-runtime.ts' does not exist.", + "File '/node_modules/react/jsx-runtime.tsx' does not exist.", + "'package.json' has 'main' field 'index.js' that references '/node_modules/react/jsx-runtime/index.js'.", + "Loading module as file / folder, candidate module location '/node_modules/react/jsx-runtime/index.js', target file types: TypeScript.", + "File name '/node_modules/react/jsx-runtime/index.js' has a '.js' extension - stripping it.", + "======== Module name 'react/jsx-runtime' was successfully resolved to '/node_modules/react/jsx-runtime.js' with Package ID 'react/jsx-runtime.js@18.2.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@types/react/global.d.ts", + "/node_modules/@types/react/index.d.ts", + "/node_modules/@types/react/jsx-runtime.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + }, + "./jsx-dev-runtime": { + "subpath": "./jsx-dev-runtime", + "resolutions": { + "node10": { + "name": "./jsx-dev-runtime", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/@types/react/jsx-dev-runtime.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'react/jsx-dev-runtime' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'react/jsx-dev-runtime' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/react/package.json' exists according to earlier cached lookups.", + "File '/node_modules/react/jsx-dev-runtime.ts' does not exist.", + "File '/node_modules/react/jsx-dev-runtime.tsx' does not exist.", + "File '/node_modules/react/jsx-dev-runtime.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' does not have a 'types' field.", + "'package.json' has 'main' field 'index.js' that references '/node_modules/react/jsx-dev-runtime/index.js'.", + "Loading module as file / folder, candidate module location '/node_modules/react/jsx-dev-runtime/index.js', target file types: TypeScript, Declaration.", + "File name '/node_modules/react/jsx-dev-runtime/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/@types/react/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@types/react/jsx-dev-runtime.d.ts' exists - use it as a name resolution result.", + "======== Module name 'react/jsx-dev-runtime' was successfully resolved to '/node_modules/@types/react/jsx-dev-runtime.d.ts' with Package ID '@types/react/jsx-dev-runtime.d.ts@18.2.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/react/jsx-dev-runtime.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'react/jsx-dev-runtime' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'react/jsx-dev-runtime' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/react/package.json' exists according to earlier cached lookups.", + "File '/node_modules/react/jsx-dev-runtime.ts' does not exist.", + "File '/node_modules/react/jsx-dev-runtime.tsx' does not exist.", + "'package.json' has 'main' field 'index.js' that references '/node_modules/react/jsx-dev-runtime/index.js'.", + "Loading module as file / folder, candidate module location '/node_modules/react/jsx-dev-runtime/index.js', target file types: TypeScript.", + "File name '/node_modules/react/jsx-dev-runtime/index.js' has a '.js' extension - stripping it.", + "Loading module 'react/jsx-dev-runtime' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/react/package.json' exists according to earlier cached lookups.", + "File '/node_modules/react/jsx-dev-runtime.js' exists - use it as a name resolution result.", + "======== Module name 'react/jsx-dev-runtime' was successfully resolved to '/node_modules/react/jsx-dev-runtime.js' with Package ID 'react/jsx-dev-runtime.js@18.2.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@types/react/global.d.ts", + "/node_modules/@types/react/index.d.ts", + "/node_modules/@types/react/jsx-dev-runtime.d.ts" + ] + }, + "node16-cjs": { + "name": "./jsx-dev-runtime", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/@types/react/jsx-dev-runtime.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/@types/react/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'react/jsx-dev-runtime' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'react/jsx-dev-runtime' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/react/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './jsx-dev-runtime' with target './jsx-dev-runtime.js'.", + "File name '/node_modules/react/jsx-dev-runtime.js' has a '.js' extension - stripping it.", + "File '/node_modules/react/jsx-dev-runtime.ts' does not exist.", + "File '/node_modules/react/jsx-dev-runtime.tsx' does not exist.", + "File '/node_modules/react/jsx-dev-runtime.d.ts' does not exist.", + "Export specifier './jsx-dev-runtime' does not exist in package.json scope at path '/node_modules/react'.", + "File '/node_modules/@types/react/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types@<=5.0'.", + "Matched 'exports' condition 'types'.", + "Entering conditional exports.", + "Matched 'exports' condition 'default'.", + "Using 'exports' subpath './jsx-dev-runtime' with target './jsx-dev-runtime.d.ts'.", + "File '/node_modules/@types/react/jsx-dev-runtime.d.ts' exists - use it as a name resolution result.", + "Resolved under condition 'default'.", + "Exiting conditional exports.", + "Resolved under condition 'types'.", + "Exiting conditional exports.", + "======== Module name 'react/jsx-dev-runtime' was successfully resolved to '/node_modules/@types/react/jsx-dev-runtime.d.ts' with Package ID '@types/react/jsx-dev-runtime.d.ts@18.2.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/react/jsx-dev-runtime.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/react/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'react/jsx-dev-runtime' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'react/jsx-dev-runtime' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/react/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './jsx-dev-runtime' with target './jsx-dev-runtime.js'.", + "File name '/node_modules/react/jsx-dev-runtime.js' has a '.js' extension - stripping it.", + "File '/node_modules/react/jsx-dev-runtime.ts' does not exist.", + "File '/node_modules/react/jsx-dev-runtime.tsx' does not exist.", + "Export specifier './jsx-dev-runtime' does not exist in package.json scope at path '/node_modules/react'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/react/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './jsx-dev-runtime' with target './jsx-dev-runtime.js'.", + "File name '/node_modules/react/jsx-dev-runtime.js' has a '.js' extension - stripping it.", + "File '/node_modules/react/jsx-dev-runtime.js' exists - use it as a name resolution result.", + "======== Module name 'react/jsx-dev-runtime' was successfully resolved to '/node_modules/react/jsx-dev-runtime.js' with Package ID 'react/jsx-dev-runtime.js@18.2.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@types/react/global.d.ts", + "/node_modules/@types/react/index.d.ts", + "/node_modules/@types/react/jsx-dev-runtime.d.ts" + ] + }, + "node16-esm": { + "name": "./jsx-dev-runtime", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/@types/react/jsx-dev-runtime.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/@types/react/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'react/jsx-dev-runtime' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'react/jsx-dev-runtime' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/react/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './jsx-dev-runtime' with target './jsx-dev-runtime.js'.", + "File name '/node_modules/react/jsx-dev-runtime.js' has a '.js' extension - stripping it.", + "File '/node_modules/react/jsx-dev-runtime.ts' does not exist.", + "File '/node_modules/react/jsx-dev-runtime.tsx' does not exist.", + "File '/node_modules/react/jsx-dev-runtime.d.ts' does not exist.", + "Export specifier './jsx-dev-runtime' does not exist in package.json scope at path '/node_modules/react'.", + "File '/node_modules/@types/react/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types@<=5.0'.", + "Matched 'exports' condition 'types'.", + "Entering conditional exports.", + "Matched 'exports' condition 'default'.", + "Using 'exports' subpath './jsx-dev-runtime' with target './jsx-dev-runtime.d.ts'.", + "File '/node_modules/@types/react/jsx-dev-runtime.d.ts' exists - use it as a name resolution result.", + "Resolved under condition 'default'.", + "Exiting conditional exports.", + "Resolved under condition 'types'.", + "Exiting conditional exports.", + "======== Module name 'react/jsx-dev-runtime' was successfully resolved to '/node_modules/@types/react/jsx-dev-runtime.d.ts' with Package ID '@types/react/jsx-dev-runtime.d.ts@18.2.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/react/jsx-dev-runtime.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/react/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'react/jsx-dev-runtime' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'react/jsx-dev-runtime' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/react/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './jsx-dev-runtime' with target './jsx-dev-runtime.js'.", + "File name '/node_modules/react/jsx-dev-runtime.js' has a '.js' extension - stripping it.", + "File '/node_modules/react/jsx-dev-runtime.ts' does not exist.", + "File '/node_modules/react/jsx-dev-runtime.tsx' does not exist.", + "Export specifier './jsx-dev-runtime' does not exist in package.json scope at path '/node_modules/react'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/react/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './jsx-dev-runtime' with target './jsx-dev-runtime.js'.", + "File name '/node_modules/react/jsx-dev-runtime.js' has a '.js' extension - stripping it.", + "File '/node_modules/react/jsx-dev-runtime.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'react/jsx-dev-runtime' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/react/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'index.js' that references '/node_modules/react/jsx-dev-runtime/index.js'.", + "Loading module as file / folder, candidate module location '/node_modules/react/jsx-dev-runtime/index.js', target file types: TypeScript.", + "File name '/node_modules/react/jsx-dev-runtime/index.js' has a '.js' extension - stripping it.", + "======== Module name 'react/jsx-dev-runtime' was successfully resolved to '/node_modules/react/jsx-dev-runtime.js' with Package ID 'react/jsx-dev-runtime.js@18.2.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@types/react/global.d.ts", + "/node_modules/@types/react/index.d.ts", + "/node_modules/@types/react/jsx-dev-runtime.d.ts" + ] + }, + "bundler": { + "name": "./jsx-dev-runtime", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/@types/react/jsx-dev-runtime.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'react/jsx-dev-runtime' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'react/jsx-dev-runtime' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/react/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './jsx-dev-runtime' with target './jsx-dev-runtime.js'.", + "File name '/node_modules/react/jsx-dev-runtime.js' has a '.js' extension - stripping it.", + "File '/node_modules/react/jsx-dev-runtime.ts' does not exist.", + "File '/node_modules/react/jsx-dev-runtime.tsx' does not exist.", + "File '/node_modules/react/jsx-dev-runtime.d.ts' does not exist.", + "Export specifier './jsx-dev-runtime' does not exist in package.json scope at path '/node_modules/react'.", + "File '/node_modules/@types/react/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types@<=5.0'.", + "Matched 'exports' condition 'types'.", + "Entering conditional exports.", + "Matched 'exports' condition 'default'.", + "Using 'exports' subpath './jsx-dev-runtime' with target './jsx-dev-runtime.d.ts'.", + "File '/node_modules/@types/react/jsx-dev-runtime.d.ts' exists - use it as a name resolution result.", + "Resolved under condition 'default'.", + "Exiting conditional exports.", + "Resolved under condition 'types'.", + "Exiting conditional exports.", + "======== Module name 'react/jsx-dev-runtime' was successfully resolved to '/node_modules/@types/react/jsx-dev-runtime.d.ts' with Package ID '@types/react/jsx-dev-runtime.d.ts@18.2.21'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/react/jsx-dev-runtime.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'react/jsx-dev-runtime' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'react/jsx-dev-runtime' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/react/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './jsx-dev-runtime' with target './jsx-dev-runtime.js'.", + "File name '/node_modules/react/jsx-dev-runtime.js' has a '.js' extension - stripping it.", + "File '/node_modules/react/jsx-dev-runtime.ts' does not exist.", + "File '/node_modules/react/jsx-dev-runtime.tsx' does not exist.", + "Export specifier './jsx-dev-runtime' does not exist in package.json scope at path '/node_modules/react'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/react/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './jsx-dev-runtime' with target './jsx-dev-runtime.js'.", + "File name '/node_modules/react/jsx-dev-runtime.js' has a '.js' extension - stripping it.", + "File '/node_modules/react/jsx-dev-runtime.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'react/jsx-dev-runtime' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/react/package.json' exists according to earlier cached lookups.", + "File '/node_modules/react/jsx-dev-runtime.ts' does not exist.", + "File '/node_modules/react/jsx-dev-runtime.tsx' does not exist.", + "'package.json' has 'main' field 'index.js' that references '/node_modules/react/jsx-dev-runtime/index.js'.", + "Loading module as file / folder, candidate module location '/node_modules/react/jsx-dev-runtime/index.js', target file types: TypeScript.", + "File name '/node_modules/react/jsx-dev-runtime/index.js' has a '.js' extension - stripping it.", + "======== Module name 'react/jsx-dev-runtime' was successfully resolved to '/node_modules/react/jsx-dev-runtime.js' with Package ID 'react/jsx-dev-runtime.js@18.2.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@types/react/global.d.ts", + "/node_modules/@types/react/index.d.ts", + "/node_modules/@types/react/jsx-dev-runtime.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + }, + "./canary": { + "subpath": "./canary", + "resolutions": { + "node10": { + "name": "./canary", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/@types/react/canary.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'react/canary' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'react/canary' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/react/package.json' exists according to earlier cached lookups.", + "File '/node_modules/react/canary.ts' does not exist.", + "File '/node_modules/react/canary.tsx' does not exist.", + "File '/node_modules/react/canary.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' does not have a 'types' field.", + "'package.json' has 'main' field 'index.js' that references '/node_modules/react/canary/index.js'.", + "Loading module as file / folder, candidate module location '/node_modules/react/canary/index.js', target file types: TypeScript, Declaration.", + "File name '/node_modules/react/canary/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/@types/react/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@types/react/canary.d.ts' exists - use it as a name resolution result.", + "======== Module name 'react/canary' was successfully resolved to '/node_modules/@types/react/canary.d.ts' with Package ID '@types/react/canary.d.ts@18.2.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@types/react/global.d.ts", + "/node_modules/@types/react/index.d.ts", + "/node_modules/@types/react/canary.d.ts" + ] + }, + "node16-cjs": { + "name": "./canary", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/@types/react/canary.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/@types/react/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'react/canary' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'react/canary' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/react/package.json' exists according to earlier cached lookups.", + "Export specifier './canary' does not exist in package.json scope at path '/node_modules/react'.", + "File '/node_modules/@types/react/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types@<=5.0'.", + "Matched 'exports' condition 'types'.", + "Entering conditional exports.", + "Matched 'exports' condition 'default'.", + "Using 'exports' subpath './canary' with target './canary.d.ts'.", + "File '/node_modules/@types/react/canary.d.ts' exists - use it as a name resolution result.", + "Resolved under condition 'default'.", + "Exiting conditional exports.", + "Resolved under condition 'types'.", + "Exiting conditional exports.", + "======== Module name 'react/canary' was successfully resolved to '/node_modules/@types/react/canary.d.ts' with Package ID '@types/react/canary.d.ts@18.2.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@types/react/global.d.ts", + "/node_modules/@types/react/index.d.ts", + "/node_modules/@types/react/canary.d.ts" + ] + }, + "node16-esm": { + "name": "./canary", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/@types/react/canary.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/@types/react/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'react/canary' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'react/canary' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/react/package.json' exists according to earlier cached lookups.", + "Export specifier './canary' does not exist in package.json scope at path '/node_modules/react'.", + "File '/node_modules/@types/react/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types@<=5.0'.", + "Matched 'exports' condition 'types'.", + "Entering conditional exports.", + "Matched 'exports' condition 'default'.", + "Using 'exports' subpath './canary' with target './canary.d.ts'.", + "File '/node_modules/@types/react/canary.d.ts' exists - use it as a name resolution result.", + "Resolved under condition 'default'.", + "Exiting conditional exports.", + "Resolved under condition 'types'.", + "Exiting conditional exports.", + "======== Module name 'react/canary' was successfully resolved to '/node_modules/@types/react/canary.d.ts' with Package ID '@types/react/canary.d.ts@18.2.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@types/react/global.d.ts", + "/node_modules/@types/react/index.d.ts", + "/node_modules/@types/react/canary.d.ts" + ] + }, + "bundler": { + "name": "./canary", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/@types/react/canary.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'react/canary' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'react/canary' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/react/package.json' exists according to earlier cached lookups.", + "Export specifier './canary' does not exist in package.json scope at path '/node_modules/react'.", + "File '/node_modules/@types/react/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types@<=5.0'.", + "Matched 'exports' condition 'types'.", + "Entering conditional exports.", + "Matched 'exports' condition 'default'.", + "Using 'exports' subpath './canary' with target './canary.d.ts'.", + "File '/node_modules/@types/react/canary.d.ts' exists - use it as a name resolution result.", + "Resolved under condition 'default'.", + "Exiting conditional exports.", + "Resolved under condition 'types'.", + "Exiting conditional exports.", + "======== Module name 'react/canary' was successfully resolved to '/node_modules/@types/react/canary.d.ts' with Package ID '@types/react/canary.d.ts@18.2.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@types/react/global.d.ts", + "/node_modules/@types/react/index.d.ts", + "/node_modules/@types/react/canary.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + }, + "./experimental": { + "subpath": "./experimental", + "resolutions": { + "node10": { + "name": "./experimental", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/@types/react/experimental.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'react/experimental' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'react/experimental' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/react/package.json' exists according to earlier cached lookups.", + "File '/node_modules/react/experimental.ts' does not exist.", + "File '/node_modules/react/experimental.tsx' does not exist.", + "File '/node_modules/react/experimental.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' does not have a 'types' field.", + "'package.json' has 'main' field 'index.js' that references '/node_modules/react/experimental/index.js'.", + "Loading module as file / folder, candidate module location '/node_modules/react/experimental/index.js', target file types: TypeScript, Declaration.", + "File name '/node_modules/react/experimental/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/@types/react/package.json' exists according to earlier cached lookups.", + "File '/node_modules/@types/react/experimental.d.ts' exists - use it as a name resolution result.", + "======== Module name 'react/experimental' was successfully resolved to '/node_modules/@types/react/experimental.d.ts' with Package ID '@types/react/experimental.d.ts@18.2.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@types/react/global.d.ts", + "/node_modules/@types/react/index.d.ts", + "/node_modules/@types/react/canary.d.ts", + "/node_modules/@types/react/experimental.d.ts" + ] + }, + "node16-cjs": { + "name": "./experimental", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/@types/react/experimental.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/@types/react/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'react/experimental' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'react/experimental' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/react/package.json' exists according to earlier cached lookups.", + "Export specifier './experimental' does not exist in package.json scope at path '/node_modules/react'.", + "File '/node_modules/@types/react/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types@<=5.0'.", + "Matched 'exports' condition 'types'.", + "Entering conditional exports.", + "Matched 'exports' condition 'default'.", + "Using 'exports' subpath './experimental' with target './experimental.d.ts'.", + "File '/node_modules/@types/react/experimental.d.ts' exists - use it as a name resolution result.", + "Resolved under condition 'default'.", + "Exiting conditional exports.", + "Resolved under condition 'types'.", + "Exiting conditional exports.", + "======== Module name 'react/experimental' was successfully resolved to '/node_modules/@types/react/experimental.d.ts' with Package ID '@types/react/experimental.d.ts@18.2.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@types/react/global.d.ts", + "/node_modules/@types/react/index.d.ts", + "/node_modules/@types/react/canary.d.ts", + "/node_modules/@types/react/experimental.d.ts" + ] + }, + "node16-esm": { + "name": "./experimental", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/@types/react/experimental.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/@types/react/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'react/experimental' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'react/experimental' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/react/package.json' exists according to earlier cached lookups.", + "Export specifier './experimental' does not exist in package.json scope at path '/node_modules/react'.", + "File '/node_modules/@types/react/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types@<=5.0'.", + "Matched 'exports' condition 'types'.", + "Entering conditional exports.", + "Matched 'exports' condition 'default'.", + "Using 'exports' subpath './experimental' with target './experimental.d.ts'.", + "File '/node_modules/@types/react/experimental.d.ts' exists - use it as a name resolution result.", + "Resolved under condition 'default'.", + "Exiting conditional exports.", + "Resolved under condition 'types'.", + "Exiting conditional exports.", + "======== Module name 'react/experimental' was successfully resolved to '/node_modules/@types/react/experimental.d.ts' with Package ID '@types/react/experimental.d.ts@18.2.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@types/react/global.d.ts", + "/node_modules/@types/react/index.d.ts", + "/node_modules/@types/react/canary.d.ts", + "/node_modules/@types/react/experimental.d.ts" + ] + }, + "bundler": { + "name": "./experimental", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/@types/react/experimental.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'react/experimental' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'react/experimental' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/react/package.json' exists according to earlier cached lookups.", + "Export specifier './experimental' does not exist in package.json scope at path '/node_modules/react'.", + "File '/node_modules/@types/react/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types@<=5.0'.", + "Matched 'exports' condition 'types'.", + "Entering conditional exports.", + "Matched 'exports' condition 'default'.", + "Using 'exports' subpath './experimental' with target './experimental.d.ts'.", + "File '/node_modules/@types/react/experimental.d.ts' exists - use it as a name resolution result.", + "Resolved under condition 'default'.", + "Exiting conditional exports.", + "Resolved under condition 'types'.", + "Exiting conditional exports.", + "======== Module name 'react/experimental' was successfully resolved to '/node_modules/@types/react/experimental.d.ts' with Package ID '@types/react/experimental.d.ts@18.2.21'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/@types/react/global.d.ts", + "/node_modules/@types/react/index.d.ts", + "/node_modules/@types/react/canary.d.ts", + "/node_modules/@types/react/experimental.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + } + }, + "problems": [] +} diff --git a/packages/core/test/snapshots/react@18.2.0.tgz.md b/packages/core/test/snapshots/react@18.2.0.tgz.md deleted file mode 100644 index 1b51016..0000000 --- a/packages/core/test/snapshots/react@18.2.0.tgz.md +++ /dev/null @@ -1,7 +0,0 @@ -# react@18.2.0.tgz - -## Problems - -```json -[] -``` \ No newline at end of file diff --git a/packages/core/test/snapshots/rfdc@1.3.0.tgz.json b/packages/core/test/snapshots/rfdc@1.3.0.tgz.json new file mode 100644 index 0000000..4feb6e8 --- /dev/null +++ b/packages/core/test/snapshots/rfdc@1.3.0.tgz.json @@ -0,0 +1,500 @@ +{ + "packageName": "rfdc", + "packageVersion": "1.3.0", + "types": { + "kind": "included" + }, + "buildTools": {}, + "entrypoints": { + ".": { + "subpath": ".", + "resolutions": { + "node10": { + "name": ".", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/rfdc/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'rfdc' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'rfdc' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/rfdc/package.json'.", + "File '/node_modules/rfdc.ts' does not exist.", + "File '/node_modules/rfdc.tsx' does not exist.", + "File '/node_modules/rfdc.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' does not have a 'types' field.", + "'package.json' has 'main' field 'index.js' that references '/node_modules/rfdc/index.js'.", + "File '/node_modules/rfdc/index.js' exists - use it as a name resolution result.", + "File '/node_modules/rfdc/index.js' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/rfdc/index.js', target file types: TypeScript, Declaration.", + "File name '/node_modules/rfdc/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/rfdc/index.ts' does not exist.", + "File '/node_modules/rfdc/index.tsx' does not exist.", + "File '/node_modules/rfdc/index.d.ts' exists - use it as a name resolution result.", + "======== Module name 'rfdc' was successfully resolved to '/node_modules/rfdc/index.d.ts' with Package ID 'rfdc/index.d.ts@1.3.0'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/rfdc/index.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'rfdc' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'rfdc' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/rfdc/package.json'.", + "File '/node_modules/rfdc.ts' does not exist.", + "File '/node_modules/rfdc.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'index.js' that references '/node_modules/rfdc/index.js'.", + "File '/node_modules/rfdc/index.js' exists - use it as a name resolution result.", + "File '/node_modules/rfdc/index.js' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/rfdc/index.js', target file types: TypeScript.", + "File name '/node_modules/rfdc/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/rfdc/index.ts' does not exist.", + "File '/node_modules/rfdc/index.tsx' does not exist.", + "File '/node_modules/rfdc/index.js.ts' does not exist.", + "File '/node_modules/rfdc/index.js.tsx' does not exist.", + "Directory '/node_modules/rfdc/index.js' does not exist, skipping all lookups in it.", + "File '/node_modules/rfdc/index.ts' does not exist.", + "File '/node_modules/rfdc/index.tsx' does not exist.", + "Loading module 'rfdc' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/rfdc/package.json' exists according to earlier cached lookups.", + "File '/node_modules/rfdc.js' does not exist.", + "File '/node_modules/rfdc.jsx' does not exist.", + "'package.json' has 'main' field 'index.js' that references '/node_modules/rfdc/index.js'.", + "File '/node_modules/rfdc/index.js' exists - use it as a name resolution result.", + "======== Module name 'rfdc' was successfully resolved to '/node_modules/rfdc/index.js' with Package ID 'rfdc/index.js@1.3.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/rfdc/index.d.ts" + ] + }, + "node16-cjs": { + "name": ".", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/rfdc/index.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/rfdc/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'rfdc' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist.", + "Loading module 'rfdc' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/rfdc/package.json'.", + "Using 'exports' subpath '.' with target './index.js'.", + "File name '/node_modules/rfdc/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/rfdc/index.ts' does not exist.", + "File '/node_modules/rfdc/index.tsx' does not exist.", + "File '/node_modules/rfdc/index.d.ts' exists - use it as a name resolution result.", + "======== Module name 'rfdc' was successfully resolved to '/node_modules/rfdc/index.d.ts' with Package ID 'rfdc/index.d.ts@1.3.0'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/rfdc/index.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/rfdc/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'rfdc' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist.", + "Loading module 'rfdc' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/rfdc/package.json'.", + "Using 'exports' subpath '.' with target './index.js'.", + "File name '/node_modules/rfdc/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/rfdc/index.ts' does not exist.", + "File '/node_modules/rfdc/index.tsx' does not exist.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/rfdc/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath '.' with target './index.js'.", + "File name '/node_modules/rfdc/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/rfdc/index.js' exists - use it as a name resolution result.", + "======== Module name 'rfdc' was successfully resolved to '/node_modules/rfdc/index.js' with Package ID 'rfdc/index.js@1.3.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/rfdc/index.d.ts" + ] + }, + "node16-esm": { + "name": ".", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/rfdc/index.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/rfdc/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'rfdc' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'rfdc' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/rfdc/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath '.' with target './index.js'.", + "File name '/node_modules/rfdc/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/rfdc/index.ts' does not exist.", + "File '/node_modules/rfdc/index.tsx' does not exist.", + "File '/node_modules/rfdc/index.d.ts' exists - use it as a name resolution result.", + "======== Module name 'rfdc' was successfully resolved to '/node_modules/rfdc/index.d.ts' with Package ID 'rfdc/index.d.ts@1.3.0'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/rfdc/index.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/rfdc/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'rfdc' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'rfdc' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/rfdc/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath '.' with target './index.js'.", + "File name '/node_modules/rfdc/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/rfdc/index.ts' does not exist.", + "File '/node_modules/rfdc/index.tsx' does not exist.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/rfdc/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath '.' with target './index.js'.", + "File name '/node_modules/rfdc/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/rfdc/index.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'rfdc' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/rfdc/package.json' exists according to earlier cached lookups.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'index.js' that references '/node_modules/rfdc/index.js'.", + "File '/node_modules/rfdc/index.js' exists - use it as a name resolution result.", + "File '/node_modules/rfdc/index.js' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/rfdc/index.js', target file types: TypeScript.", + "File name '/node_modules/rfdc/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/rfdc/index.ts' does not exist.", + "File '/node_modules/rfdc/index.tsx' does not exist.", + "File '/node_modules/rfdc/index.js.ts' does not exist.", + "File '/node_modules/rfdc/index.js.tsx' does not exist.", + "Directory '/node_modules/rfdc/index.js' does not exist, skipping all lookups in it.", + "======== Module name 'rfdc' was successfully resolved to '/node_modules/rfdc/index.js' with Package ID 'rfdc/index.js@1.3.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/rfdc/index.d.ts" + ] + }, + "bundler": { + "name": ".", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/rfdc/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'rfdc' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist.", + "Loading module 'rfdc' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/rfdc/package.json'.", + "Using 'exports' subpath '.' with target './index.js'.", + "File name '/node_modules/rfdc/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/rfdc/index.ts' does not exist.", + "File '/node_modules/rfdc/index.tsx' does not exist.", + "File '/node_modules/rfdc/index.d.ts' exists - use it as a name resolution result.", + "======== Module name 'rfdc' was successfully resolved to '/node_modules/rfdc/index.d.ts' with Package ID 'rfdc/index.d.ts@1.3.0'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/rfdc/index.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'rfdc' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist.", + "Loading module 'rfdc' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/rfdc/package.json'.", + "Using 'exports' subpath '.' with target './index.js'.", + "File name '/node_modules/rfdc/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/rfdc/index.ts' does not exist.", + "File '/node_modules/rfdc/index.tsx' does not exist.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/rfdc/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath '.' with target './index.js'.", + "File name '/node_modules/rfdc/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/rfdc/index.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'rfdc' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/rfdc/package.json' exists according to earlier cached lookups.", + "File '/node_modules/rfdc.ts' does not exist.", + "File '/node_modules/rfdc.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'index.js' that references '/node_modules/rfdc/index.js'.", + "File '/node_modules/rfdc/index.js' exists - use it as a name resolution result.", + "File '/node_modules/rfdc/index.js' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/rfdc/index.js', target file types: TypeScript.", + "File name '/node_modules/rfdc/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/rfdc/index.ts' does not exist.", + "File '/node_modules/rfdc/index.tsx' does not exist.", + "File '/node_modules/rfdc/index.js.ts' does not exist.", + "File '/node_modules/rfdc/index.js.tsx' does not exist.", + "Directory '/node_modules/rfdc/index.js' does not exist, skipping all lookups in it.", + "File '/node_modules/rfdc/index.ts' does not exist.", + "File '/node_modules/rfdc/index.tsx' does not exist.", + "======== Module name 'rfdc' was successfully resolved to '/node_modules/rfdc/index.js' with Package ID 'rfdc/index.js@1.3.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/rfdc/index.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + }, + "./default": { + "subpath": "./default", + "resolutions": { + "node10": { + "name": "./default", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/rfdc/default.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'rfdc/default' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'rfdc/default' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/rfdc/package.json' exists according to earlier cached lookups.", + "File '/node_modules/rfdc/default.ts' does not exist.", + "File '/node_modules/rfdc/default.tsx' does not exist.", + "File '/node_modules/rfdc/default.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' does not have a 'types' field.", + "'package.json' has 'main' field 'index.js' that references '/node_modules/rfdc/default/index.js'.", + "Loading module as file / folder, candidate module location '/node_modules/rfdc/default/index.js', target file types: TypeScript, Declaration.", + "File name '/node_modules/rfdc/default/index.js' has a '.js' extension - stripping it.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "Loading module 'rfdc/default' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/rfdc/package.json' exists according to earlier cached lookups.", + "File '/node_modules/rfdc/default.js' exists - use it as a name resolution result.", + "======== Module name 'rfdc/default' was successfully resolved to '/node_modules/rfdc/default.js' with Package ID 'rfdc/default.js@1.3.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts" + ] + }, + "node16-cjs": { + "name": "./default", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/rfdc/default.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/rfdc/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'rfdc/default' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'rfdc/default' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/rfdc/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './default' with target './default.js'.", + "File name '/node_modules/rfdc/default.js' has a '.js' extension - stripping it.", + "File '/node_modules/rfdc/default.ts' does not exist.", + "File '/node_modules/rfdc/default.tsx' does not exist.", + "File '/node_modules/rfdc/default.d.ts' does not exist.", + "Export specifier './default' does not exist in package.json scope at path '/node_modules/rfdc'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/rfdc/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './default' with target './default.js'.", + "File name '/node_modules/rfdc/default.js' has a '.js' extension - stripping it.", + "File '/node_modules/rfdc/default.js' exists - use it as a name resolution result.", + "======== Module name 'rfdc/default' was successfully resolved to '/node_modules/rfdc/default.js' with Package ID 'rfdc/default.js@1.3.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts" + ] + }, + "node16-esm": { + "name": "./default", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/rfdc/default.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/rfdc/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'rfdc/default' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'rfdc/default' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/rfdc/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './default' with target './default.js'.", + "File name '/node_modules/rfdc/default.js' has a '.js' extension - stripping it.", + "File '/node_modules/rfdc/default.ts' does not exist.", + "File '/node_modules/rfdc/default.tsx' does not exist.", + "File '/node_modules/rfdc/default.d.ts' does not exist.", + "Export specifier './default' does not exist in package.json scope at path '/node_modules/rfdc'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/rfdc/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './default' with target './default.js'.", + "File name '/node_modules/rfdc/default.js' has a '.js' extension - stripping it.", + "File '/node_modules/rfdc/default.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'rfdc/default' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/rfdc/package.json' exists according to earlier cached lookups.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' does not have a 'types' field.", + "'package.json' has 'main' field 'index.js' that references '/node_modules/rfdc/default/index.js'.", + "Loading module as file / folder, candidate module location '/node_modules/rfdc/default/index.js', target file types: TypeScript, Declaration.", + "File name '/node_modules/rfdc/default/index.js' has a '.js' extension - stripping it.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "======== Module name 'rfdc/default' was successfully resolved to '/node_modules/rfdc/default.js' with Package ID 'rfdc/default.js@1.3.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts" + ] + }, + "bundler": { + "name": "./default", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/rfdc/default.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'rfdc/default' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'rfdc/default' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/rfdc/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './default' with target './default.js'.", + "File name '/node_modules/rfdc/default.js' has a '.js' extension - stripping it.", + "File '/node_modules/rfdc/default.ts' does not exist.", + "File '/node_modules/rfdc/default.tsx' does not exist.", + "File '/node_modules/rfdc/default.d.ts' does not exist.", + "Export specifier './default' does not exist in package.json scope at path '/node_modules/rfdc'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/rfdc/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './default' with target './default.js'.", + "File name '/node_modules/rfdc/default.js' has a '.js' extension - stripping it.", + "File '/node_modules/rfdc/default.js' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'rfdc/default' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/rfdc/package.json' exists according to earlier cached lookups.", + "'package.json' does not have a 'typesVersions' field.", + "File '/node_modules/rfdc/default.ts' does not exist.", + "File '/node_modules/rfdc/default.tsx' does not exist.", + "File '/node_modules/rfdc/default.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' does not have a 'types' field.", + "'package.json' has 'main' field 'index.js' that references '/node_modules/rfdc/default/index.js'.", + "Loading module as file / folder, candidate module location '/node_modules/rfdc/default/index.js', target file types: TypeScript, Declaration.", + "File name '/node_modules/rfdc/default/index.js' has a '.js' extension - stripping it.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "======== Module name 'rfdc/default' was successfully resolved to '/node_modules/rfdc/default.js' with Package ID 'rfdc/default.js@1.3.0'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts" + ] + } + }, + "hasTypes": false, + "isWildcard": false + } + }, + "problems": [ + { + "kind": "UntypedResolution", + "entrypoint": "./default", + "resolutionKind": "node10" + }, + { + "kind": "UntypedResolution", + "entrypoint": "./default", + "resolutionKind": "node16-cjs" + }, + { + "kind": "UntypedResolution", + "entrypoint": "./default", + "resolutionKind": "node16-esm" + }, + { + "kind": "UntypedResolution", + "entrypoint": "./default", + "resolutionKind": "bundler" + } + ] +} diff --git a/packages/core/test/snapshots/rfdc@1.3.0.tgz.md b/packages/core/test/snapshots/rfdc@1.3.0.tgz.md deleted file mode 100644 index b4abc6a..0000000 --- a/packages/core/test/snapshots/rfdc@1.3.0.tgz.md +++ /dev/null @@ -1,28 +0,0 @@ -# rfdc@1.3.0.tgz - -## Problems - -```json -[ - { - "kind": "UntypedResolution", - "entrypoint": "./default", - "resolutionKind": "node10" - }, - { - "kind": "UntypedResolution", - "entrypoint": "./default", - "resolutionKind": "node16-cjs" - }, - { - "kind": "UntypedResolution", - "entrypoint": "./default", - "resolutionKind": "node16-esm" - }, - { - "kind": "UntypedResolution", - "entrypoint": "./default", - "resolutionKind": "bundler" - } -] -``` \ No newline at end of file diff --git a/packages/core/test/snapshots/vue@3.3.4.tgz.json b/packages/core/test/snapshots/vue@3.3.4.tgz.json new file mode 100644 index 0000000..53852ec --- /dev/null +++ b/packages/core/test/snapshots/vue@3.3.4.tgz.json @@ -0,0 +1,2672 @@ +{ + "packageName": "vue", + "packageVersion": "3.3.4", + "types": { + "kind": "included" + }, + "buildTools": {}, + "entrypoints": { + ".": { + "subpath": ".", + "resolutions": { + "node10": { + "name": ".", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/vue/dist/vue.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'vue' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'vue' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/vue/package.json'.", + "File '/node_modules/vue.ts' does not exist.", + "File '/node_modules/vue.tsx' does not exist.", + "File '/node_modules/vue.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'dist/vue.d.ts' that references '/node_modules/vue/dist/vue.d.ts'.", + "File '/node_modules/vue/dist/vue.d.ts' exists - use it as a name resolution result.", + "======== Module name 'vue' was successfully resolved to '/node_modules/vue/dist/vue.d.ts' with Package ID 'vue/dist/vue.d.ts@3.3.4'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/vue/index.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'vue' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'vue' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/vue/package.json'.", + "File '/node_modules/vue.ts' does not exist.", + "File '/node_modules/vue.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'index.js' that references '/node_modules/vue/index.js'.", + "File '/node_modules/vue/index.js' exists - use it as a name resolution result.", + "File '/node_modules/vue/index.js' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/vue/index.js', target file types: TypeScript.", + "File name '/node_modules/vue/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/vue/index.ts' does not exist.", + "File '/node_modules/vue/index.tsx' does not exist.", + "File '/node_modules/vue/index.js.ts' does not exist.", + "File '/node_modules/vue/index.js.tsx' does not exist.", + "Directory '/node_modules/vue/index.js' does not exist, skipping all lookups in it.", + "File '/node_modules/vue/index.ts' does not exist.", + "File '/node_modules/vue/index.tsx' does not exist.", + "Loading module 'vue' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "File '/node_modules/vue.js' does not exist.", + "File '/node_modules/vue.jsx' does not exist.", + "'package.json' has 'main' field 'index.js' that references '/node_modules/vue/index.js'.", + "File '/node_modules/vue/index.js' exists - use it as a name resolution result.", + "======== Module name 'vue' was successfully resolved to '/node_modules/vue/index.js' with Package ID 'vue/index.js@3.3.4'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/vue/jsx.d.ts", + "/node_modules/vue/dist/vue.d.ts" + ] + }, + "node16-cjs": { + "name": ".", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/vue/dist/vue.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/vue/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'vue' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist.", + "Loading module 'vue' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/vue/package.json'.", + "Entering conditional exports.", + "Saw non-matching condition 'import'.", + "Matched 'exports' condition 'require'.", + "Entering conditional exports.", + "Matched 'exports' condition 'types'.", + "Using 'exports' subpath '.' with target './dist/vue.d.ts'.", + "File '/node_modules/vue/dist/vue.d.ts' exists - use it as a name resolution result.", + "Resolved under condition 'types'.", + "Exiting conditional exports.", + "Resolved under condition 'require'.", + "Exiting conditional exports.", + "======== Module name 'vue' was successfully resolved to '/node_modules/vue/dist/vue.d.ts' with Package ID 'vue/dist/vue.d.ts@3.3.4'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/vue/index.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/vue/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'vue' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist.", + "Loading module 'vue' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/vue/package.json'.", + "Entering conditional exports.", + "Saw non-matching condition 'import'.", + "Matched 'exports' condition 'require'.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Matched 'exports' condition 'default'.", + "Using 'exports' subpath '.' with target './index.js'.", + "File name '/node_modules/vue/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/vue/index.ts' does not exist.", + "File '/node_modules/vue/index.tsx' does not exist.", + "Failed to resolve under condition 'default'.", + "Exiting conditional exports.", + "Failed to resolve under condition 'require'.", + "Exiting conditional exports.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'import'.", + "Matched 'exports' condition 'require'.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Matched 'exports' condition 'default'.", + "Using 'exports' subpath '.' with target './index.js'.", + "File name '/node_modules/vue/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/vue/index.js' exists - use it as a name resolution result.", + "Resolved under condition 'default'.", + "Exiting conditional exports.", + "Resolved under condition 'require'.", + "Exiting conditional exports.", + "======== Module name 'vue' was successfully resolved to '/node_modules/vue/index.js' with Package ID 'vue/index.js@3.3.4'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/vue/jsx.d.ts", + "/node_modules/vue/dist/vue.d.ts" + ] + }, + "node16-esm": { + "name": ".", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/vue/dist/vue.d.mts", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "extension", + "reasonFileName": "/node_modules/vue/dist/vue.d.mts" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'vue' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'vue' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Matched 'exports' condition 'import'.", + "Entering conditional exports.", + "Matched 'exports' condition 'types'.", + "Using 'exports' subpath '.' with target './dist/vue.d.mts'.", + "File '/node_modules/vue/dist/vue.d.mts' exists - use it as a name resolution result.", + "Resolved under condition 'types'.", + "Exiting conditional exports.", + "Resolved under condition 'import'.", + "Exiting conditional exports.", + "======== Module name 'vue' was successfully resolved to '/node_modules/vue/dist/vue.d.mts' with Package ID 'vue/dist/vue.d.mts@3.3.4'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/vue/index.mjs", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "extension", + "reasonFileName": "/node_modules/vue/index.mjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'vue' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'vue' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Matched 'exports' condition 'import'.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Matched 'exports' condition 'node'.", + "Using 'exports' subpath '.' with target './index.mjs'.", + "File name '/node_modules/vue/index.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/vue/index.mts' does not exist.", + "Failed to resolve under condition 'node'.", + "Matched 'exports' condition 'default'.", + "Using 'exports' subpath '.' with target './dist/vue.runtime.esm-bundler.js'.", + "File name '/node_modules/vue/dist/vue.runtime.esm-bundler.js' has a '.js' extension - stripping it.", + "File '/node_modules/vue/dist/vue.runtime.esm-bundler.ts' does not exist.", + "File '/node_modules/vue/dist/vue.runtime.esm-bundler.tsx' does not exist.", + "Failed to resolve under condition 'default'.", + "Exiting conditional exports.", + "Failed to resolve under condition 'import'.", + "Saw non-matching condition 'require'.", + "Exiting conditional exports.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Matched 'exports' condition 'import'.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Matched 'exports' condition 'node'.", + "Using 'exports' subpath '.' with target './index.mjs'.", + "File name '/node_modules/vue/index.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/vue/index.mjs' exists - use it as a name resolution result.", + "Resolved under condition 'node'.", + "Exiting conditional exports.", + "Resolved under condition 'import'.", + "Exiting conditional exports.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'vue' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'index.js' that references '/node_modules/vue/index.js'.", + "File '/node_modules/vue/index.js' exists - use it as a name resolution result.", + "File '/node_modules/vue/index.js' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/vue/index.js', target file types: TypeScript.", + "File name '/node_modules/vue/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/vue/index.ts' does not exist.", + "File '/node_modules/vue/index.tsx' does not exist.", + "File '/node_modules/vue/index.js.ts' does not exist.", + "File '/node_modules/vue/index.js.tsx' does not exist.", + "Directory '/node_modules/vue/index.js' does not exist, skipping all lookups in it.", + "======== Module name 'vue' was successfully resolved to '/node_modules/vue/index.mjs' with Package ID 'vue/index.mjs@3.3.4'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/vue/dist/vue.d.mts" + ] + }, + "bundler": { + "name": ".", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/vue/dist/vue.d.mts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'vue' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist.", + "Loading module 'vue' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/vue/package.json'.", + "Entering conditional exports.", + "Matched 'exports' condition 'import'.", + "Entering conditional exports.", + "Matched 'exports' condition 'types'.", + "Using 'exports' subpath '.' with target './dist/vue.d.mts'.", + "File '/node_modules/vue/dist/vue.d.mts' exists - use it as a name resolution result.", + "Resolved under condition 'types'.", + "Exiting conditional exports.", + "Resolved under condition 'import'.", + "Exiting conditional exports.", + "======== Module name 'vue' was successfully resolved to '/node_modules/vue/dist/vue.d.mts' with Package ID 'vue/dist/vue.d.mts@3.3.4'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/vue/dist/vue.runtime.esm-bundler.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'vue' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist.", + "Loading module 'vue' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/vue/package.json'.", + "Entering conditional exports.", + "Matched 'exports' condition 'import'.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Saw non-matching condition 'node'.", + "Matched 'exports' condition 'default'.", + "Using 'exports' subpath '.' with target './dist/vue.runtime.esm-bundler.js'.", + "File name '/node_modules/vue/dist/vue.runtime.esm-bundler.js' has a '.js' extension - stripping it.", + "File '/node_modules/vue/dist/vue.runtime.esm-bundler.ts' does not exist.", + "File '/node_modules/vue/dist/vue.runtime.esm-bundler.tsx' does not exist.", + "Failed to resolve under condition 'default'.", + "Exiting conditional exports.", + "Failed to resolve under condition 'import'.", + "Saw non-matching condition 'require'.", + "Exiting conditional exports.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Matched 'exports' condition 'import'.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Saw non-matching condition 'node'.", + "Matched 'exports' condition 'default'.", + "Using 'exports' subpath '.' with target './dist/vue.runtime.esm-bundler.js'.", + "File name '/node_modules/vue/dist/vue.runtime.esm-bundler.js' has a '.js' extension - stripping it.", + "File '/node_modules/vue/dist/vue.runtime.esm-bundler.js' exists - use it as a name resolution result.", + "Resolved under condition 'default'.", + "Exiting conditional exports.", + "Resolved under condition 'import'.", + "Exiting conditional exports.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'vue' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "File '/node_modules/vue.ts' does not exist.", + "File '/node_modules/vue.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'index.js' that references '/node_modules/vue/index.js'.", + "File '/node_modules/vue/index.js' exists - use it as a name resolution result.", + "File '/node_modules/vue/index.js' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/vue/index.js', target file types: TypeScript.", + "File name '/node_modules/vue/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/vue/index.ts' does not exist.", + "File '/node_modules/vue/index.tsx' does not exist.", + "File '/node_modules/vue/index.js.ts' does not exist.", + "File '/node_modules/vue/index.js.tsx' does not exist.", + "Directory '/node_modules/vue/index.js' does not exist, skipping all lookups in it.", + "File '/node_modules/vue/index.ts' does not exist.", + "File '/node_modules/vue/index.tsx' does not exist.", + "======== Module name 'vue' was successfully resolved to '/node_modules/vue/dist/vue.runtime.esm-bundler.js' with Package ID 'vue/dist/vue.runtime.esm-bundler.js@3.3.4'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/vue/jsx.d.ts", + "/node_modules/vue/dist/vue.d.mts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + }, + "./server-renderer": { + "subpath": "./server-renderer", + "resolutions": { + "node10": { + "name": "./server-renderer", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/vue/server-renderer/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'vue/server-renderer' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'vue/server-renderer' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/vue/server-renderer/package.json'.", + "File '/node_modules/vue/server-renderer.ts' does not exist.", + "File '/node_modules/vue/server-renderer.tsx' does not exist.", + "File '/node_modules/vue/server-renderer.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' does not have a 'types' field.", + "'package.json' has 'main' field 'index.js' that references '/node_modules/vue/server-renderer/index.js'.", + "File '/node_modules/vue/server-renderer/index.js' exists - use it as a name resolution result.", + "File '/node_modules/vue/server-renderer/index.js' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/vue/server-renderer/index.js', target file types: TypeScript, Declaration.", + "File name '/node_modules/vue/server-renderer/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/vue/server-renderer/index.ts' does not exist.", + "File '/node_modules/vue/server-renderer/index.tsx' does not exist.", + "File '/node_modules/vue/server-renderer/index.d.ts' exists - use it as a name resolution result.", + "======== Module name 'vue/server-renderer' was successfully resolved to '/node_modules/vue/server-renderer/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/vue/server-renderer/index.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'vue/server-renderer' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'vue/server-renderer' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/vue/server-renderer/package.json'.", + "File '/node_modules/vue/server-renderer.ts' does not exist.", + "File '/node_modules/vue/server-renderer.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'index.js' that references '/node_modules/vue/server-renderer/index.js'.", + "File '/node_modules/vue/server-renderer/index.js' exists - use it as a name resolution result.", + "File '/node_modules/vue/server-renderer/index.js' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/vue/server-renderer/index.js', target file types: TypeScript.", + "File name '/node_modules/vue/server-renderer/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/vue/server-renderer/index.ts' does not exist.", + "File '/node_modules/vue/server-renderer/index.tsx' does not exist.", + "File '/node_modules/vue/server-renderer/index.js.ts' does not exist.", + "File '/node_modules/vue/server-renderer/index.js.tsx' does not exist.", + "Directory '/node_modules/vue/server-renderer/index.js' does not exist, skipping all lookups in it.", + "File '/node_modules/vue/server-renderer/index.ts' does not exist.", + "File '/node_modules/vue/server-renderer/index.tsx' does not exist.", + "Loading module 'vue/server-renderer' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/vue/server-renderer/package.json' exists according to earlier cached lookups.", + "File '/node_modules/vue/server-renderer.js' does not exist.", + "File '/node_modules/vue/server-renderer.jsx' does not exist.", + "'package.json' has 'main' field 'index.js' that references '/node_modules/vue/server-renderer/index.js'.", + "File '/node_modules/vue/server-renderer/index.js' exists - use it as a name resolution result.", + "======== Module name 'vue/server-renderer' was successfully resolved to '/node_modules/vue/server-renderer/index.js'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/vue/server-renderer/index.d.ts" + ] + }, + "node16-cjs": { + "name": "./server-renderer", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/vue/server-renderer/index.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/vue/server-renderer/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'vue/server-renderer' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'vue/server-renderer' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/vue/server-renderer/package.json'.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'import'.", + "Matched 'exports' condition 'require'.", + "Entering conditional exports.", + "Matched 'exports' condition 'types'.", + "Using 'exports' subpath './server-renderer' with target './server-renderer/index.d.ts'.", + "File '/node_modules/vue/server-renderer/index.d.ts' exists - use it as a name resolution result.", + "Resolved under condition 'types'.", + "Exiting conditional exports.", + "Resolved under condition 'require'.", + "Exiting conditional exports.", + "======== Module name 'vue/server-renderer' was successfully resolved to '/node_modules/vue/server-renderer/index.d.ts' with Package ID 'vue/server-renderer/index.d.ts@3.3.4'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/vue/server-renderer/index.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/vue/server-renderer/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'vue/server-renderer' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'vue/server-renderer' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/vue/server-renderer/package.json'.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'import'.", + "Matched 'exports' condition 'require'.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Matched 'exports' condition 'default'.", + "Using 'exports' subpath './server-renderer' with target './server-renderer/index.js'.", + "File name '/node_modules/vue/server-renderer/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/vue/server-renderer/index.ts' does not exist.", + "File '/node_modules/vue/server-renderer/index.tsx' does not exist.", + "Failed to resolve under condition 'default'.", + "Exiting conditional exports.", + "Failed to resolve under condition 'require'.", + "Exiting conditional exports.", + "Export specifier './server-renderer' does not exist in package.json scope at path '/node_modules/vue'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/vue/server-renderer/package.json' exists according to earlier cached lookups.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'import'.", + "Matched 'exports' condition 'require'.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Matched 'exports' condition 'default'.", + "Using 'exports' subpath './server-renderer' with target './server-renderer/index.js'.", + "File name '/node_modules/vue/server-renderer/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/vue/server-renderer/index.js' exists - use it as a name resolution result.", + "Resolved under condition 'default'.", + "Exiting conditional exports.", + "Resolved under condition 'require'.", + "Exiting conditional exports.", + "======== Module name 'vue/server-renderer' was successfully resolved to '/node_modules/vue/server-renderer/index.js' with Package ID 'vue/server-renderer/index.js@3.3.4'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/vue/server-renderer/index.d.ts" + ] + }, + "node16-esm": { + "name": "./server-renderer", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/vue/server-renderer/index.d.mts", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "extension", + "reasonFileName": "/node_modules/vue/server-renderer/index.d.mts" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'vue/server-renderer' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'vue/server-renderer' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/vue/server-renderer/package.json' exists according to earlier cached lookups.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Matched 'exports' condition 'import'.", + "Entering conditional exports.", + "Matched 'exports' condition 'types'.", + "Using 'exports' subpath './server-renderer' with target './server-renderer/index.d.mts'.", + "File '/node_modules/vue/server-renderer/index.d.mts' exists - use it as a name resolution result.", + "Resolved under condition 'types'.", + "Exiting conditional exports.", + "Resolved under condition 'import'.", + "Exiting conditional exports.", + "======== Module name 'vue/server-renderer' was successfully resolved to '/node_modules/vue/server-renderer/index.d.mts' with Package ID 'vue/server-renderer/index.d.mts@3.3.4'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/vue/server-renderer/index.mjs", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "extension", + "reasonFileName": "/node_modules/vue/server-renderer/index.mjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'vue/server-renderer' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'vue/server-renderer' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/vue/server-renderer/package.json' exists according to earlier cached lookups.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Matched 'exports' condition 'import'.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Matched 'exports' condition 'default'.", + "Using 'exports' subpath './server-renderer' with target './server-renderer/index.mjs'.", + "File name '/node_modules/vue/server-renderer/index.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/vue/server-renderer/index.mts' does not exist.", + "Failed to resolve under condition 'default'.", + "Exiting conditional exports.", + "Failed to resolve under condition 'import'.", + "Saw non-matching condition 'require'.", + "Exiting conditional exports.", + "Export specifier './server-renderer' does not exist in package.json scope at path '/node_modules/vue'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/vue/server-renderer/package.json' exists according to earlier cached lookups.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Matched 'exports' condition 'import'.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Matched 'exports' condition 'default'.", + "Using 'exports' subpath './server-renderer' with target './server-renderer/index.mjs'.", + "File name '/node_modules/vue/server-renderer/index.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/vue/server-renderer/index.mjs' exists - use it as a name resolution result.", + "Resolved under condition 'default'.", + "Exiting conditional exports.", + "Resolved under condition 'import'.", + "Exiting conditional exports.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'vue/server-renderer' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/vue/server-renderer/package.json' exists according to earlier cached lookups.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'index.js' that references '/node_modules/vue/server-renderer/index.js'.", + "File '/node_modules/vue/server-renderer/index.js' exists - use it as a name resolution result.", + "File '/node_modules/vue/server-renderer/index.js' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/vue/server-renderer/index.js', target file types: TypeScript.", + "File name '/node_modules/vue/server-renderer/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/vue/server-renderer/index.ts' does not exist.", + "File '/node_modules/vue/server-renderer/index.tsx' does not exist.", + "File '/node_modules/vue/server-renderer/index.js.ts' does not exist.", + "File '/node_modules/vue/server-renderer/index.js.tsx' does not exist.", + "Directory '/node_modules/vue/server-renderer/index.js' does not exist, skipping all lookups in it.", + "======== Module name 'vue/server-renderer' was successfully resolved to '/node_modules/vue/server-renderer/index.mjs' with Package ID 'vue/server-renderer/index.mjs@3.3.4'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/vue/server-renderer/index.d.mts" + ] + }, + "bundler": { + "name": "./server-renderer", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/vue/server-renderer/index.d.mts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'vue/server-renderer' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'vue/server-renderer' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/vue/server-renderer/package.json'.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Matched 'exports' condition 'import'.", + "Entering conditional exports.", + "Matched 'exports' condition 'types'.", + "Using 'exports' subpath './server-renderer' with target './server-renderer/index.d.mts'.", + "File '/node_modules/vue/server-renderer/index.d.mts' exists - use it as a name resolution result.", + "Resolved under condition 'types'.", + "Exiting conditional exports.", + "Resolved under condition 'import'.", + "Exiting conditional exports.", + "======== Module name 'vue/server-renderer' was successfully resolved to '/node_modules/vue/server-renderer/index.d.mts' with Package ID 'vue/server-renderer/index.d.mts@3.3.4'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/vue/server-renderer/index.mjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'vue/server-renderer' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'vue/server-renderer' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/vue/server-renderer/package.json'.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Matched 'exports' condition 'import'.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Matched 'exports' condition 'default'.", + "Using 'exports' subpath './server-renderer' with target './server-renderer/index.mjs'.", + "File name '/node_modules/vue/server-renderer/index.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/vue/server-renderer/index.mts' does not exist.", + "Failed to resolve under condition 'default'.", + "Exiting conditional exports.", + "Failed to resolve under condition 'import'.", + "Saw non-matching condition 'require'.", + "Exiting conditional exports.", + "Export specifier './server-renderer' does not exist in package.json scope at path '/node_modules/vue'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/vue/server-renderer/package.json' exists according to earlier cached lookups.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Matched 'exports' condition 'import'.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Matched 'exports' condition 'default'.", + "Using 'exports' subpath './server-renderer' with target './server-renderer/index.mjs'.", + "File name '/node_modules/vue/server-renderer/index.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/vue/server-renderer/index.mjs' exists - use it as a name resolution result.", + "Resolved under condition 'default'.", + "Exiting conditional exports.", + "Resolved under condition 'import'.", + "Exiting conditional exports.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'vue/server-renderer' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/vue/server-renderer/package.json' exists according to earlier cached lookups.", + "File '/node_modules/vue/server-renderer.ts' does not exist.", + "File '/node_modules/vue/server-renderer.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'index.js' that references '/node_modules/vue/server-renderer/index.js'.", + "File '/node_modules/vue/server-renderer/index.js' exists - use it as a name resolution result.", + "File '/node_modules/vue/server-renderer/index.js' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/vue/server-renderer/index.js', target file types: TypeScript.", + "File name '/node_modules/vue/server-renderer/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/vue/server-renderer/index.ts' does not exist.", + "File '/node_modules/vue/server-renderer/index.tsx' does not exist.", + "File '/node_modules/vue/server-renderer/index.js.ts' does not exist.", + "File '/node_modules/vue/server-renderer/index.js.tsx' does not exist.", + "Directory '/node_modules/vue/server-renderer/index.js' does not exist, skipping all lookups in it.", + "File '/node_modules/vue/server-renderer/index.ts' does not exist.", + "File '/node_modules/vue/server-renderer/index.tsx' does not exist.", + "======== Module name 'vue/server-renderer' was successfully resolved to '/node_modules/vue/server-renderer/index.mjs' with Package ID 'vue/server-renderer/index.mjs@3.3.4'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/vue/server-renderer/index.d.mts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + }, + "./compiler-sfc": { + "subpath": "./compiler-sfc", + "resolutions": { + "node10": { + "name": "./compiler-sfc", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/vue/compiler-sfc/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'vue/compiler-sfc' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'vue/compiler-sfc' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/vue/compiler-sfc/package.json'.", + "File '/node_modules/vue/compiler-sfc.ts' does not exist.", + "File '/node_modules/vue/compiler-sfc.tsx' does not exist.", + "File '/node_modules/vue/compiler-sfc.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' does not have a 'types' field.", + "'package.json' has 'main' field 'index.js' that references '/node_modules/vue/compiler-sfc/index.js'.", + "File '/node_modules/vue/compiler-sfc/index.js' exists - use it as a name resolution result.", + "File '/node_modules/vue/compiler-sfc/index.js' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/vue/compiler-sfc/index.js', target file types: TypeScript, Declaration.", + "File name '/node_modules/vue/compiler-sfc/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/vue/compiler-sfc/index.ts' does not exist.", + "File '/node_modules/vue/compiler-sfc/index.tsx' does not exist.", + "File '/node_modules/vue/compiler-sfc/index.d.ts' exists - use it as a name resolution result.", + "======== Module name 'vue/compiler-sfc' was successfully resolved to '/node_modules/vue/compiler-sfc/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/vue/compiler-sfc/index.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'vue/compiler-sfc' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'vue/compiler-sfc' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/vue/compiler-sfc/package.json'.", + "File '/node_modules/vue/compiler-sfc.ts' does not exist.", + "File '/node_modules/vue/compiler-sfc.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'index.js' that references '/node_modules/vue/compiler-sfc/index.js'.", + "File '/node_modules/vue/compiler-sfc/index.js' exists - use it as a name resolution result.", + "File '/node_modules/vue/compiler-sfc/index.js' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/vue/compiler-sfc/index.js', target file types: TypeScript.", + "File name '/node_modules/vue/compiler-sfc/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/vue/compiler-sfc/index.ts' does not exist.", + "File '/node_modules/vue/compiler-sfc/index.tsx' does not exist.", + "File '/node_modules/vue/compiler-sfc/index.js.ts' does not exist.", + "File '/node_modules/vue/compiler-sfc/index.js.tsx' does not exist.", + "Directory '/node_modules/vue/compiler-sfc/index.js' does not exist, skipping all lookups in it.", + "File '/node_modules/vue/compiler-sfc/index.ts' does not exist.", + "File '/node_modules/vue/compiler-sfc/index.tsx' does not exist.", + "Loading module 'vue/compiler-sfc' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/vue/compiler-sfc/package.json' exists according to earlier cached lookups.", + "File '/node_modules/vue/compiler-sfc.js' does not exist.", + "File '/node_modules/vue/compiler-sfc.jsx' does not exist.", + "'package.json' has 'main' field 'index.js' that references '/node_modules/vue/compiler-sfc/index.js'.", + "File '/node_modules/vue/compiler-sfc/index.js' exists - use it as a name resolution result.", + "======== Module name 'vue/compiler-sfc' was successfully resolved to '/node_modules/vue/compiler-sfc/index.js'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/vue/compiler-sfc/index.d.ts" + ] + }, + "node16-cjs": { + "name": "./compiler-sfc", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/vue/compiler-sfc/index.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/vue/compiler-sfc/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'vue/compiler-sfc' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'vue/compiler-sfc' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/vue/compiler-sfc/package.json'.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'import'.", + "Matched 'exports' condition 'require'.", + "Entering conditional exports.", + "Matched 'exports' condition 'types'.", + "Using 'exports' subpath './compiler-sfc' with target './compiler-sfc/index.d.ts'.", + "File '/node_modules/vue/compiler-sfc/index.d.ts' exists - use it as a name resolution result.", + "Resolved under condition 'types'.", + "Exiting conditional exports.", + "Resolved under condition 'require'.", + "Exiting conditional exports.", + "======== Module name 'vue/compiler-sfc' was successfully resolved to '/node_modules/vue/compiler-sfc/index.d.ts' with Package ID 'vue/compiler-sfc/index.d.ts@3.3.4'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/vue/compiler-sfc/index.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/vue/compiler-sfc/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'vue/compiler-sfc' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'vue/compiler-sfc' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/vue/compiler-sfc/package.json'.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'import'.", + "Matched 'exports' condition 'require'.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Matched 'exports' condition 'default'.", + "Using 'exports' subpath './compiler-sfc' with target './compiler-sfc/index.js'.", + "File name '/node_modules/vue/compiler-sfc/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/vue/compiler-sfc/index.ts' does not exist.", + "File '/node_modules/vue/compiler-sfc/index.tsx' does not exist.", + "Failed to resolve under condition 'default'.", + "Exiting conditional exports.", + "Failed to resolve under condition 'require'.", + "Exiting conditional exports.", + "Export specifier './compiler-sfc' does not exist in package.json scope at path '/node_modules/vue'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/vue/compiler-sfc/package.json' exists according to earlier cached lookups.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'import'.", + "Matched 'exports' condition 'require'.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Matched 'exports' condition 'default'.", + "Using 'exports' subpath './compiler-sfc' with target './compiler-sfc/index.js'.", + "File name '/node_modules/vue/compiler-sfc/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/vue/compiler-sfc/index.js' exists - use it as a name resolution result.", + "Resolved under condition 'default'.", + "Exiting conditional exports.", + "Resolved under condition 'require'.", + "Exiting conditional exports.", + "======== Module name 'vue/compiler-sfc' was successfully resolved to '/node_modules/vue/compiler-sfc/index.js' with Package ID 'vue/compiler-sfc/index.js@3.3.4'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/vue/compiler-sfc/index.d.ts" + ] + }, + "node16-esm": { + "name": "./compiler-sfc", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/vue/compiler-sfc/index.d.mts", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "extension", + "reasonFileName": "/node_modules/vue/compiler-sfc/index.d.mts" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'vue/compiler-sfc' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'vue/compiler-sfc' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/vue/compiler-sfc/package.json' exists according to earlier cached lookups.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Matched 'exports' condition 'import'.", + "Entering conditional exports.", + "Matched 'exports' condition 'types'.", + "Using 'exports' subpath './compiler-sfc' with target './compiler-sfc/index.d.mts'.", + "File '/node_modules/vue/compiler-sfc/index.d.mts' exists - use it as a name resolution result.", + "Resolved under condition 'types'.", + "Exiting conditional exports.", + "Resolved under condition 'import'.", + "Exiting conditional exports.", + "======== Module name 'vue/compiler-sfc' was successfully resolved to '/node_modules/vue/compiler-sfc/index.d.mts' with Package ID 'vue/compiler-sfc/index.d.mts@3.3.4'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/vue/compiler-sfc/index.mjs", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "extension", + "reasonFileName": "/node_modules/vue/compiler-sfc/index.mjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'vue/compiler-sfc' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'vue/compiler-sfc' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/vue/compiler-sfc/package.json' exists according to earlier cached lookups.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Matched 'exports' condition 'import'.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Matched 'exports' condition 'default'.", + "Using 'exports' subpath './compiler-sfc' with target './compiler-sfc/index.mjs'.", + "File name '/node_modules/vue/compiler-sfc/index.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/vue/compiler-sfc/index.mts' does not exist.", + "Failed to resolve under condition 'default'.", + "Exiting conditional exports.", + "Failed to resolve under condition 'import'.", + "Saw non-matching condition 'require'.", + "Exiting conditional exports.", + "Export specifier './compiler-sfc' does not exist in package.json scope at path '/node_modules/vue'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/vue/compiler-sfc/package.json' exists according to earlier cached lookups.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Matched 'exports' condition 'import'.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Matched 'exports' condition 'default'.", + "Using 'exports' subpath './compiler-sfc' with target './compiler-sfc/index.mjs'.", + "File name '/node_modules/vue/compiler-sfc/index.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/vue/compiler-sfc/index.mjs' exists - use it as a name resolution result.", + "Resolved under condition 'default'.", + "Exiting conditional exports.", + "Resolved under condition 'import'.", + "Exiting conditional exports.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'vue/compiler-sfc' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/vue/compiler-sfc/package.json' exists according to earlier cached lookups.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'index.js' that references '/node_modules/vue/compiler-sfc/index.js'.", + "File '/node_modules/vue/compiler-sfc/index.js' exists - use it as a name resolution result.", + "File '/node_modules/vue/compiler-sfc/index.js' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/vue/compiler-sfc/index.js', target file types: TypeScript.", + "File name '/node_modules/vue/compiler-sfc/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/vue/compiler-sfc/index.ts' does not exist.", + "File '/node_modules/vue/compiler-sfc/index.tsx' does not exist.", + "File '/node_modules/vue/compiler-sfc/index.js.ts' does not exist.", + "File '/node_modules/vue/compiler-sfc/index.js.tsx' does not exist.", + "Directory '/node_modules/vue/compiler-sfc/index.js' does not exist, skipping all lookups in it.", + "======== Module name 'vue/compiler-sfc' was successfully resolved to '/node_modules/vue/compiler-sfc/index.mjs' with Package ID 'vue/compiler-sfc/index.mjs@3.3.4'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/vue/compiler-sfc/index.d.mts" + ] + }, + "bundler": { + "name": "./compiler-sfc", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/vue/compiler-sfc/index.d.mts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'vue/compiler-sfc' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'vue/compiler-sfc' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/vue/compiler-sfc/package.json'.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Matched 'exports' condition 'import'.", + "Entering conditional exports.", + "Matched 'exports' condition 'types'.", + "Using 'exports' subpath './compiler-sfc' with target './compiler-sfc/index.d.mts'.", + "File '/node_modules/vue/compiler-sfc/index.d.mts' exists - use it as a name resolution result.", + "Resolved under condition 'types'.", + "Exiting conditional exports.", + "Resolved under condition 'import'.", + "Exiting conditional exports.", + "======== Module name 'vue/compiler-sfc' was successfully resolved to '/node_modules/vue/compiler-sfc/index.d.mts' with Package ID 'vue/compiler-sfc/index.d.mts@3.3.4'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/vue/compiler-sfc/index.mjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'vue/compiler-sfc' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'vue/compiler-sfc' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/vue/compiler-sfc/package.json'.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Matched 'exports' condition 'import'.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Matched 'exports' condition 'default'.", + "Using 'exports' subpath './compiler-sfc' with target './compiler-sfc/index.mjs'.", + "File name '/node_modules/vue/compiler-sfc/index.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/vue/compiler-sfc/index.mts' does not exist.", + "Failed to resolve under condition 'default'.", + "Exiting conditional exports.", + "Failed to resolve under condition 'import'.", + "Saw non-matching condition 'require'.", + "Exiting conditional exports.", + "Export specifier './compiler-sfc' does not exist in package.json scope at path '/node_modules/vue'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/vue/compiler-sfc/package.json' exists according to earlier cached lookups.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Matched 'exports' condition 'import'.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Matched 'exports' condition 'default'.", + "Using 'exports' subpath './compiler-sfc' with target './compiler-sfc/index.mjs'.", + "File name '/node_modules/vue/compiler-sfc/index.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/vue/compiler-sfc/index.mjs' exists - use it as a name resolution result.", + "Resolved under condition 'default'.", + "Exiting conditional exports.", + "Resolved under condition 'import'.", + "Exiting conditional exports.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'vue/compiler-sfc' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/vue/compiler-sfc/package.json' exists according to earlier cached lookups.", + "File '/node_modules/vue/compiler-sfc.ts' does not exist.", + "File '/node_modules/vue/compiler-sfc.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'index.js' that references '/node_modules/vue/compiler-sfc/index.js'.", + "File '/node_modules/vue/compiler-sfc/index.js' exists - use it as a name resolution result.", + "File '/node_modules/vue/compiler-sfc/index.js' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/vue/compiler-sfc/index.js', target file types: TypeScript.", + "File name '/node_modules/vue/compiler-sfc/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/vue/compiler-sfc/index.ts' does not exist.", + "File '/node_modules/vue/compiler-sfc/index.tsx' does not exist.", + "File '/node_modules/vue/compiler-sfc/index.js.ts' does not exist.", + "File '/node_modules/vue/compiler-sfc/index.js.tsx' does not exist.", + "Directory '/node_modules/vue/compiler-sfc/index.js' does not exist, skipping all lookups in it.", + "File '/node_modules/vue/compiler-sfc/index.ts' does not exist.", + "File '/node_modules/vue/compiler-sfc/index.tsx' does not exist.", + "======== Module name 'vue/compiler-sfc' was successfully resolved to '/node_modules/vue/compiler-sfc/index.mjs' with Package ID 'vue/compiler-sfc/index.mjs@3.3.4'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/vue/compiler-sfc/index.d.mts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + }, + "./jsx-runtime": { + "subpath": "./jsx-runtime", + "resolutions": { + "node10": { + "name": "./jsx-runtime", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/vue/jsx-runtime/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'vue/jsx-runtime' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'vue/jsx-runtime' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/vue/jsx-runtime/package.json'.", + "File '/node_modules/vue/jsx-runtime.ts' does not exist.", + "File '/node_modules/vue/jsx-runtime.tsx' does not exist.", + "File '/node_modules/vue/jsx-runtime.d.ts' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'index.d.ts' that references '/node_modules/vue/jsx-runtime/index.d.ts'.", + "File '/node_modules/vue/jsx-runtime/index.d.ts' exists - use it as a name resolution result.", + "======== Module name 'vue/jsx-runtime' was successfully resolved to '/node_modules/vue/jsx-runtime/index.d.ts'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/vue/jsx-runtime/index.js", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'vue/jsx-runtime' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'vue/jsx-runtime' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/vue/jsx-runtime/package.json'.", + "File '/node_modules/vue/jsx-runtime.ts' does not exist.", + "File '/node_modules/vue/jsx-runtime.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'index.js' that references '/node_modules/vue/jsx-runtime/index.js'.", + "File '/node_modules/vue/jsx-runtime/index.js' exists - use it as a name resolution result.", + "File '/node_modules/vue/jsx-runtime/index.js' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/vue/jsx-runtime/index.js', target file types: TypeScript.", + "File name '/node_modules/vue/jsx-runtime/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/vue/jsx-runtime/index.ts' does not exist.", + "File '/node_modules/vue/jsx-runtime/index.tsx' does not exist.", + "File '/node_modules/vue/jsx-runtime/index.js.ts' does not exist.", + "File '/node_modules/vue/jsx-runtime/index.js.tsx' does not exist.", + "Directory '/node_modules/vue/jsx-runtime/index.js' does not exist, skipping all lookups in it.", + "File '/node_modules/vue/jsx-runtime/index.ts' does not exist.", + "File '/node_modules/vue/jsx-runtime/index.tsx' does not exist.", + "Loading module 'vue/jsx-runtime' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/vue/jsx-runtime/package.json' exists according to earlier cached lookups.", + "File '/node_modules/vue/jsx-runtime.js' does not exist.", + "File '/node_modules/vue/jsx-runtime.jsx' does not exist.", + "'package.json' has 'main' field 'index.js' that references '/node_modules/vue/jsx-runtime/index.js'.", + "File '/node_modules/vue/jsx-runtime/index.js' exists - use it as a name resolution result.", + "======== Module name 'vue/jsx-runtime' was successfully resolved to '/node_modules/vue/jsx-runtime/index.js'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/vue/jsx-runtime/index.d.ts" + ] + }, + "node16-cjs": { + "name": "./jsx-runtime", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/vue/jsx-runtime/index.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/vue/jsx-runtime/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'vue/jsx-runtime' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'vue/jsx-runtime' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/vue/jsx-runtime/package.json'.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Matched 'exports' condition 'types'.", + "Using 'exports' subpath './jsx-runtime' with target './jsx-runtime/index.d.ts'.", + "File '/node_modules/vue/jsx-runtime/index.d.ts' exists - use it as a name resolution result.", + "Resolved under condition 'types'.", + "Exiting conditional exports.", + "======== Module name 'vue/jsx-runtime' was successfully resolved to '/node_modules/vue/jsx-runtime/index.d.ts' with Package ID 'vue/jsx-runtime/index.d.ts@3.3.4'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/vue/jsx-runtime/index.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/vue/jsx-runtime/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'vue/jsx-runtime' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'vue/jsx-runtime' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/vue/jsx-runtime/package.json'.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Saw non-matching condition 'import'.", + "Matched 'exports' condition 'require'.", + "Using 'exports' subpath './jsx-runtime' with target './jsx-runtime/index.js'.", + "File name '/node_modules/vue/jsx-runtime/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/vue/jsx-runtime/index.ts' does not exist.", + "File '/node_modules/vue/jsx-runtime/index.tsx' does not exist.", + "Failed to resolve under condition 'require'.", + "Exiting conditional exports.", + "Export specifier './jsx-runtime' does not exist in package.json scope at path '/node_modules/vue'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/vue/jsx-runtime/package.json' exists according to earlier cached lookups.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Saw non-matching condition 'import'.", + "Matched 'exports' condition 'require'.", + "Using 'exports' subpath './jsx-runtime' with target './jsx-runtime/index.js'.", + "File name '/node_modules/vue/jsx-runtime/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/vue/jsx-runtime/index.js' exists - use it as a name resolution result.", + "Resolved under condition 'require'.", + "Exiting conditional exports.", + "======== Module name 'vue/jsx-runtime' was successfully resolved to '/node_modules/vue/jsx-runtime/index.js' with Package ID 'vue/jsx-runtime/index.js@3.3.4'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/vue/jsx-runtime/index.d.ts" + ] + }, + "node16-esm": { + "name": "./jsx-runtime", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/vue/jsx-runtime/index.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/vue/jsx-runtime/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'vue/jsx-runtime' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'vue/jsx-runtime' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/vue/jsx-runtime/package.json' exists according to earlier cached lookups.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Matched 'exports' condition 'types'.", + "Using 'exports' subpath './jsx-runtime' with target './jsx-runtime/index.d.ts'.", + "File '/node_modules/vue/jsx-runtime/index.d.ts' exists - use it as a name resolution result.", + "Resolved under condition 'types'.", + "Exiting conditional exports.", + "======== Module name 'vue/jsx-runtime' was successfully resolved to '/node_modules/vue/jsx-runtime/index.d.ts' with Package ID 'vue/jsx-runtime/index.d.ts@3.3.4'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/vue/jsx-runtime/index.mjs", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "extension", + "reasonFileName": "/node_modules/vue/jsx-runtime/index.mjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'vue/jsx-runtime' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'vue/jsx-runtime' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/vue/jsx-runtime/package.json' exists according to earlier cached lookups.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Matched 'exports' condition 'import'.", + "Using 'exports' subpath './jsx-runtime' with target './jsx-runtime/index.mjs'.", + "File name '/node_modules/vue/jsx-runtime/index.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/vue/jsx-runtime/index.mts' does not exist.", + "Failed to resolve under condition 'import'.", + "Saw non-matching condition 'require'.", + "Exiting conditional exports.", + "Export specifier './jsx-runtime' does not exist in package.json scope at path '/node_modules/vue'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/vue/jsx-runtime/package.json' exists according to earlier cached lookups.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Matched 'exports' condition 'import'.", + "Using 'exports' subpath './jsx-runtime' with target './jsx-runtime/index.mjs'.", + "File name '/node_modules/vue/jsx-runtime/index.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/vue/jsx-runtime/index.mjs' exists - use it as a name resolution result.", + "Resolved under condition 'import'.", + "Exiting conditional exports.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'vue/jsx-runtime' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/vue/jsx-runtime/package.json' exists according to earlier cached lookups.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'index.js' that references '/node_modules/vue/jsx-runtime/index.js'.", + "File '/node_modules/vue/jsx-runtime/index.js' exists - use it as a name resolution result.", + "File '/node_modules/vue/jsx-runtime/index.js' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/vue/jsx-runtime/index.js', target file types: TypeScript.", + "File name '/node_modules/vue/jsx-runtime/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/vue/jsx-runtime/index.ts' does not exist.", + "File '/node_modules/vue/jsx-runtime/index.tsx' does not exist.", + "File '/node_modules/vue/jsx-runtime/index.js.ts' does not exist.", + "File '/node_modules/vue/jsx-runtime/index.js.tsx' does not exist.", + "Directory '/node_modules/vue/jsx-runtime/index.js' does not exist, skipping all lookups in it.", + "======== Module name 'vue/jsx-runtime' was successfully resolved to '/node_modules/vue/jsx-runtime/index.mjs' with Package ID 'vue/jsx-runtime/index.mjs@3.3.4'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/vue/jsx-runtime/index.d.ts" + ] + }, + "bundler": { + "name": "./jsx-runtime", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/vue/jsx-runtime/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'vue/jsx-runtime' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'vue/jsx-runtime' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "Found 'package.json' at '/node_modules/vue/jsx-runtime/package.json'.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Matched 'exports' condition 'types'.", + "Using 'exports' subpath './jsx-runtime' with target './jsx-runtime/index.d.ts'.", + "File '/node_modules/vue/jsx-runtime/index.d.ts' exists - use it as a name resolution result.", + "Resolved under condition 'types'.", + "Exiting conditional exports.", + "======== Module name 'vue/jsx-runtime' was successfully resolved to '/node_modules/vue/jsx-runtime/index.d.ts' with Package ID 'vue/jsx-runtime/index.d.ts@3.3.4'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/vue/jsx-runtime/index.mjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'vue/jsx-runtime' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'vue/jsx-runtime' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "Found 'package.json' at '/node_modules/vue/jsx-runtime/package.json'.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Matched 'exports' condition 'import'.", + "Using 'exports' subpath './jsx-runtime' with target './jsx-runtime/index.mjs'.", + "File name '/node_modules/vue/jsx-runtime/index.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/vue/jsx-runtime/index.mts' does not exist.", + "Failed to resolve under condition 'import'.", + "Saw non-matching condition 'require'.", + "Exiting conditional exports.", + "Export specifier './jsx-runtime' does not exist in package.json scope at path '/node_modules/vue'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/vue/jsx-runtime/package.json' exists according to earlier cached lookups.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Matched 'exports' condition 'import'.", + "Using 'exports' subpath './jsx-runtime' with target './jsx-runtime/index.mjs'.", + "File name '/node_modules/vue/jsx-runtime/index.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/vue/jsx-runtime/index.mjs' exists - use it as a name resolution result.", + "Resolved under condition 'import'.", + "Exiting conditional exports.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'vue/jsx-runtime' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/vue/jsx-runtime/package.json' exists according to earlier cached lookups.", + "File '/node_modules/vue/jsx-runtime.ts' does not exist.", + "File '/node_modules/vue/jsx-runtime.tsx' does not exist.", + "'package.json' does not have a 'typesVersions' field.", + "'package.json' has 'main' field 'index.js' that references '/node_modules/vue/jsx-runtime/index.js'.", + "File '/node_modules/vue/jsx-runtime/index.js' exists - use it as a name resolution result.", + "File '/node_modules/vue/jsx-runtime/index.js' has an unsupported extension, so skipping it.", + "Loading module as file / folder, candidate module location '/node_modules/vue/jsx-runtime/index.js', target file types: TypeScript.", + "File name '/node_modules/vue/jsx-runtime/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/vue/jsx-runtime/index.ts' does not exist.", + "File '/node_modules/vue/jsx-runtime/index.tsx' does not exist.", + "File '/node_modules/vue/jsx-runtime/index.js.ts' does not exist.", + "File '/node_modules/vue/jsx-runtime/index.js.tsx' does not exist.", + "Directory '/node_modules/vue/jsx-runtime/index.js' does not exist, skipping all lookups in it.", + "File '/node_modules/vue/jsx-runtime/index.ts' does not exist.", + "File '/node_modules/vue/jsx-runtime/index.tsx' does not exist.", + "======== Module name 'vue/jsx-runtime' was successfully resolved to '/node_modules/vue/jsx-runtime/index.mjs' with Package ID 'vue/jsx-runtime/index.mjs@3.3.4'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/vue/jsx-runtime/index.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + }, + "./jsx-dev-runtime": { + "subpath": "./jsx-dev-runtime", + "resolutions": { + "node10": { + "name": "./jsx-dev-runtime", + "resolutionKind": "node10" + }, + "node16-cjs": { + "name": "./jsx-dev-runtime", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/vue/jsx-runtime/index.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/vue/jsx-runtime/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'vue/jsx-dev-runtime' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'vue/jsx-dev-runtime' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Matched 'exports' condition 'types'.", + "Using 'exports' subpath './jsx-dev-runtime' with target './jsx-runtime/index.d.ts'.", + "File '/node_modules/vue/jsx-runtime/index.d.ts' exists - use it as a name resolution result.", + "Resolved under condition 'types'.", + "Exiting conditional exports.", + "======== Module name 'vue/jsx-dev-runtime' was successfully resolved to '/node_modules/vue/jsx-runtime/index.d.ts' with Package ID 'vue/jsx-runtime/index.d.ts@3.3.4'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/vue/jsx-runtime/index.js", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/vue/jsx-runtime/package.json" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'vue/jsx-dev-runtime' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'vue/jsx-dev-runtime' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Saw non-matching condition 'import'.", + "Matched 'exports' condition 'require'.", + "Using 'exports' subpath './jsx-dev-runtime' with target './jsx-runtime/index.js'.", + "File name '/node_modules/vue/jsx-runtime/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/vue/jsx-runtime/index.ts' does not exist.", + "File '/node_modules/vue/jsx-runtime/index.tsx' does not exist.", + "Failed to resolve under condition 'require'.", + "Exiting conditional exports.", + "Export specifier './jsx-dev-runtime' does not exist in package.json scope at path '/node_modules/vue'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Saw non-matching condition 'import'.", + "Matched 'exports' condition 'require'.", + "Using 'exports' subpath './jsx-dev-runtime' with target './jsx-runtime/index.js'.", + "File name '/node_modules/vue/jsx-runtime/index.js' has a '.js' extension - stripping it.", + "File '/node_modules/vue/jsx-runtime/index.js' exists - use it as a name resolution result.", + "Resolved under condition 'require'.", + "Exiting conditional exports.", + "======== Module name 'vue/jsx-dev-runtime' was successfully resolved to '/node_modules/vue/jsx-runtime/index.js' with Package ID 'vue/jsx-runtime/index.js@3.3.4'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/vue/jsx-runtime/index.d.ts" + ] + }, + "node16-esm": { + "name": "./jsx-dev-runtime", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/vue/jsx-runtime/index.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/vue/jsx-runtime/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'vue/jsx-dev-runtime' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'vue/jsx-dev-runtime' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Matched 'exports' condition 'types'.", + "Using 'exports' subpath './jsx-dev-runtime' with target './jsx-runtime/index.d.ts'.", + "File '/node_modules/vue/jsx-runtime/index.d.ts' exists - use it as a name resolution result.", + "Resolved under condition 'types'.", + "Exiting conditional exports.", + "======== Module name 'vue/jsx-dev-runtime' was successfully resolved to '/node_modules/vue/jsx-runtime/index.d.ts' with Package ID 'vue/jsx-runtime/index.d.ts@3.3.4'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/vue/jsx-runtime/index.mjs", + "moduleKind": { + "detectedKind": 99, + "detectedReason": "extension", + "reasonFileName": "/node_modules/vue/jsx-runtime/index.mjs" + }, + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'vue/jsx-dev-runtime' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'vue/jsx-dev-runtime' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Matched 'exports' condition 'import'.", + "Using 'exports' subpath './jsx-dev-runtime' with target './jsx-runtime/index.mjs'.", + "File name '/node_modules/vue/jsx-runtime/index.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/vue/jsx-runtime/index.mts' does not exist.", + "Failed to resolve under condition 'import'.", + "Saw non-matching condition 'require'.", + "Exiting conditional exports.", + "Export specifier './jsx-dev-runtime' does not exist in package.json scope at path '/node_modules/vue'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Matched 'exports' condition 'import'.", + "Using 'exports' subpath './jsx-dev-runtime' with target './jsx-runtime/index.mjs'.", + "File name '/node_modules/vue/jsx-runtime/index.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/vue/jsx-runtime/index.mjs' exists - use it as a name resolution result.", + "Resolved under condition 'import'.", + "Exiting conditional exports.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'vue/jsx-dev-runtime' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "'package.json' has 'main' field 'index.js' that references '/node_modules/vue/jsx-dev-runtime/index.js'.", + "Loading module as file / folder, candidate module location '/node_modules/vue/jsx-dev-runtime/index.js', target file types: TypeScript.", + "File name '/node_modules/vue/jsx-dev-runtime/index.js' has a '.js' extension - stripping it.", + "======== Module name 'vue/jsx-dev-runtime' was successfully resolved to '/node_modules/vue/jsx-runtime/index.mjs' with Package ID 'vue/jsx-runtime/index.mjs@3.3.4'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/vue/jsx-runtime/index.d.ts" + ] + }, + "bundler": { + "name": "./jsx-dev-runtime", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/vue/jsx-runtime/index.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'vue/jsx-dev-runtime' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'vue/jsx-dev-runtime' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Matched 'exports' condition 'types'.", + "Using 'exports' subpath './jsx-dev-runtime' with target './jsx-runtime/index.d.ts'.", + "File '/node_modules/vue/jsx-runtime/index.d.ts' exists - use it as a name resolution result.", + "Resolved under condition 'types'.", + "Exiting conditional exports.", + "======== Module name 'vue/jsx-dev-runtime' was successfully resolved to '/node_modules/vue/jsx-runtime/index.d.ts' with Package ID 'vue/jsx-runtime/index.d.ts@3.3.4'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/vue/jsx-runtime/index.mjs", + "isJson": false, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'vue/jsx-dev-runtime' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'vue/jsx-dev-runtime' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Matched 'exports' condition 'import'.", + "Using 'exports' subpath './jsx-dev-runtime' with target './jsx-runtime/index.mjs'.", + "File name '/node_modules/vue/jsx-runtime/index.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/vue/jsx-runtime/index.mts' does not exist.", + "Failed to resolve under condition 'import'.", + "Saw non-matching condition 'require'.", + "Exiting conditional exports.", + "Export specifier './jsx-dev-runtime' does not exist in package.json scope at path '/node_modules/vue'.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "Entering conditional exports.", + "Saw non-matching condition 'types'.", + "Matched 'exports' condition 'import'.", + "Using 'exports' subpath './jsx-dev-runtime' with target './jsx-runtime/index.mjs'.", + "File name '/node_modules/vue/jsx-runtime/index.mjs' has a '.mjs' extension - stripping it.", + "File '/node_modules/vue/jsx-runtime/index.mjs' exists - use it as a name resolution result.", + "Resolved under condition 'import'.", + "Exiting conditional exports.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'vue/jsx-dev-runtime' from 'node_modules' folder, target file types: TypeScript.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "File '/node_modules/vue/jsx-dev-runtime.ts' does not exist.", + "File '/node_modules/vue/jsx-dev-runtime.tsx' does not exist.", + "'package.json' has 'main' field 'index.js' that references '/node_modules/vue/jsx-dev-runtime/index.js'.", + "Loading module as file / folder, candidate module location '/node_modules/vue/jsx-dev-runtime/index.js', target file types: TypeScript.", + "File name '/node_modules/vue/jsx-dev-runtime/index.js' has a '.js' extension - stripping it.", + "======== Module name 'vue/jsx-dev-runtime' was successfully resolved to '/node_modules/vue/jsx-runtime/index.mjs' with Package ID 'vue/jsx-runtime/index.mjs@3.3.4'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/vue/jsx-runtime/index.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + }, + "./jsx": { + "subpath": "./jsx", + "resolutions": { + "node10": { + "name": "./jsx", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/vue/jsx.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'vue/jsx' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'vue/jsx' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "File '/node_modules/vue/jsx.ts' does not exist.", + "File '/node_modules/vue/jsx.tsx' does not exist.", + "File '/node_modules/vue/jsx.d.ts' exists - use it as a name resolution result.", + "======== Module name 'vue/jsx' was successfully resolved to '/node_modules/vue/jsx.d.ts' with Package ID 'vue/jsx.d.ts@3.3.4'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/vue/jsx.d.ts" + ] + }, + "node16-cjs": { + "name": "./jsx", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/vue/jsx.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/vue/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'vue/jsx' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'vue/jsx' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './jsx' with target './jsx.d.ts'.", + "File '/node_modules/vue/jsx.d.ts' exists - use it as a name resolution result.", + "======== Module name 'vue/jsx' was successfully resolved to '/node_modules/vue/jsx.d.ts' with Package ID 'vue/jsx.d.ts@3.3.4'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/vue/jsx.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/vue/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'vue/jsx' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'vue/jsx' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './jsx' with target './jsx.d.ts'.", + "File '/node_modules/vue/jsx.d.ts' exists - use it as a name resolution result.", + "======== Module name 'vue/jsx' was successfully resolved to '/node_modules/vue/jsx.d.ts' with Package ID 'vue/jsx.d.ts@3.3.4'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/vue/jsx.d.ts" + ] + }, + "node16-esm": { + "name": "./jsx", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/vue/jsx.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/vue/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'vue/jsx' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'vue/jsx' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './jsx' with target './jsx.d.ts'.", + "File '/node_modules/vue/jsx.d.ts' exists - use it as a name resolution result.", + "======== Module name 'vue/jsx' was successfully resolved to '/node_modules/vue/jsx.d.ts' with Package ID 'vue/jsx.d.ts@3.3.4'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/vue/jsx.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/vue/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'vue/jsx' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'vue/jsx' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './jsx' with target './jsx.d.ts'.", + "File '/node_modules/vue/jsx.d.ts' exists - use it as a name resolution result.", + "======== Module name 'vue/jsx' was successfully resolved to '/node_modules/vue/jsx.d.ts' with Package ID 'vue/jsx.d.ts@3.3.4'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/vue/jsx.d.ts" + ] + }, + "bundler": { + "name": "./jsx", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/vue/jsx.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'vue/jsx' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'vue/jsx' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './jsx' with target './jsx.d.ts'.", + "File '/node_modules/vue/jsx.d.ts' exists - use it as a name resolution result.", + "======== Module name 'vue/jsx' was successfully resolved to '/node_modules/vue/jsx.d.ts' with Package ID 'vue/jsx.d.ts@3.3.4'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/vue/jsx.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'vue/jsx' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'vue/jsx' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './jsx' with target './jsx.d.ts'.", + "File '/node_modules/vue/jsx.d.ts' exists - use it as a name resolution result.", + "======== Module name 'vue/jsx' was successfully resolved to '/node_modules/vue/jsx.d.ts' with Package ID 'vue/jsx.d.ts@3.3.4'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/vue/jsx.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + }, + "./dist/*": { + "subpath": "./dist/*", + "resolutions": { + "node10": { + "name": "./dist/*", + "resolutionKind": "node10", + "isWildcard": true + }, + "node16-cjs": { + "name": "./dist/*", + "resolutionKind": "node16-cjs", + "isWildcard": true + }, + "node16-esm": { + "name": "./dist/*", + "resolutionKind": "node16-esm", + "isWildcard": true + }, + "bundler": { + "name": "./dist/*", + "resolutionKind": "bundler", + "isWildcard": true + } + }, + "hasTypes": false, + "isWildcard": true + }, + "./package.json": { + "subpath": "./package.json", + "resolutions": { + "node10": { + "name": "./package.json", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/vue/package.json", + "isJson": true, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'vue/package.json' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'vue/package.json' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "File name '/node_modules/vue/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/vue/package.d.json.ts' does not exist.", + "File '/node_modules/vue/package.json.ts' does not exist.", + "File '/node_modules/vue/package.json.tsx' does not exist.", + "File '/node_modules/vue/package.json.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'dist/vue.d.ts' that references '/node_modules/vue/package.json/dist/vue.d.ts'.", + "Loading module as file / folder, candidate module location '/node_modules/vue/package.json/dist/vue.d.ts', target file types: TypeScript, Declaration.", + "File name '/node_modules/vue/package.json/dist/vue.d.ts' has a '.d.ts' extension - stripping it.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "File name '/node_modules/@types/vue/package.json' has a '.json' extension - stripping it.", + "Loading module 'vue/package.json' from 'node_modules' folder, target file types: JavaScript, JSON.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "File name '/node_modules/vue/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/vue/package.json' exists - use it as a name resolution result.", + "======== Module name 'vue/package.json' was successfully resolved to '/node_modules/vue/package.json' with Package ID 'vue/package.json@3.3.4'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/vue/package.json" + ] + }, + "node16-cjs": { + "name": "./package.json", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/vue/package.json", + "isJson": true, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'vue/package.json' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'vue/package.json' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './package.json' with target './package.json'.", + "File name '/node_modules/vue/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/vue/package.d.json.ts' does not exist.", + "Export specifier './package.json' does not exist in package.json scope at path '/node_modules/vue'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "File name '/node_modules/@types/vue/package.json' has a '.json' extension - stripping it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './package.json' with target './package.json'.", + "File name '/node_modules/vue/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/vue/package.json' exists - use it as a name resolution result.", + "======== Module name 'vue/package.json' was successfully resolved to '/node_modules/vue/package.json' with Package ID 'vue/package.json@3.3.4'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/vue/package.json" + ] + }, + "node16-esm": { + "name": "./package.json", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/vue/package.json", + "isJson": true, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'vue/package.json' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'vue/package.json' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './package.json' with target './package.json'.", + "File name '/node_modules/vue/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/vue/package.d.json.ts' does not exist.", + "Export specifier './package.json' does not exist in package.json scope at path '/node_modules/vue'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "File name '/node_modules/@types/vue/package.json' has a '.json' extension - stripping it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './package.json' with target './package.json'.", + "File name '/node_modules/vue/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/vue/package.json' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'vue/package.json' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "'package.json' does not have a 'typesVersions' field.", + "File name '/node_modules/vue/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/vue/package.d.json.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'dist/vue.d.ts' that references '/node_modules/vue/package.json/dist/vue.d.ts'.", + "Loading module as file / folder, candidate module location '/node_modules/vue/package.json/dist/vue.d.ts', target file types: TypeScript, Declaration.", + "File name '/node_modules/vue/package.json/dist/vue.d.ts' has a '.d.ts' extension - stripping it.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "File name '/node_modules/@types/vue/package.json' has a '.json' extension - stripping it.", + "======== Module name 'vue/package.json' was successfully resolved to '/node_modules/vue/package.json' with Package ID 'vue/package.json@3.3.4'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/vue/package.json" + ] + }, + "bundler": { + "name": "./package.json", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/vue/package.json", + "isJson": true, + "isTypeScript": false, + "trace": [ + "======== Resolving module 'vue/package.json' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'vue/package.json' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './package.json' with target './package.json'.", + "File name '/node_modules/vue/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/vue/package.d.json.ts' does not exist.", + "Export specifier './package.json' does not exist in package.json scope at path '/node_modules/vue'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "File name '/node_modules/@types/vue/package.json' has a '.json' extension - stripping it.", + "Searching all ancestor node_modules directories for fallback extensions: JavaScript, JSON.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './package.json' with target './package.json'.", + "File name '/node_modules/vue/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/vue/package.json' exists - use it as a name resolution result.", + "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'vue/package.json' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "'package.json' does not have a 'typesVersions' field.", + "File name '/node_modules/vue/package.json' has a '.json' extension - stripping it.", + "File '/node_modules/vue/package.d.json.ts' does not exist.", + "File '/node_modules/vue/package.json.ts' does not exist.", + "File '/node_modules/vue/package.json.tsx' does not exist.", + "File '/node_modules/vue/package.json.d.ts' does not exist.", + "'package.json' does not have a 'typings' field.", + "'package.json' has 'types' field 'dist/vue.d.ts' that references '/node_modules/vue/package.json/dist/vue.d.ts'.", + "Loading module as file / folder, candidate module location '/node_modules/vue/package.json/dist/vue.d.ts', target file types: TypeScript, Declaration.", + "File name '/node_modules/vue/package.json/dist/vue.d.ts' has a '.d.ts' extension - stripping it.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "File name '/node_modules/@types/vue/package.json' has a '.json' extension - stripping it.", + "======== Module name 'vue/package.json' was successfully resolved to '/node_modules/vue/package.json' with Package ID 'vue/package.json@3.3.4'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/vue/package.json" + ] + } + }, + "hasTypes": false, + "isWildcard": false + }, + "./macros": { + "subpath": "./macros", + "resolutions": { + "node10": { + "name": "./macros", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/vue/macros.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'vue/macros' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'vue/macros' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "File '/node_modules/vue/macros.ts' does not exist.", + "File '/node_modules/vue/macros.tsx' does not exist.", + "File '/node_modules/vue/macros.d.ts' exists - use it as a name resolution result.", + "======== Module name 'vue/macros' was successfully resolved to '/node_modules/vue/macros.d.ts' with Package ID 'vue/macros.d.ts@3.3.4'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/vue/macros.d.ts" + ] + }, + "node16-cjs": { + "name": "./macros", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/vue/macros.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/vue/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'vue/macros' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'vue/macros' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './macros' with target './macros.d.ts'.", + "File '/node_modules/vue/macros.d.ts' exists - use it as a name resolution result.", + "======== Module name 'vue/macros' was successfully resolved to '/node_modules/vue/macros.d.ts' with Package ID 'vue/macros.d.ts@3.3.4'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/vue/macros.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/vue/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'vue/macros' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'vue/macros' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './macros' with target './macros.d.ts'.", + "File '/node_modules/vue/macros.d.ts' exists - use it as a name resolution result.", + "======== Module name 'vue/macros' was successfully resolved to '/node_modules/vue/macros.d.ts' with Package ID 'vue/macros.d.ts@3.3.4'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/vue/macros.d.ts" + ] + }, + "node16-esm": { + "name": "./macros", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/vue/macros.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/vue/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'vue/macros' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'vue/macros' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './macros' with target './macros.d.ts'.", + "File '/node_modules/vue/macros.d.ts' exists - use it as a name resolution result.", + "======== Module name 'vue/macros' was successfully resolved to '/node_modules/vue/macros.d.ts' with Package ID 'vue/macros.d.ts@3.3.4'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/vue/macros.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/vue/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'vue/macros' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'vue/macros' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './macros' with target './macros.d.ts'.", + "File '/node_modules/vue/macros.d.ts' exists - use it as a name resolution result.", + "======== Module name 'vue/macros' was successfully resolved to '/node_modules/vue/macros.d.ts' with Package ID 'vue/macros.d.ts@3.3.4'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/vue/macros.d.ts" + ] + }, + "bundler": { + "name": "./macros", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/vue/macros.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'vue/macros' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'vue/macros' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './macros' with target './macros.d.ts'.", + "File '/node_modules/vue/macros.d.ts' exists - use it as a name resolution result.", + "======== Module name 'vue/macros' was successfully resolved to '/node_modules/vue/macros.d.ts' with Package ID 'vue/macros.d.ts@3.3.4'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/vue/macros.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'vue/macros' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'vue/macros' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './macros' with target './macros.d.ts'.", + "File '/node_modules/vue/macros.d.ts' exists - use it as a name resolution result.", + "======== Module name 'vue/macros' was successfully resolved to '/node_modules/vue/macros.d.ts' with Package ID 'vue/macros.d.ts@3.3.4'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/vue/macros.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + }, + "./macros-global": { + "subpath": "./macros-global", + "resolutions": { + "node10": { + "name": "./macros-global", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/vue/macros-global.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'vue/macros-global' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'vue/macros-global' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "File '/node_modules/vue/macros-global.ts' does not exist.", + "File '/node_modules/vue/macros-global.tsx' does not exist.", + "File '/node_modules/vue/macros-global.d.ts' exists - use it as a name resolution result.", + "======== Module name 'vue/macros-global' was successfully resolved to '/node_modules/vue/macros-global.d.ts' with Package ID 'vue/macros-global.d.ts@3.3.4'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/vue/macros.d.ts", + "/node_modules/vue/macros-global.d.ts" + ] + }, + "node16-cjs": { + "name": "./macros-global", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/vue/macros-global.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/vue/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'vue/macros-global' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'vue/macros-global' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './macros-global' with target './macros-global.d.ts'.", + "File '/node_modules/vue/macros-global.d.ts' exists - use it as a name resolution result.", + "======== Module name 'vue/macros-global' was successfully resolved to '/node_modules/vue/macros-global.d.ts' with Package ID 'vue/macros-global.d.ts@3.3.4'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/vue/macros-global.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/vue/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'vue/macros-global' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'vue/macros-global' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './macros-global' with target './macros-global.d.ts'.", + "File '/node_modules/vue/macros-global.d.ts' exists - use it as a name resolution result.", + "======== Module name 'vue/macros-global' was successfully resolved to '/node_modules/vue/macros-global.d.ts' with Package ID 'vue/macros-global.d.ts@3.3.4'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/vue/macros.d.ts", + "/node_modules/vue/macros-global.d.ts" + ] + }, + "node16-esm": { + "name": "./macros-global", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/vue/macros-global.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/vue/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'vue/macros-global' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'vue/macros-global' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './macros-global' with target './macros-global.d.ts'.", + "File '/node_modules/vue/macros-global.d.ts' exists - use it as a name resolution result.", + "======== Module name 'vue/macros-global' was successfully resolved to '/node_modules/vue/macros-global.d.ts' with Package ID 'vue/macros-global.d.ts@3.3.4'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/vue/macros-global.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/vue/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'vue/macros-global' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'vue/macros-global' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './macros-global' with target './macros-global.d.ts'.", + "File '/node_modules/vue/macros-global.d.ts' exists - use it as a name resolution result.", + "======== Module name 'vue/macros-global' was successfully resolved to '/node_modules/vue/macros-global.d.ts' with Package ID 'vue/macros-global.d.ts@3.3.4'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/vue/macros.d.ts", + "/node_modules/vue/macros-global.d.ts" + ] + }, + "bundler": { + "name": "./macros-global", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/vue/macros-global.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'vue/macros-global' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'vue/macros-global' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './macros-global' with target './macros-global.d.ts'.", + "File '/node_modules/vue/macros-global.d.ts' exists - use it as a name resolution result.", + "======== Module name 'vue/macros-global' was successfully resolved to '/node_modules/vue/macros-global.d.ts' with Package ID 'vue/macros-global.d.ts@3.3.4'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/vue/macros-global.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'vue/macros-global' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'vue/macros-global' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './macros-global' with target './macros-global.d.ts'.", + "File '/node_modules/vue/macros-global.d.ts' exists - use it as a name resolution result.", + "======== Module name 'vue/macros-global' was successfully resolved to '/node_modules/vue/macros-global.d.ts' with Package ID 'vue/macros-global.d.ts@3.3.4'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/vue/macros.d.ts", + "/node_modules/vue/macros-global.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + }, + "./ref-macros": { + "subpath": "./ref-macros", + "resolutions": { + "node10": { + "name": "./ref-macros", + "resolutionKind": "node10", + "resolution": { + "fileName": "/node_modules/vue/ref-macros.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'vue/ref-macros' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node10'.", + "Loading module 'vue/ref-macros' from 'node_modules' folder, target file types: TypeScript, Declaration.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "File '/node_modules/vue/ref-macros.ts' does not exist.", + "File '/node_modules/vue/ref-macros.tsx' does not exist.", + "File '/node_modules/vue/ref-macros.d.ts' exists - use it as a name resolution result.", + "======== Module name 'vue/ref-macros' was successfully resolved to '/node_modules/vue/ref-macros.d.ts' with Package ID 'vue/ref-macros.d.ts@3.3.4'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/vue/macros.d.ts", + "/node_modules/vue/macros-global.d.ts", + "/node_modules/vue/ref-macros.d.ts" + ] + }, + "node16-cjs": { + "name": "./ref-macros", + "resolutionKind": "node16-cjs", + "resolution": { + "fileName": "/node_modules/vue/ref-macros.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/vue/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'vue/ref-macros' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'vue/ref-macros' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './ref-macros' with target './ref-macros.d.ts'.", + "File '/node_modules/vue/ref-macros.d.ts' exists - use it as a name resolution result.", + "======== Module name 'vue/ref-macros' was successfully resolved to '/node_modules/vue/ref-macros.d.ts' with Package ID 'vue/ref-macros.d.ts@3.3.4'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/vue/ref-macros.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/vue/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'vue/ref-macros' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'vue/ref-macros' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './ref-macros' with target './ref-macros.d.ts'.", + "File '/node_modules/vue/ref-macros.d.ts' exists - use it as a name resolution result.", + "======== Module name 'vue/ref-macros' was successfully resolved to '/node_modules/vue/ref-macros.d.ts' with Package ID 'vue/ref-macros.d.ts@3.3.4'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/vue/macros.d.ts", + "/node_modules/vue/macros-global.d.ts", + "/node_modules/vue/ref-macros.d.ts" + ] + }, + "node16-esm": { + "name": "./ref-macros", + "resolutionKind": "node16-esm", + "resolution": { + "fileName": "/node_modules/vue/ref-macros.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/vue/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'vue/ref-macros' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'vue/ref-macros' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './ref-macros' with target './ref-macros.d.ts'.", + "File '/node_modules/vue/ref-macros.d.ts' exists - use it as a name resolution result.", + "======== Module name 'vue/ref-macros' was successfully resolved to '/node_modules/vue/ref-macros.d.ts' with Package ID 'vue/ref-macros.d.ts@3.3.4'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/vue/ref-macros.d.ts", + "moduleKind": { + "detectedKind": 1, + "detectedReason": "no:type", + "reasonFileName": "/node_modules/vue/package.json" + }, + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'vue/ref-macros' from '/index.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'node'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'vue/ref-macros' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './ref-macros' with target './ref-macros.d.ts'.", + "File '/node_modules/vue/ref-macros.d.ts' exists - use it as a name resolution result.", + "======== Module name 'vue/ref-macros' was successfully resolved to '/node_modules/vue/ref-macros.d.ts' with Package ID 'vue/ref-macros.d.ts@3.3.4'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/vue/macros.d.ts", + "/node_modules/vue/macros-global.d.ts", + "/node_modules/vue/ref-macros.d.ts" + ] + }, + "bundler": { + "name": "./ref-macros", + "resolutionKind": "bundler", + "resolution": { + "fileName": "/node_modules/vue/ref-macros.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'vue/ref-macros' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'vue/ref-macros' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './ref-macros' with target './ref-macros.d.ts'.", + "File '/node_modules/vue/ref-macros.d.ts' exists - use it as a name resolution result.", + "======== Module name 'vue/ref-macros' was successfully resolved to '/node_modules/vue/ref-macros.d.ts' with Package ID 'vue/ref-macros.d.ts@3.3.4'. ========" + ] + }, + "implementationResolution": { + "fileName": "/node_modules/vue/ref-macros.d.ts", + "isJson": false, + "isTypeScript": true, + "trace": [ + "======== Resolving module 'vue/ref-macros' from '/index.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import'.", + "File '/package.json' does not exist according to earlier cached lookups.", + "Loading module 'vue/ref-macros' from 'node_modules' folder, target file types: TypeScript, JavaScript, JSON.", + "Searching all ancestor node_modules directories for preferred extensions: TypeScript.", + "File '/node_modules/vue/package.json' exists according to earlier cached lookups.", + "Using 'exports' subpath './ref-macros' with target './ref-macros.d.ts'.", + "File '/node_modules/vue/ref-macros.d.ts' exists - use it as a name resolution result.", + "======== Module name 'vue/ref-macros' was successfully resolved to '/node_modules/vue/ref-macros.d.ts' with Package ID 'vue/ref-macros.d.ts@3.3.4'. ========" + ] + }, + "files": [ + "/node_modules/typescript/lib/lib.d.ts", + "/node_modules/vue/macros.d.ts", + "/node_modules/vue/macros-global.d.ts", + "/node_modules/vue/ref-macros.d.ts" + ] + } + }, + "hasTypes": true, + "isWildcard": false + } + }, + "problems": [ + { + "kind": "FalseCJS", + "entrypoint": "./jsx-runtime", + "resolutionKind": "node16-esm" + }, + { + "kind": "NoResolution", + "entrypoint": "./jsx-dev-runtime", + "resolutionKind": "node10" + }, + { + "kind": "FalseCJS", + "entrypoint": "./jsx-dev-runtime", + "resolutionKind": "node16-esm" + }, + { + "kind": "Wildcard", + "entrypoint": "./dist/*", + "resolutionKind": "node10" + }, + { + "kind": "Wildcard", + "entrypoint": "./dist/*", + "resolutionKind": "node16-cjs" + }, + { + "kind": "Wildcard", + "entrypoint": "./dist/*", + "resolutionKind": "node16-esm" + }, + { + "kind": "Wildcard", + "entrypoint": "./dist/*", + "resolutionKind": "bundler" + }, + { + "kind": "InternalResolutionError", + "resolutionOption": "node16", + "fileName": "/node_modules/vue/dist/vue.d.mts", + "moduleSpecifier": "../jsx", + "pos": 454, + "end": 463, + "resolutionMode": 99, + "trace": [ + "======== Resolving module '../jsx' from '/node_modules/vue/dist/vue.d.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/vue/jsx', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/vue/jsx' does not exist, skipping all lookups in it.", + "======== Module name '../jsx' was not resolved. ========" + ] + } + ] +} diff --git a/packages/core/test/snapshots/vue@3.3.4.tgz.md b/packages/core/test/snapshots/vue@3.3.4.tgz.md deleted file mode 100644 index 5694e53..0000000 --- a/packages/core/test/snapshots/vue@3.3.4.tgz.md +++ /dev/null @@ -1,60 +0,0 @@ -# vue@3.3.4.tgz - -## Problems - -```json -[ - { - "kind": "FalseCJS", - "entrypoint": "./jsx-runtime", - "resolutionKind": "node16-esm" - }, - { - "kind": "NoResolution", - "entrypoint": "./jsx-dev-runtime", - "resolutionKind": "node10" - }, - { - "kind": "FalseCJS", - "entrypoint": "./jsx-dev-runtime", - "resolutionKind": "node16-esm" - }, - { - "kind": "Wildcard", - "entrypoint": "./dist/*", - "resolutionKind": "node10" - }, - { - "kind": "Wildcard", - "entrypoint": "./dist/*", - "resolutionKind": "node16-cjs" - }, - { - "kind": "Wildcard", - "entrypoint": "./dist/*", - "resolutionKind": "node16-esm" - }, - { - "kind": "Wildcard", - "entrypoint": "./dist/*", - "resolutionKind": "bundler" - }, - { - "kind": "InternalResolutionError", - "resolutionOption": "node16", - "fileName": "/node_modules/vue/dist/vue.d.mts", - "moduleSpecifier": "../jsx", - "pos": 454, - "end": 463, - "resolutionMode": 99, - "trace": [ - "======== Resolving module '../jsx' from '/node_modules/vue/dist/vue.d.mts'. ========", - "Explicitly specified module resolution kind: 'Node16'.", - "Resolving in ESM mode with conditions 'import', 'types', 'node'.", - "Loading module as file / folder, candidate module location '/node_modules/vue/jsx', target file types: TypeScript, JavaScript, Declaration, JSON.", - "Directory '/node_modules/vue/jsx' does not exist, skipping all lookups in it.", - "======== Module name '../jsx' was not resolved. ========" - ] - } -] -``` \ No newline at end of file diff --git a/packages/web/src/views/PackageInfo.ts b/packages/web/src/views/PackageInfo.ts index 4de60d5..5342501 100644 --- a/packages/web/src/views/PackageInfo.ts +++ b/packages/web/src/views/PackageInfo.ts @@ -1,9 +1,10 @@ -import type { Analysis } from "@arethetypeswrong/core/types"; +import type { Analysis, BuildTool } from "@arethetypeswrong/core/types"; export function PackageInfo({ analysis }: { analysis?: Analysis }) { if (!analysis) { return { className: "display-none" }; } + const buildTools = Object.keys(analysis.buildTools) as BuildTool[]; return { className: "", innerHTML: ` @@ -27,6 +28,16 @@ export function PackageInfo({ analysis }: { analysis?: Analysis }) { ` : "" - }`, + } + ${ + buildTools.length > 0 + ? ` +

Build tools

+
    + ${buildTools.map((tool) => `
  • ${tool}@${analysis.buildTools[tool]}
  • `).join("")} +
` + : "" + } + `, }; } diff --git a/packages/web/src/views/ProblemList.ts b/packages/web/src/views/ProblemList.ts index 8198d71..0c5707c 100644 --- a/packages/web/src/views/ProblemList.ts +++ b/packages/web/src/views/ProblemList.ts @@ -24,7 +24,7 @@ export function ProblemList(props: { analysis?: CheckResult }) { const problems = groupProblemsByKind(props.analysis.problems); return { - innerHTML: `
+ innerHTML: `

Problems

${Object.entries(problems) .map(([kind]) => { const info = problemKindInfo[kind as ProblemKind];