diff --git a/src/compiler/builder.ts b/src/compiler/builder.ts index 7a9985ff1b180..c41d7f6bb6826 100644 --- a/src/compiler/builder.ts +++ b/src/compiler/builder.ts @@ -52,6 +52,7 @@ import { getEmitDeclarations, getNormalizedAbsolutePath, getOptionsNameMap, + getOriginalAndResolvedFileName, getOriginalOrResolvedModuleFileName, getOriginalOrResolvedTypeReferenceFileName, getOwnKeys, @@ -67,6 +68,7 @@ import { isJsonSourceFile, isNumber, isString, + isTraceEnabled, map, mapDefined, maybeBind, @@ -956,7 +958,6 @@ export type ProgramMultiFileEmitBuildInfoFileInfo = string | ProgramMultiFileEmi /** @internal */ export interface ProgramBuildInfoResolved { readonly resolvedFileName: ProgramBuildInfoAbsoluteFileId; - readonly originalPath: ProgramBuildInfoAbsoluteFileId | undefined; readonly packageId: PackageId | undefined; } /** @internal */ @@ -1455,10 +1456,9 @@ function getBuildInfo(state: BuilderProgramState, host: BuilderProgramHost, bund function toProgramBuildInfoResolved(resolved: ResolvedModuleFull | ResolvedTypeReferenceDirective | undefined): ProgramBuildInfoAbsoluteFileId | ProgramBuildInfoResolved | undefined { if (!resolved) return undefined; - const resolvedFileName = toAbsoluteFileId(resolved.resolvedFileName!); - const originalPath = resolved.originalPath ? toAbsoluteFileId(resolved.originalPath) : undefined; - if (!originalPath && !resolved.packageId) return resolvedFileName; - return { resolvedFileName, originalPath, packageId: resolved.packageId }; + const resolvedFileName = toAbsoluteFileId(resolved.originalPath || resolved.resolvedFileName!); + if (!resolved.packageId) return resolvedFileName; + return { resolvedFileName, packageId: resolved.packageId }; } } @@ -2168,6 +2168,7 @@ export function createOldBuildInfoProgram( let resolutions: (Resolution | false)[] | undefined; let originalPathOrResolvedFileNames: string[] | undefined; let resolutionEntries: ResolutionEntry[] | undefined; + const traceEnabled = isTraceEnabled(host.getCompilerOptions(), host.compilerHost); return { getCompilerOptions: () => compilerOptions, getResolvedModule: (name, mode, dirPath, redirectedReference) => getResolvedFromCache( @@ -2199,7 +2200,7 @@ export function createOldBuildInfoProgram( function fileExists(fileName: string) { let result = fileExistsMap.get(fileName); - if (result === undefined) fileExistsMap.set(fileName, result = host.fileExists(fileName)); + if (result === undefined) fileExistsMap.set(fileName, result = host.compilerHost.fileExists(fileName)); return result; } @@ -2212,7 +2213,7 @@ export function createOldBuildInfoProgram( const packageJsonInfo = host.getPackageJsonInfo(fileName); const currentText = typeof packageJsonInfo === "object" ? packageJsonInfo.contents.packageJsonText : undefined; if (isString(expected)) { - result = !!currentText && (host.createHash ?? generateDjb2Hash)(currentText) === expected; + result = !!currentText && (host.compilerHost.createHash ?? generateDjb2Hash)(currentText) === expected; } else { result = currentText === expected?.packageJsonText; @@ -2303,7 +2304,6 @@ export function createOldBuildInfoProgram( // If we are using the cache, directly get from there const fromCache = cache?.getFromCache(name, mode, dirPath, options); if (fromCache) { - // TODO:: symlinks const resolvedFileName = getResolvedFileName(fromCache); return resolvedFileName && fileExists(resolvedFileName) && every( fromCache.affectingLocations, @@ -2336,7 +2336,7 @@ export function createOldBuildInfoProgram( if (!reusableResolutionsCache.decoded) return undefined; } const resolutionId = reusableResolutionsCache.decoded.getFromCache(name, mode, dirPath, options); - return resolutionId ? toResolution(resolutionId) as T : undefined; + return resolutionId ? toResolution(resolutionId, name) as T : undefined; } function setBuildInfoResolutionEntries( @@ -2382,12 +2382,8 @@ export function createOldBuildInfoProgram( return resuableCacheResolutions!.cache.names[nameId - 1]; } - function toResolvedFileName(resolved: ProgramBuildInfoAbsoluteFileId | ProgramBuildInfoResolved) { - return isNumber(resolved) ? resolved : resolved.resolvedFileName; - } - function toOriginalOrResolvedFileName(resolved: ProgramBuildInfoAbsoluteFileId | ProgramBuildInfoResolved) { - return isNumber(resolved) ? resolved : resolved.originalPath || resolved.resolvedFileName; + return isNumber(resolved) ? resolved : resolved.resolvedFileName; } function toOriginalOrResolvedModuleFileName(resolutionId: ProgramBuildInfoResolutionId): string { @@ -2413,13 +2409,13 @@ export function createOldBuildInfoProgram( return affectingLocationsSame(file, hash) ? file : undefined; } - function toResolution(resolutionId: ProgramBuildInfoResolutionId): Resolution | undefined { + function toResolution(resolutionId: ProgramBuildInfoResolutionId, name: string): Resolution | undefined { const existing = resolutions?.[resolutionId - 1]; if (existing !== undefined) return existing || undefined; resolutions ??= new Array(resuableCacheResolutions!.cache.resolutions.length); const resolution = resuableCacheResolutions!.cache.resolutions[resolutionId - 1]; const resolvedFileName = resuableCacheResolutions!.getProgramBuildInfoFilePathDecoder().toFileAbsolutePath( - toResolvedFileName(resolution.resolvedModule || resolution.resolvedTypeReferenceDirective!) + toOriginalOrResolvedFileName(resolution.resolvedModule || resolution.resolvedTypeReferenceDirective!) ); let affectingLocations: string[] | undefined; if (fileExists(resolvedFileName) && every(resolution.affectingLocations, fileId => { @@ -2430,8 +2426,8 @@ export function createOldBuildInfoProgram( // Type Ref doesnt need extension const extenstion = resolution.resolvedModule ? extensionFromPath(resolvedFileName) : undefined!; return resolutions[resolutionId - 1] = { - resolvedModule: toResolved(resolution.resolvedModule, resolvedFileName, extenstion, /*primary*/ undefined), - resolvedTypeReferenceDirective: toResolved(resolution.resolvedTypeReferenceDirective, resolvedFileName, extenstion, !resolution.notPrimary), + resolvedModule: toResolved(resolution.resolvedModule, resolvedFileName, extenstion, name, /*primary*/ undefined), + resolvedTypeReferenceDirective: toResolved(resolution.resolvedTypeReferenceDirective, resolvedFileName, extenstion, /*name*/ undefined, !resolution.notPrimary), affectingLocations, resolutionDiagnostics: resolution.resolutionDiagnostics?.length ? convertToDiagnostics(resolution.resolutionDiagnostics, /*newProgram*/ undefined!) as Diagnostic[] : undefined }; @@ -2444,18 +2440,21 @@ export function createOldBuildInfoProgram( resolved: ProgramBuildInfoAbsoluteFileId | ProgramBuildInfoResolved | undefined, resolvedFileName: string, extension: Extension, + name: string | undefined, primary: boolean | undefined, ): (ResolvedModuleFull & ResolvedTypeReferenceDirective) | undefined { if (!resolved) return undefined; - const originalPath = isNumber(resolved) || !resolved.originalPath ? - undefined : - resuableCacheResolutions!.getProgramBuildInfoFilePathDecoder().toFileAbsolutePath(resolved.originalPath); + let originalPath: string | undefined; + const isExternalLibraryImport = pathContainsNodeModules(resolvedFileName); + if (!host.getCompilerOptions().preserveSymlinks && (!name || (isExternalLibraryImport && !isExternalModuleNameRelative(name)))) { + ({ resolvedFileName, originalPath } = getOriginalAndResolvedFileName(resolvedFileName, host.compilerHost, traceEnabled)); + } const packageId = isNumber(resolved) ? undefined : resolved.packageId; return { resolvedFileName, originalPath, packageId, - isExternalLibraryImport: pathContainsNodeModules(originalPath || resolvedFileName), + isExternalLibraryImport, extension, primary, }; diff --git a/src/compiler/moduleNameResolver.ts b/src/compiler/moduleNameResolver.ts index 72f1b7bfb8b99..0457545125f96 100644 --- a/src/compiler/moduleNameResolver.ts +++ b/src/compiler/moduleNameResolver.ts @@ -467,7 +467,8 @@ function arePathsEqual(path1: string, path2: string, host: ModuleResolutionHost) return comparePaths(path1, path2, !useCaseSensitiveFileNames) === Comparison.EqualTo; } -function getOriginalAndResolvedFileName(fileName: string, host: ModuleResolutionHost, traceEnabled: boolean) { +/** @internal */ +export function getOriginalAndResolvedFileName(fileName: string, host: ModuleResolutionHost, traceEnabled: boolean) { const resolvedFileName = realPath(fileName, host, traceEnabled); const pathsAreEqual = arePathsEqual(fileName, resolvedFileName, host); return { diff --git a/src/compiler/program.ts b/src/compiler/program.ts index 92264d0c4e582..098fae21c5ead 100644 --- a/src/compiler/program.ts +++ b/src/compiler/program.ts @@ -1582,9 +1582,8 @@ export function createProgram(rootNamesOrOptions: readonly string[] | CreateProg if (!oldProgram && typeof oldProgramOrOldBuildInfoProgramConstructor === "function") { const state = getTemporaryModuleResolutionState(moduleResolutionCache?.getPackageJsonInfoCache(), host, options); oldBuildInfoProgram = oldProgramOrOldBuildInfoProgramConstructor({ - fileExists: fileName => host.fileExists(fileName), + compilerHost: host, getCompilerOptions: () => options, - createHash: maybeBind(host, host.createHash), getPackageJsonInfo: fileName => getPackageJsonInfo(getDirectoryPath(fileName), /*onlyRecordFailures*/ false, state), }); if (oldBuildInfoProgram) { diff --git a/src/compiler/types.ts b/src/compiler/types.ts index 790a5624caef7..cf7558416226e 100644 --- a/src/compiler/types.ts +++ b/src/compiler/types.ts @@ -6988,9 +6988,8 @@ export interface OldBuildInfoProgram { /** @internal */ export interface OldBuildInfoProgramHost { - fileExists(fileName: string): boolean; + compilerHost: CompilerHost; getCompilerOptions(): CompilerOptions; - createHash?(data: string): string; getPackageJsonInfo(fileName: string): PackageJsonInfo | undefined; } diff --git a/src/testRunner/unittests/tsc/helpers.ts b/src/testRunner/unittests/tsc/helpers.ts index f7b8941411556..25d30c562d1ab 100644 --- a/src/testRunner/unittests/tsc/helpers.ts +++ b/src/testRunner/unittests/tsc/helpers.ts @@ -538,9 +538,8 @@ type ReadableProgramBuildInfoFileInfo = Omit & { +type ReadableProgramBuildInfoResolved = string | Omit & { readonly resolvedFileName: string; - readonly originalPath: string | undefined; }; type ReadableProgramBuildInfoResolution = Omit & { readonly resolutionId: ts.ProgramBuildInfoResolutionId; @@ -794,7 +793,6 @@ function generateBuildInfoProgramBaseline(sys: ts.System, buildInfoPath: string, return resolved && (ts.isNumber(resolved) ? toFileName(resolved) : { ...resolved, resolvedFileName: toFileName(resolved.resolvedFileName), - originalPath: resolved.originalPath ? toFileName(resolved.originalPath) : undefined, }); } diff --git a/tests/baselines/reference/tsbuild/cacheResolutions/bundle-emit.js b/tests/baselines/reference/tsbuild/cacheResolutions/bundle-emit.js index f285adac4e363..ee50d09ba0d77 100644 --- a/tests/baselines/reference/tsbuild/cacheResolutions/bundle-emit.js +++ b/tests/baselines/reference/tsbuild/cacheResolutions/bundle-emit.js @@ -985,9 +985,12 @@ Output:: /lib/tsc -b /src/project --explainFiles Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/pkg0.d.ts'. Reusing resolution of module 'pkg1' from '/src/project/fileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/pkg1.d.ts'. +Resolving real path for '/src/project/node_modules/pkg2/index.d.ts', result '/src/project/node_modules/pkg2/index.d.ts'. Reusing resolution of type reference directive 'pkg2' from '/src/project/fileWithTypeRefs.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg2/index.d.ts'. +Resolving real path for '/src/project/node_modules/pkg3/index.d.ts', result '/src/project/node_modules/pkg3/index.d.ts'. Reusing resolution of type reference directive 'pkg3' from '/src/project/fileWithTypeRefs.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg3/index.d.ts'. Reusing resolution of module 'pkg0' from '/src/project/randomFileForImport.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/pkg0.d.ts'. +Resolving real path for '/src/project/node_modules/@types/pkg4/index.d.ts', result '/src/project/node_modules/@types/pkg4/index.d.ts'. Reusing resolution of type reference directive 'pkg4' from '/src/project/__inferred type names__.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/@types/pkg4/index.d.ts'. lib/lib.d.ts Default library for target 'es5' @@ -1324,10 +1327,13 @@ Output:: /lib/tsc -b /src/project --explainFiles Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/pkg0.d.ts'. Reusing resolution of module 'pkg1' from '/src/project/fileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/pkg1.d.ts'. +Resolving real path for '/src/project/node_modules/pkg2/index.d.ts', result '/src/project/node_modules/pkg2/index.d.ts'. Reusing resolution of type reference directive 'pkg2' from '/src/project/fileWithTypeRefs.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg2/index.d.ts'. +Resolving real path for '/src/project/node_modules/pkg3/index.d.ts', result '/src/project/node_modules/pkg3/index.d.ts'. Reusing resolution of type reference directive 'pkg3' from '/src/project/fileWithTypeRefs.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg3/index.d.ts'. Reusing resolution of module 'pkg0' from '/src/project/randomFileForImport.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/pkg0.d.ts'. Reusing resolution of type reference directive 'pkg2' from '/src/project/randomFileForTypeRef.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg2/index.d.ts'. +Resolving real path for '/src/project/node_modules/@types/pkg4/index.d.ts', result '/src/project/node_modules/@types/pkg4/index.d.ts'. Reusing resolution of type reference directive 'pkg4' from '/src/project/__inferred type names__.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/@types/pkg4/index.d.ts'. lib/lib.d.ts Default library for target 'es5' diff --git a/tests/baselines/reference/tsbuild/cacheResolutions/multi-file.js b/tests/baselines/reference/tsbuild/cacheResolutions/multi-file.js index c44701f419cab..cc8c13f602812 100644 --- a/tests/baselines/reference/tsbuild/cacheResolutions/multi-file.js +++ b/tests/baselines/reference/tsbuild/cacheResolutions/multi-file.js @@ -850,6 +850,7 @@ File '/src/project/package.json' does not exist. File '/src/package.json' does not exist. File '/package.json' does not exist. Found 'package.json' at '/src/project/node_modules/pkg0/package.json'. +Resolving real path for '/src/project/node_modules/pkg0/import.d.ts', result '/src/project/node_modules/pkg0/import.d.ts'. Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. ======== Resolving module 'pkg1' from '/src/project/fileWithImports.ts'. ======== Explicitly specified module resolution kind: 'Node16'. @@ -882,6 +883,7 @@ Directory '/node_modules' does not exist, skipping all lookups in it. File '/src/project/node_modules/pkg0/package.json' exists according to earlier cached lookups. Directory '/src/project' has no containing package.json scope according to cache. Found 'package.json' at '/src/project/node_modules/pkg2/package.json'. +Resolving real path for '/src/project/node_modules/pkg2/import.d.ts', result '/src/project/node_modules/pkg2/import.d.ts'. Reusing resolution of type reference directive 'pkg2' from '/src/project/fileWithTypeRefs.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. ======== Resolving type reference directive 'pkg3', containing file '/src/project/fileWithTypeRefs.ts', root directory '/src/project/node_modules/@types'. ======== Resolving with primary search path '/src/project/node_modules/@types'. @@ -899,6 +901,7 @@ Directory '/node_modules' does not exist, skipping all lookups in it. File '/src/project/node_modules/pkg2/package.json' exists according to earlier cached lookups. Directory '/src/project' has no containing package.json scope according to cache. Directory '/src/project' has no containing package.json scope according to cache. +Resolving real path for '/src/project/node_modules/@types/pkg4/index.d.ts', result '/src/project/node_modules/@types/pkg4/index.d.ts'. Reusing resolution of type reference directive 'pkg4' from '/src/project/__inferred type names__.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/@types/pkg4/index.d.ts'. File '/src/project/node_modules/@types/pkg4/package.json' does not exist. File '/src/project/node_modules/@types/package.json' does not exist. @@ -1193,6 +1196,7 @@ File '/src/project/package.json' does not exist. File '/src/package.json' does not exist. File '/package.json' does not exist. Found 'package.json' at '/src/project/node_modules/pkg0/package.json'. +Resolving real path for '/src/project/node_modules/pkg0/import.d.ts', result '/src/project/node_modules/pkg0/import.d.ts'. Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. ======== Resolving module 'pkg1' from '/src/project/fileWithImports.ts'. ======== Explicitly specified module resolution kind: 'Node16'. @@ -1215,6 +1219,7 @@ File '/src/project/node_modules/pkg0/package.json' exists according to earlier c File '/src/project/node_modules/pkg1/package.json' exists according to earlier cached lookups. Directory '/src/project' has no containing package.json scope according to cache. Found 'package.json' at '/src/project/node_modules/pkg2/package.json'. +Resolving real path for '/src/project/node_modules/pkg2/import.d.ts', result '/src/project/node_modules/pkg2/import.d.ts'. Reusing resolution of type reference directive 'pkg2' from '/src/project/fileWithTypeRefs.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. ======== Resolving type reference directive 'pkg3', containing file '/src/project/fileWithTypeRefs.ts', root directory '/src/project/node_modules/@types'. ======== Resolving with primary search path '/src/project/node_modules/@types'. @@ -1232,6 +1237,7 @@ Directory '/node_modules' does not exist, skipping all lookups in it. File '/src/project/node_modules/pkg2/package.json' exists according to earlier cached lookups. Directory '/src/project' has no containing package.json scope according to cache. Directory '/src/project' has no containing package.json scope according to cache. +Resolving real path for '/src/project/node_modules/@types/pkg4/index.d.ts', result '/src/project/node_modules/@types/pkg4/index.d.ts'. Reusing resolution of type reference directive 'pkg4' from '/src/project/__inferred type names__.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/@types/pkg4/index.d.ts'. File '/src/project/node_modules/@types/pkg4/package.json' does not exist. File '/src/project/node_modules/@types/package.json' does not exist. @@ -1982,13 +1988,16 @@ File '/src/project/package.json' does not exist. File '/src/package.json' does not exist. File '/package.json' does not exist. Found 'package.json' at '/src/project/node_modules/pkg0/package.json'. +Resolving real path for '/src/project/node_modules/pkg0/import.d.ts', result '/src/project/node_modules/pkg0/import.d.ts'. Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. Found 'package.json' at '/src/project/node_modules/pkg1/package.json'. +Resolving real path for '/src/project/node_modules/pkg1/require.d.ts', result '/src/project/node_modules/pkg1/require.d.ts'. Reusing resolution of module 'pkg1' from '/src/project/fileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg1/require.d.ts' with Package ID 'pkg1/require.d.ts@0.0.1'. File '/src/project/node_modules/pkg0/package.json' exists according to earlier cached lookups. File '/src/project/node_modules/pkg1/package.json' exists according to earlier cached lookups. Directory '/src/project' has no containing package.json scope according to cache. Found 'package.json' at '/src/project/node_modules/pkg2/package.json'. +Resolving real path for '/src/project/node_modules/pkg2/import.d.ts', result '/src/project/node_modules/pkg2/import.d.ts'. Reusing resolution of type reference directive 'pkg2' from '/src/project/fileWithTypeRefs.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. ======== Resolving type reference directive 'pkg3', containing file '/src/project/fileWithTypeRefs.ts', root directory '/src/project/node_modules/@types'. ======== Resolving with primary search path '/src/project/node_modules/@types'. @@ -2005,6 +2014,7 @@ File '/src/project/node_modules/pkg2/package.json' exists according to earlier c File '/src/project/node_modules/pkg3/package.json' exists according to earlier cached lookups. Directory '/src/project' has no containing package.json scope according to cache. Directory '/src/project' has no containing package.json scope according to cache. +Resolving real path for '/src/project/node_modules/@types/pkg4/index.d.ts', result '/src/project/node_modules/@types/pkg4/index.d.ts'. Reusing resolution of type reference directive 'pkg4' from '/src/project/__inferred type names__.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/@types/pkg4/index.d.ts'. File '/src/project/node_modules/@types/pkg4/package.json' does not exist. File '/src/project/node_modules/@types/package.json' does not exist. @@ -2851,21 +2861,26 @@ File '/src/project/package.json' does not exist. File '/src/package.json' does not exist. File '/package.json' does not exist. Found 'package.json' at '/src/project/node_modules/pkg0/package.json'. +Resolving real path for '/src/project/node_modules/pkg0/import.d.ts', result '/src/project/node_modules/pkg0/import.d.ts'. Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. Found 'package.json' at '/src/project/node_modules/pkg1/package.json'. +Resolving real path for '/src/project/node_modules/pkg1/require.d.ts', result '/src/project/node_modules/pkg1/require.d.ts'. Reusing resolution of module 'pkg1' from '/src/project/fileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg1/require.d.ts' with Package ID 'pkg1/require.d.ts@0.0.1'. File '/src/project/node_modules/pkg0/package.json' exists according to earlier cached lookups. File '/src/project/node_modules/pkg1/package.json' exists according to earlier cached lookups. Directory '/src/project' has no containing package.json scope according to cache. Found 'package.json' at '/src/project/node_modules/pkg2/package.json'. +Resolving real path for '/src/project/node_modules/pkg2/import.d.ts', result '/src/project/node_modules/pkg2/import.d.ts'. Reusing resolution of type reference directive 'pkg2' from '/src/project/fileWithTypeRefs.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. Found 'package.json' at '/src/project/node_modules/pkg3/package.json'. +Resolving real path for '/src/project/node_modules/pkg3/require.d.ts', result '/src/project/node_modules/pkg3/require.d.ts'. Reusing resolution of type reference directive 'pkg3' from '/src/project/fileWithTypeRefs.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg3/require.d.ts' with Package ID 'pkg3/require.d.ts@0.0.1'. File '/src/project/node_modules/pkg2/package.json' exists according to earlier cached lookups. File '/src/project/node_modules/pkg3/package.json' exists according to earlier cached lookups. Directory '/src/project' has no containing package.json scope according to cache. Reusing resolution of module 'pkg0' from '/src/project/randomFileForImport.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. Directory '/src/project' has no containing package.json scope according to cache. +Resolving real path for '/src/project/node_modules/@types/pkg4/index.d.ts', result '/src/project/node_modules/@types/pkg4/index.d.ts'. Reusing resolution of type reference directive 'pkg4' from '/src/project/__inferred type names__.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/@types/pkg4/index.d.ts'. File '/src/project/node_modules/@types/pkg4/package.json' does not exist. File '/src/project/node_modules/@types/package.json' does not exist. @@ -3694,15 +3709,19 @@ File '/src/project/package.json' does not exist. File '/src/package.json' does not exist. File '/package.json' does not exist. Found 'package.json' at '/src/project/node_modules/pkg0/package.json'. +Resolving real path for '/src/project/node_modules/pkg0/import.d.ts', result '/src/project/node_modules/pkg0/import.d.ts'. Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. Found 'package.json' at '/src/project/node_modules/pkg1/package.json'. +Resolving real path for '/src/project/node_modules/pkg1/require.d.ts', result '/src/project/node_modules/pkg1/require.d.ts'. Reusing resolution of module 'pkg1' from '/src/project/fileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg1/require.d.ts' with Package ID 'pkg1/require.d.ts@0.0.1'. File '/src/project/node_modules/pkg0/package.json' exists according to earlier cached lookups. File '/src/project/node_modules/pkg1/package.json' exists according to earlier cached lookups. Directory '/src/project' has no containing package.json scope according to cache. Found 'package.json' at '/src/project/node_modules/pkg2/package.json'. +Resolving real path for '/src/project/node_modules/pkg2/import.d.ts', result '/src/project/node_modules/pkg2/import.d.ts'. Reusing resolution of type reference directive 'pkg2' from '/src/project/fileWithTypeRefs.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. Found 'package.json' at '/src/project/node_modules/pkg3/package.json'. +Resolving real path for '/src/project/node_modules/pkg3/require.d.ts', result '/src/project/node_modules/pkg3/require.d.ts'. Reusing resolution of type reference directive 'pkg3' from '/src/project/fileWithTypeRefs.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg3/require.d.ts' with Package ID 'pkg3/require.d.ts@0.0.1'. File '/src/project/node_modules/pkg2/package.json' exists according to earlier cached lookups. File '/src/project/node_modules/pkg3/package.json' exists according to earlier cached lookups. @@ -3710,6 +3729,7 @@ Directory '/src/project' has no containing package.json scope according to cache Reusing resolution of module 'pkg0' from '/src/project/randomFileForImport.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. Directory '/src/project' has no containing package.json scope according to cache. Reusing resolution of type reference directive 'pkg2' from '/src/project/randomFileForTypeRef.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. +Resolving real path for '/src/project/node_modules/@types/pkg4/index.d.ts', result '/src/project/node_modules/@types/pkg4/index.d.ts'. Reusing resolution of type reference directive 'pkg4' from '/src/project/__inferred type names__.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/@types/pkg4/index.d.ts'. File '/src/project/node_modules/@types/pkg4/package.json' does not exist. File '/src/project/node_modules/@types/package.json' does not exist. @@ -4570,6 +4590,7 @@ File '/src/project/package.json' does not exist. File '/src/package.json' does not exist. File '/package.json' does not exist. Found 'package.json' at '/src/project/node_modules/pkg0/package.json'. +Resolving real path for '/src/project/node_modules/pkg0/import.d.ts', result '/src/project/node_modules/pkg0/import.d.ts'. Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. Found 'package.json' at '/src/project/node_modules/pkg1/package.json'. ======== Resolving module 'pkg1' from '/src/project/fileWithImports.ts'. ======== @@ -4603,8 +4624,10 @@ Directory '/node_modules' does not exist, skipping all lookups in it. File '/src/project/node_modules/pkg0/package.json' exists according to earlier cached lookups. Directory '/src/project' has no containing package.json scope according to cache. Found 'package.json' at '/src/project/node_modules/pkg2/package.json'. +Resolving real path for '/src/project/node_modules/pkg2/import.d.ts', result '/src/project/node_modules/pkg2/import.d.ts'. Reusing resolution of type reference directive 'pkg2' from '/src/project/fileWithTypeRefs.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. Found 'package.json' at '/src/project/node_modules/pkg3/package.json'. +Resolving real path for '/src/project/node_modules/pkg3/require.d.ts', result '/src/project/node_modules/pkg3/require.d.ts'. Reusing resolution of type reference directive 'pkg3' from '/src/project/fileWithTypeRefs.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg3/require.d.ts' with Package ID 'pkg3/require.d.ts@0.0.1'. File '/src/project/node_modules/pkg2/package.json' exists according to earlier cached lookups. File '/src/project/node_modules/pkg3/package.json' exists according to earlier cached lookups. @@ -4612,6 +4635,7 @@ Directory '/src/project' has no containing package.json scope according to cache Reusing resolution of module 'pkg0' from '/src/project/randomFileForImport.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. Directory '/src/project' has no containing package.json scope according to cache. Reusing resolution of type reference directive 'pkg2' from '/src/project/randomFileForTypeRef.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. +Resolving real path for '/src/project/node_modules/@types/pkg4/index.d.ts', result '/src/project/node_modules/@types/pkg4/index.d.ts'. Reusing resolution of type reference directive 'pkg4' from '/src/project/__inferred type names__.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/@types/pkg4/index.d.ts'. File '/src/project/node_modules/@types/pkg4/package.json' does not exist. File '/src/project/node_modules/@types/package.json' does not exist. @@ -5421,6 +5445,7 @@ File '/src/project/package.json' does not exist. File '/src/package.json' does not exist. File '/package.json' does not exist. Found 'package.json' at '/src/project/node_modules/pkg0/package.json'. +Resolving real path for '/src/project/node_modules/pkg0/import.d.ts', result '/src/project/node_modules/pkg0/import.d.ts'. Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. ======== Resolving module 'pkg1' from '/src/project/fileWithImports.ts'. ======== Explicitly specified module resolution kind: 'Node16'. @@ -5443,8 +5468,10 @@ File '/src/project/node_modules/pkg0/package.json' exists according to earlier c File '/src/project/node_modules/pkg1/package.json' exists according to earlier cached lookups. Directory '/src/project' has no containing package.json scope according to cache. Found 'package.json' at '/src/project/node_modules/pkg2/package.json'. +Resolving real path for '/src/project/node_modules/pkg2/import.d.ts', result '/src/project/node_modules/pkg2/import.d.ts'. Reusing resolution of type reference directive 'pkg2' from '/src/project/fileWithTypeRefs.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. Found 'package.json' at '/src/project/node_modules/pkg3/package.json'. +Resolving real path for '/src/project/node_modules/pkg3/require.d.ts', result '/src/project/node_modules/pkg3/require.d.ts'. Reusing resolution of type reference directive 'pkg3' from '/src/project/fileWithTypeRefs.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg3/require.d.ts' with Package ID 'pkg3/require.d.ts@0.0.1'. File '/src/project/node_modules/pkg2/package.json' exists according to earlier cached lookups. File '/src/project/node_modules/pkg3/package.json' exists according to earlier cached lookups. @@ -5452,6 +5479,7 @@ Directory '/src/project' has no containing package.json scope according to cache Reusing resolution of module 'pkg0' from '/src/project/randomFileForImport.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. Directory '/src/project' has no containing package.json scope according to cache. Reusing resolution of type reference directive 'pkg2' from '/src/project/randomFileForTypeRef.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. +Resolving real path for '/src/project/node_modules/@types/pkg4/index.d.ts', result '/src/project/node_modules/@types/pkg4/index.d.ts'. Reusing resolution of type reference directive 'pkg4' from '/src/project/__inferred type names__.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/@types/pkg4/index.d.ts'. File '/src/project/node_modules/@types/pkg4/package.json' does not exist. File '/src/project/node_modules/@types/package.json' does not exist. diff --git a/tests/baselines/reference/tsbuild/cacheResolutions/multi-project.js b/tests/baselines/reference/tsbuild/cacheResolutions/multi-project.js index e6b6123b3a1f3..d9f7d9b22c3c8 100644 --- a/tests/baselines/reference/tsbuild/cacheResolutions/multi-project.js +++ b/tests/baselines/reference/tsbuild/cacheResolutions/multi-project.js @@ -1285,6 +1285,7 @@ Output:: [12:01:00 AM] Building project '/src/project/tsconfig.a.json'... +Resolving real path for '/src/project/node_modules/pkg0/index.d.ts', result '/src/project/node_modules/pkg0/index.d.ts'. Reusing resolution of module 'pkg0' from '/src/project/aFileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. Reusing resolution of module './aRandomFileForImport' from '/src/project/aFileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/aRandomFileForImport.ts'. Reusing resolution of module './aRandomFileForImport2' from '/src/project/aFileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/aRandomFileForImport2.ts'. @@ -1308,6 +1309,7 @@ src/project/aFileWithImports.ts Reusing resolution of module './aFileWithImports' from '/src/project/bFileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/aFileWithImports.ts'. Reusing resolution of module './bRandomFileForImport' from '/src/project/bFileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/bRandomFileForImport.ts'. +Resolving real path for '/src/project/node_modules/pkg0/index.d.ts', result '/src/project/node_modules/pkg0/index.d.ts'. Reusing resolution of module 'pkg0' from '/src/project/bFileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. Reusing resolution of module './aRandomFileForImport' from '/src/project/aFileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/aRandomFileForImport.ts'. Reusing resolution of module './aRandomFileForImport2' from '/src/project/aFileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/aRandomFileForImport2.ts'. @@ -2429,6 +2431,7 @@ Output:: Reusing resolution of module './aFileWithImports' from '/src/project/bFileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/aFileWithImports.ts'. Reusing resolution of module './bRandomFileForImport' from '/src/project/bFileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/bRandomFileForImport.ts'. +Resolving real path for '/src/project/node_modules/pkg0/index.d.ts', result '/src/project/node_modules/pkg0/index.d.ts'. Reusing resolution of module 'pkg0' from '/src/project/bFileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. Reusing resolution of module './aRandomFileForImport' from '/src/project/aFileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/aRandomFileForImport.ts'. Reusing resolution of module './aRandomFileForImport2' from '/src/project/aFileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/aRandomFileForImport2.ts'. @@ -2464,6 +2467,7 @@ Reusing resolution of module './bFileWithImports' from '/src/project/cFileWithIm Reusing resolution of module 'pkg0' from '/src/project/cFileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/pkg0.d.ts'. Reusing resolution of module './aFileWithImports' from '/src/project/bFileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/aFileWithImports.ts'. Reusing resolution of module './bRandomFileForImport' from '/src/project/bFileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/bRandomFileForImport.ts'. +Resolving real path for '/src/project/node_modules/pkg0/index.d.ts', result '/src/project/node_modules/pkg0/index.d.ts'. Reusing resolution of module 'pkg0' from '/src/project/bRandomFileForImport.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. lib/lib.d.ts Default library for target 'es5' @@ -3354,6 +3358,7 @@ Reusing resolution of module './aFileWithImports' from '/src/project/bFileWithIm Reusing resolution of module './bRandomFileForImport' from '/src/project/bFileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/bRandomFileForImport.ts'. Reusing resolution of module './aRandomFileForImport' from '/src/project/aFileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/aRandomFileForImport.ts'. Reusing resolution of module './aRandomFileForImport2' from '/src/project/aFileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/aRandomFileForImport2.ts'. +Resolving real path for '/src/project/node_modules/pkg0/index.d.ts', result '/src/project/node_modules/pkg0/index.d.ts'. Reusing resolution of module 'pkg0' from '/src/project/aRandomFileForImport.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. Reusing resolution of module 'pkg0' from '/src/project/bRandomFileForImport.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. Reusing resolution of module 'pkg0' from '/src/project/cRandomFileForImport.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/pkg0.d.ts'. @@ -3885,6 +3890,7 @@ Output:: /lib/tsc -p /src/project/tsconfig.b.json --explainFiles Reusing resolution of module './aFileWithImports' from '/src/project/bFileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/aFileWithImports.ts'. Reusing resolution of module './bRandomFileForImport' from '/src/project/bFileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/bRandomFileForImport.ts'. +Resolving real path for '/src/project/node_modules/pkg0/index.d.ts', result '/src/project/node_modules/pkg0/index.d.ts'. Reusing resolution of module 'pkg0' from '/src/project/bFileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. Reusing resolution of module './aRandomFileForImport' from '/src/project/aFileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/aRandomFileForImport.ts'. Reusing resolution of module './aRandomFileForImport2' from '/src/project/aFileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/aRandomFileForImport2.ts'. @@ -3989,6 +3995,7 @@ Output:: /lib/tsc -p /src/project/tsconfig.b.json --explainFiles Reusing resolution of module './aFileWithImports' from '/src/project/bFileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/aFileWithImports.ts'. Reusing resolution of module './bRandomFileForImport' from '/src/project/bFileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/bRandomFileForImport.ts'. +Resolving real path for '/src/project/node_modules/pkg0/index.d.ts', result '/src/project/node_modules/pkg0/index.d.ts'. Reusing resolution of module 'pkg0' from '/src/project/bFileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. Reusing resolution of module './aRandomFileForImport' from '/src/project/aFileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/aRandomFileForImport.ts'. Reusing resolution of module './aRandomFileForImport2' from '/src/project/aFileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/aRandomFileForImport2.ts'. @@ -4415,6 +4422,7 @@ Reusing resolution of module './aFileWithImports' from '/src/project/bFileWithIm Reusing resolution of module './bRandomFileForImport' from '/src/project/bFileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/bRandomFileForImport.ts'. Reusing resolution of module './aRandomFileForImport' from '/src/project/aFileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/aRandomFileForImport.ts'. Reusing resolution of module './aRandomFileForImport2' from '/src/project/aFileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/aRandomFileForImport2.ts'. +Resolving real path for '/src/project/node_modules/pkg0/index.d.ts', result '/src/project/node_modules/pkg0/index.d.ts'. Reusing resolution of module 'pkg0' from '/src/project/aRandomFileForImport.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. Reusing resolution of module 'pkg0' from '/src/project/bRandomFileForImport.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. Reusing resolution of module 'pkg0' from '/src/project/cRandomFileForImport.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/pkg0.d.ts'. @@ -4548,6 +4556,7 @@ Reusing resolution of module './aFileWithImports' from '/src/project/bFileWithIm Reusing resolution of module './bRandomFileForImport' from '/src/project/bFileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/bRandomFileForImport.ts'. Reusing resolution of module './aRandomFileForImport' from '/src/project/aFileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/aRandomFileForImport.ts'. Reusing resolution of module './aRandomFileForImport2' from '/src/project/aFileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/aRandomFileForImport2.ts'. +Resolving real path for '/src/project/node_modules/pkg0/index.d.ts', result '/src/project/node_modules/pkg0/index.d.ts'. Reusing resolution of module 'pkg0' from '/src/project/aRandomFileForImport.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. Reusing resolution of module 'pkg0' from '/src/project/bRandomFileForImport.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. Reusing resolution of module 'pkg0' from '/src/project/cRandomFileForImport.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/pkg0.d.ts'. diff --git a/tests/baselines/reference/tsbuild/cacheResolutions/multiple-places.js b/tests/baselines/reference/tsbuild/cacheResolutions/multiple-places.js index 9528333e93e60..76326f1e0f15b 100644 --- a/tests/baselines/reference/tsbuild/cacheResolutions/multiple-places.js +++ b/tests/baselines/reference/tsbuild/cacheResolutions/multiple-places.js @@ -4419,6 +4419,7 @@ export const x = 10; Output:: /lib/tsc -b /src/project --explainFiles +Resolving real path for '/src/project/node_modules/pkg0/index.d.ts', result '/src/project/node_modules/pkg0/index.d.ts'. Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. ======== Resolving module 'pkg1' from '/src/project/fileWithImports.ts'. ======== Module resolution kind is not specified, using 'NodeJs'. @@ -8671,6 +8672,7 @@ export const x = 10; Output:: /lib/tsc -b /src/project --explainFiles +Resolving real path for '/src/project/node_modules/pkg0/index.d.ts', result '/src/project/node_modules/pkg0/index.d.ts'. Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. ======== Resolving module 'pkg1' from '/src/project/fileWithImports.ts'. ======== Module resolution kind is not specified, using 'NodeJs'. @@ -12942,6 +12944,7 @@ export const x = 10; Output:: /lib/tsc -b /src/project --explainFiles +Resolving real path for '/src/project/node_modules/pkg0/index.d.ts', result '/src/project/node_modules/pkg0/index.d.ts'. Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. ======== Resolving module 'pkg1' from '/src/project/fileWithImports.ts'. ======== Module resolution kind is not specified, using 'NodeJs'. @@ -17232,6 +17235,7 @@ export const x = 10; Output:: /lib/tsc -b /src/project --explainFiles +Resolving real path for '/src/project/node_modules/pkg0/index.d.ts', result '/src/project/node_modules/pkg0/index.d.ts'. Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. ======== Resolving module 'pkg1' from '/src/project/fileWithImports.ts'. ======== Module resolution kind is not specified, using 'NodeJs'. @@ -21548,6 +21552,7 @@ export const x = 10; Output:: /lib/tsc -b /src/project --explainFiles +Resolving real path for '/src/project/node_modules/pkg0/index.d.ts', result '/src/project/node_modules/pkg0/index.d.ts'. Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. ======== Resolving module 'pkg1' from '/src/project/fileWithImports.ts'. ======== Module resolution kind is not specified, using 'NodeJs'. @@ -25884,6 +25889,7 @@ export const x = 10; Output:: /lib/tsc -b /src/project --explainFiles +Resolving real path for '/src/project/node_modules/pkg0/index.d.ts', result '/src/project/node_modules/pkg0/index.d.ts'. Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. ======== Resolving module 'pkg1' from '/src/project/fileWithImports.ts'. ======== Module resolution kind is not specified, using 'NodeJs'. @@ -30482,6 +30488,7 @@ export const x = 10; Output:: /lib/tsc -b /src/project --explainFiles +Resolving real path for '/src/project/node_modules/pkg0/index.d.ts', result '/src/project/node_modules/pkg0/index.d.ts'. Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. ======== Resolving module 'pkg1' from '/src/project/fileWithImports.ts'. ======== Module resolution kind is not specified, using 'NodeJs'. @@ -35351,6 +35358,7 @@ export const x = 10; Output:: /lib/tsc -b /src/project --explainFiles +Resolving real path for '/src/project/node_modules/pkg0/index.d.ts', result '/src/project/node_modules/pkg0/index.d.ts'. Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. ======== Resolving module 'pkg1' from '/src/project/fileWithImports.ts'. ======== Module resolution kind is not specified, using 'NodeJs'. @@ -40491,6 +40499,7 @@ export const x = 10; Output:: /lib/tsc -b /src/project --explainFiles +Resolving real path for '/src/project/node_modules/pkg0/index.d.ts', result '/src/project/node_modules/pkg0/index.d.ts'. Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. ======== Resolving module 'pkg1' from '/src/project/fileWithImports.ts'. ======== Module resolution kind is not specified, using 'NodeJs'. @@ -46415,6 +46424,7 @@ export const x = 10; Output:: /lib/tsc -b /src/project --explainFiles +Resolving real path for '/src/project/node_modules/pkg0/index.d.ts', result '/src/project/node_modules/pkg0/index.d.ts'. Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. ======== Resolving module 'pkg1' from '/src/project/fileWithImports.ts'. ======== Module resolution kind is not specified, using 'NodeJs'. @@ -53182,6 +53192,7 @@ export const x = 10; Output:: /lib/tsc -b /src/project --explainFiles +Resolving real path for '/src/project/node_modules/pkg0/index.d.ts', result '/src/project/node_modules/pkg0/index.d.ts'. Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. ======== Resolving module 'pkg1' from '/src/project/fileWithImports.ts'. ======== Module resolution kind is not specified, using 'NodeJs'. @@ -59990,6 +60001,7 @@ export const x = 10; Output:: /lib/tsc -b /src/project --explainFiles +Resolving real path for '/src/project/node_modules/pkg0/index.d.ts', result '/src/project/node_modules/pkg0/index.d.ts'. Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. ======== Resolving module 'pkg1' from '/src/project/fileWithImports.ts'. ======== Module resolution kind is not specified, using 'NodeJs'. @@ -67693,6 +67705,7 @@ export interface ImportInterface1 {} Output:: /lib/tsc -b /src/project --explainFiles +Resolving real path for '/src/project/node_modules/pkg0/index.d.ts', result '/src/project/node_modules/pkg0/index.d.ts'. Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. ======== Resolving module 'pkg1' from '/src/project/fileWithImports.ts'. ======== Module resolution kind is not specified, using 'NodeJs'. diff --git a/tests/baselines/reference/tsbuildWatch/cacheResolutions/multi-file-already-built.js b/tests/baselines/reference/tsbuildWatch/cacheResolutions/multi-file-already-built.js index b1ca072a694dc..4cbf85adefedb 100644 --- a/tests/baselines/reference/tsbuildWatch/cacheResolutions/multi-file-already-built.js +++ b/tests/baselines/reference/tsbuildWatch/cacheResolutions/multi-file-already-built.js @@ -587,6 +587,7 @@ File '/src/project/package.json' does not exist. File '/src/package.json' does not exist. File '/package.json' does not exist. Found 'package.json' at '/src/project/node_modules/pkg0/package.json'. +Resolving real path for '/src/project/node_modules/pkg0/import.d.ts', result '/src/project/node_modules/pkg0/import.d.ts'. Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. ======== Resolving module 'pkg1' from '/src/project/fileWithImports.ts'. ======== Explicitly specified module resolution kind: 'Node16'. @@ -619,6 +620,7 @@ Directory '/node_modules' does not exist, skipping all lookups in it. File '/src/project/node_modules/pkg0/package.json' exists according to earlier cached lookups. Directory '/src/project' has no containing package.json scope according to cache. Found 'package.json' at '/src/project/node_modules/pkg2/package.json'. +Resolving real path for '/src/project/node_modules/pkg2/import.d.ts', result '/src/project/node_modules/pkg2/import.d.ts'. Reusing resolution of type reference directive 'pkg2' from '/src/project/fileWithTypeRefs.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. ======== Resolving type reference directive 'pkg3', containing file '/src/project/fileWithTypeRefs.ts', root directory '/src/project/node_modules/@types'. ======== Resolving with primary search path '/src/project/node_modules/@types'. @@ -636,6 +638,7 @@ Directory '/node_modules' does not exist, skipping all lookups in it. File '/src/project/node_modules/pkg2/package.json' exists according to earlier cached lookups. Directory '/src/project' has no containing package.json scope according to cache. Directory '/src/project' has no containing package.json scope according to cache. +Resolving real path for '/src/project/node_modules/@types/pkg4/index.d.ts', result '/src/project/node_modules/@types/pkg4/index.d.ts'. Reusing resolution of type reference directive 'pkg4' from '/src/project/__inferred type names__.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/@types/pkg4/index.d.ts'. File '/src/project/node_modules/@types/pkg4/package.json' does not exist. File '/src/project/node_modules/@types/package.json' does not exist. diff --git a/tests/baselines/reference/tsbuildWatch/cacheResolutions/multi-project-already-built.js b/tests/baselines/reference/tsbuildWatch/cacheResolutions/multi-project-already-built.js index a015ddf293234..b152181ccaf7f 100644 --- a/tests/baselines/reference/tsbuildWatch/cacheResolutions/multi-project-already-built.js +++ b/tests/baselines/reference/tsbuildWatch/cacheResolutions/multi-project-already-built.js @@ -1137,6 +1137,7 @@ Output:: [12:01:46 AM] Building project '/src/project/tsconfig.a.json'... +Resolving real path for '/src/project/node_modules/pkg0/index.d.ts', result '/src/project/node_modules/pkg0/index.d.ts'. Reusing resolution of module 'pkg0' from '/src/project/aFileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. Reusing resolution of module './aRandomFileForImport' from '/src/project/aFileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/aRandomFileForImport.ts'. Reusing resolution of module './aRandomFileForImport2' from '/src/project/aFileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/aRandomFileForImport2.ts'. @@ -1160,6 +1161,7 @@ aFileWithImports.ts Reusing resolution of module './aFileWithImports' from '/src/project/bFileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/aFileWithImports.ts'. Reusing resolution of module './bRandomFileForImport' from '/src/project/bFileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/bRandomFileForImport.ts'. +Resolving real path for '/src/project/node_modules/pkg0/index.d.ts', result '/src/project/node_modules/pkg0/index.d.ts'. Reusing resolution of module 'pkg0' from '/src/project/bFileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. Reusing resolution of module './aRandomFileForImport' from '/src/project/aFileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/aRandomFileForImport.ts'. Reusing resolution of module './aRandomFileForImport2' from '/src/project/aFileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/aRandomFileForImport2.ts'. diff --git a/tests/baselines/reference/tsbuildWatch/cacheResolutions/multiple-places-already-built.js b/tests/baselines/reference/tsbuildWatch/cacheResolutions/multiple-places-already-built.js index 22851adf1c660..be62fa5a64e2f 100644 --- a/tests/baselines/reference/tsbuildWatch/cacheResolutions/multiple-places-already-built.js +++ b/tests/baselines/reference/tsbuildWatch/cacheResolutions/multiple-places-already-built.js @@ -982,6 +982,7 @@ Resolution for module 'pkg1' was found in cache from location '/src/project'. >> Screen clear [12:02:02 AM] Starting compilation in watch mode... +Resolving real path for '/src/project/node_modules/pkg0/index.d.ts', result '/src/project/node_modules/pkg0/index.d.ts'. Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. ======== Resolving module 'pkg1' from '/src/project/fileWithImports.ts'. ======== Module resolution kind is not specified, using 'NodeJs'. diff --git a/tests/baselines/reference/tsbuildWatch/cacheResolutions/multiple-places-first-pass.js b/tests/baselines/reference/tsbuildWatch/cacheResolutions/multiple-places-first-pass.js index 9afd63aae9e5c..05d1ce8a450f9 100644 --- a/tests/baselines/reference/tsbuildWatch/cacheResolutions/multiple-places-first-pass.js +++ b/tests/baselines/reference/tsbuildWatch/cacheResolutions/multiple-places-first-pass.js @@ -983,6 +983,7 @@ Resolution for module 'pkg1' was found in cache from location '/src/project'. >> Screen clear [12:02:04 AM] Starting compilation in watch mode... +Resolving real path for '/src/project/node_modules/pkg0/index.d.ts', result '/src/project/node_modules/pkg0/index.d.ts'. Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. ======== Resolving module 'pkg1' from '/src/project/fileWithImports.ts'. ======== Module resolution kind is not specified, using 'NodeJs'. diff --git a/tests/baselines/reference/tsc/cacheResolutions/bundle-emit.js b/tests/baselines/reference/tsc/cacheResolutions/bundle-emit.js index a8a05f616dfd6..5d8331128a929 100644 --- a/tests/baselines/reference/tsc/cacheResolutions/bundle-emit.js +++ b/tests/baselines/reference/tsc/cacheResolutions/bundle-emit.js @@ -514,6 +514,7 @@ File '/src/pkg1.jsx' does not exist. File '/pkg1.js' does not exist. File '/pkg1.jsx' does not exist. ======== Module name 'pkg1' was not resolved. ======== +Resolving real path for '/src/project/node_modules/pkg2/index.d.ts', result '/src/project/node_modules/pkg2/index.d.ts'. Reusing resolution of type reference directive 'pkg2' from '/src/project/fileWithTypeRefs.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg2/index.d.ts'. ======== Resolving type reference directive 'pkg3', containing file '/src/project/fileWithTypeRefs.ts', root directory '/src/project/node_modules/@types'. ======== Resolving with primary search path '/src/project/node_modules/@types'. @@ -523,6 +524,7 @@ File '/src/project/node_modules/@types/pkg3.d.ts' does not exist. Directory '/src/node_modules' does not exist, skipping all lookups in it. Directory '/node_modules' does not exist, skipping all lookups in it. ======== Type reference directive 'pkg3' was not resolved. ======== +Resolving real path for '/src/project/node_modules/@types/pkg4/index.d.ts', result '/src/project/node_modules/@types/pkg4/index.d.ts'. Reusing resolution of type reference directive 'pkg4' from '/src/project/__inferred type names__.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/@types/pkg4/index.d.ts'. src/project/fileWithImports.ts:2:40 - error TS2792: Cannot find module 'pkg1'. Did you mean to set the 'moduleResolution' option to 'node', or to add aliases to the 'paths' option? @@ -678,6 +680,7 @@ File '/src/pkg1.jsx' does not exist. File '/pkg1.js' does not exist. File '/pkg1.jsx' does not exist. ======== Module name 'pkg1' was not resolved. ======== +Resolving real path for '/src/project/node_modules/pkg2/index.d.ts', result '/src/project/node_modules/pkg2/index.d.ts'. Reusing resolution of type reference directive 'pkg2' from '/src/project/fileWithTypeRefs.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg2/index.d.ts'. ======== Resolving type reference directive 'pkg3', containing file '/src/project/fileWithTypeRefs.ts', root directory '/src/project/node_modules/@types'. ======== Resolving with primary search path '/src/project/node_modules/@types'. @@ -688,6 +691,7 @@ Directory '/src/node_modules' does not exist, skipping all lookups in it. Directory '/node_modules' does not exist, skipping all lookups in it. ======== Type reference directive 'pkg3' was not resolved. ======== Reusing resolution of module 'pkg0' from '/src/project/randomFileForImport.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/pkg0.d.ts'. +Resolving real path for '/src/project/node_modules/@types/pkg4/index.d.ts', result '/src/project/node_modules/@types/pkg4/index.d.ts'. Reusing resolution of type reference directive 'pkg4' from '/src/project/__inferred type names__.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/@types/pkg4/index.d.ts'. src/project/fileWithImports.ts:2:40 - error TS2792: Cannot find module 'pkg1'. Did you mean to set the 'moduleResolution' option to 'node', or to add aliases to the 'paths' option? @@ -1035,6 +1039,7 @@ File '/src/pkg1.jsx' does not exist. File '/pkg1.js' does not exist. File '/pkg1.jsx' does not exist. ======== Module name 'pkg1' was not resolved. ======== +Resolving real path for '/src/project/node_modules/pkg2/index.d.ts', result '/src/project/node_modules/pkg2/index.d.ts'. Reusing resolution of type reference directive 'pkg2' from '/src/project/fileWithTypeRefs.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg2/index.d.ts'. ======== Resolving type reference directive 'pkg3', containing file '/src/project/fileWithTypeRefs.ts', root directory '/src/project/node_modules/@types'. ======== Resolving with primary search path '/src/project/node_modules/@types'. @@ -1046,6 +1051,7 @@ Directory '/node_modules' does not exist, skipping all lookups in it. ======== Type reference directive 'pkg3' was not resolved. ======== Reusing resolution of module 'pkg0' from '/src/project/randomFileForImport.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/pkg0.d.ts'. Reusing resolution of type reference directive 'pkg2' from '/src/project/randomFileForTypeRef.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg2/index.d.ts'. +Resolving real path for '/src/project/node_modules/@types/pkg4/index.d.ts', result '/src/project/node_modules/@types/pkg4/index.d.ts'. Reusing resolution of type reference directive 'pkg4' from '/src/project/__inferred type names__.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/@types/pkg4/index.d.ts'. src/project/fileWithImports.ts:2:40 - error TS2792: Cannot find module 'pkg1'. Did you mean to set the 'moduleResolution' option to 'node', or to add aliases to the 'paths' option? @@ -1458,6 +1464,7 @@ File '/src/project/pkg1.ts' does not exist. File '/src/project/pkg1.tsx' does not exist. File '/src/project/pkg1.d.ts' exist - use it as a name resolution result. ======== Module name 'pkg1' was successfully resolved to '/src/project/pkg1.d.ts'. ======== +Resolving real path for '/src/project/node_modules/pkg2/index.d.ts', result '/src/project/node_modules/pkg2/index.d.ts'. Reusing resolution of type reference directive 'pkg2' from '/src/project/fileWithTypeRefs.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg2/index.d.ts'. ======== Resolving type reference directive 'pkg3', containing file '/src/project/fileWithTypeRefs.ts', root directory '/src/project/node_modules/@types'. ======== Resolving with primary search path '/src/project/node_modules/@types'. @@ -1469,6 +1476,7 @@ Directory '/node_modules' does not exist, skipping all lookups in it. ======== Type reference directive 'pkg3' was not resolved. ======== Reusing resolution of module 'pkg0' from '/src/project/randomFileForImport.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/pkg0.d.ts'. Reusing resolution of type reference directive 'pkg2' from '/src/project/randomFileForTypeRef.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg2/index.d.ts'. +Resolving real path for '/src/project/node_modules/@types/pkg4/index.d.ts', result '/src/project/node_modules/@types/pkg4/index.d.ts'. Reusing resolution of type reference directive 'pkg4' from '/src/project/__inferred type names__.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/@types/pkg4/index.d.ts'. src/project/fileWithTypeRefs.ts:2:23 - error TS2688: Cannot find type definition file for 'pkg3'. @@ -1812,6 +1820,7 @@ Output:: /lib/tsc -p /src/project --explainFiles Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/pkg0.d.ts'. Reusing resolution of module 'pkg1' from '/src/project/fileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/pkg1.d.ts'. +Resolving real path for '/src/project/node_modules/pkg2/index.d.ts', result '/src/project/node_modules/pkg2/index.d.ts'. Reusing resolution of type reference directive 'pkg2' from '/src/project/fileWithTypeRefs.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg2/index.d.ts'. ======== Resolving type reference directive 'pkg3', containing file '/src/project/fileWithTypeRefs.ts', root directory '/src/project/node_modules/@types'. ======== Resolving with primary search path '/src/project/node_modules/@types'. @@ -1823,6 +1832,7 @@ Resolving real path for '/src/project/node_modules/pkg3/index.d.ts', result '/sr ======== Type reference directive 'pkg3' was successfully resolved to '/src/project/node_modules/pkg3/index.d.ts', primary: false. ======== Reusing resolution of module 'pkg0' from '/src/project/randomFileForImport.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/pkg0.d.ts'. Reusing resolution of type reference directive 'pkg2' from '/src/project/randomFileForTypeRef.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg2/index.d.ts'. +Resolving real path for '/src/project/node_modules/@types/pkg4/index.d.ts', result '/src/project/node_modules/@types/pkg4/index.d.ts'. Reusing resolution of type reference directive 'pkg4' from '/src/project/__inferred type names__.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/@types/pkg4/index.d.ts'. lib/lib.d.ts Default library for target 'es5' @@ -2164,10 +2174,13 @@ Input:: Output:: /lib/tsc -p /src/project --explainFiles +Resolving real path for '/src/project/node_modules/pkg2/index.d.ts', result '/src/project/node_modules/pkg2/index.d.ts'. Reusing resolution of type reference directive 'pkg2' from '/src/project/fileWithTypeRefs.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg2/index.d.ts'. +Resolving real path for '/src/project/node_modules/pkg3/index.d.ts', result '/src/project/node_modules/pkg3/index.d.ts'. Reusing resolution of type reference directive 'pkg3' from '/src/project/fileWithTypeRefs.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg3/index.d.ts'. Reusing resolution of module 'pkg0' from '/src/project/randomFileForImport.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/pkg0.d.ts'. Reusing resolution of type reference directive 'pkg2' from '/src/project/randomFileForTypeRef.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg2/index.d.ts'. +Resolving real path for '/src/project/node_modules/@types/pkg4/index.d.ts', result '/src/project/node_modules/@types/pkg4/index.d.ts'. Reusing resolution of type reference directive 'pkg4' from '/src/project/__inferred type names__.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/@types/pkg4/index.d.ts'. lib/lib.d.ts Default library for target 'es5' @@ -2529,7 +2542,9 @@ Input:: Output:: /lib/tsc -p /src/project --explainFiles Reusing resolution of module 'pkg0' from '/src/project/randomFileForImport.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/pkg0.d.ts'. +Resolving real path for '/src/project/node_modules/pkg2/index.d.ts', result '/src/project/node_modules/pkg2/index.d.ts'. Reusing resolution of type reference directive 'pkg2' from '/src/project/randomFileForTypeRef.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg2/index.d.ts'. +Resolving real path for '/src/project/node_modules/@types/pkg4/index.d.ts', result '/src/project/node_modules/@types/pkg4/index.d.ts'. Reusing resolution of type reference directive 'pkg4' from '/src/project/__inferred type names__.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/@types/pkg4/index.d.ts'. lib/lib.d.ts Default library for target 'es5' @@ -2835,7 +2850,9 @@ File '/src/pkg0.jsx' does not exist. File '/pkg0.js' does not exist. File '/pkg0.jsx' does not exist. ======== Module name 'pkg0' was not resolved. ======== +Resolving real path for '/src/project/node_modules/pkg2/index.d.ts', result '/src/project/node_modules/pkg2/index.d.ts'. Reusing resolution of type reference directive 'pkg2' from '/src/project/randomFileForTypeRef.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg2/index.d.ts'. +Resolving real path for '/src/project/node_modules/@types/pkg4/index.d.ts', result '/src/project/node_modules/@types/pkg4/index.d.ts'. Reusing resolution of type reference directive 'pkg4' from '/src/project/__inferred type names__.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/@types/pkg4/index.d.ts'. src/project/randomFileForImport.ts:1:39 - error TS2792: Cannot find module 'pkg0'. Did you mean to set the 'moduleResolution' option to 'node', or to add aliases to the 'paths' option? @@ -3085,6 +3102,7 @@ File '/src/project/node_modules/@types/pkg2.d.ts' does not exist. Directory '/src/node_modules' does not exist, skipping all lookups in it. Directory '/node_modules' does not exist, skipping all lookups in it. ======== Type reference directive 'pkg2' was not resolved. ======== +Resolving real path for '/src/project/node_modules/@types/pkg4/index.d.ts', result '/src/project/node_modules/@types/pkg4/index.d.ts'. Reusing resolution of type reference directive 'pkg4' from '/src/project/__inferred type names__.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/@types/pkg4/index.d.ts'. src/project/randomFileForImport.ts:1:39 - error TS2792: Cannot find module 'pkg0'. Did you mean to set the 'moduleResolution' option to 'node', or to add aliases to the 'paths' option? diff --git a/tests/baselines/reference/tsc/cacheResolutions/multi-file.js b/tests/baselines/reference/tsc/cacheResolutions/multi-file.js index db45c3e4e599f..104bd709341bb 100644 --- a/tests/baselines/reference/tsc/cacheResolutions/multi-file.js +++ b/tests/baselines/reference/tsc/cacheResolutions/multi-file.js @@ -869,6 +869,7 @@ File '/src/project/package.json' does not exist. File '/src/package.json' does not exist. File '/package.json' does not exist. Found 'package.json' at '/src/project/node_modules/pkg0/package.json'. +Resolving real path for '/src/project/node_modules/pkg0/import.d.ts', result '/src/project/node_modules/pkg0/import.d.ts'. Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. ======== Resolving module 'pkg1' from '/src/project/fileWithImports.ts'. ======== Explicitly specified module resolution kind: 'Node16'. @@ -901,6 +902,7 @@ Directory '/node_modules' does not exist, skipping all lookups in it. File '/src/project/node_modules/pkg0/package.json' exists according to earlier cached lookups. Directory '/src/project' has no containing package.json scope according to cache. Found 'package.json' at '/src/project/node_modules/pkg2/package.json'. +Resolving real path for '/src/project/node_modules/pkg2/import.d.ts', result '/src/project/node_modules/pkg2/import.d.ts'. Reusing resolution of type reference directive 'pkg2' from '/src/project/fileWithTypeRefs.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. ======== Resolving type reference directive 'pkg3', containing file '/src/project/fileWithTypeRefs.ts', root directory '/src/project/node_modules/@types'. ======== Resolving with primary search path '/src/project/node_modules/@types'. @@ -918,6 +920,7 @@ Directory '/node_modules' does not exist, skipping all lookups in it. File '/src/project/node_modules/pkg2/package.json' exists according to earlier cached lookups. Directory '/src/project' has no containing package.json scope according to cache. Directory '/src/project' has no containing package.json scope according to cache. +Resolving real path for '/src/project/node_modules/@types/pkg4/index.d.ts', result '/src/project/node_modules/@types/pkg4/index.d.ts'. Reusing resolution of type reference directive 'pkg4' from '/src/project/__inferred type names__.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/@types/pkg4/index.d.ts'. File '/src/project/node_modules/@types/pkg4/package.json' does not exist. File '/src/project/node_modules/@types/package.json' does not exist. @@ -1216,6 +1219,7 @@ File '/src/project/package.json' does not exist. File '/src/package.json' does not exist. File '/package.json' does not exist. Found 'package.json' at '/src/project/node_modules/pkg0/package.json'. +Resolving real path for '/src/project/node_modules/pkg0/import.d.ts', result '/src/project/node_modules/pkg0/import.d.ts'. Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. ======== Resolving module 'pkg1' from '/src/project/fileWithImports.ts'. ======== Explicitly specified module resolution kind: 'Node16'. @@ -1248,6 +1252,7 @@ Directory '/node_modules' does not exist, skipping all lookups in it. File '/src/project/node_modules/pkg0/package.json' exists according to earlier cached lookups. Directory '/src/project' has no containing package.json scope according to cache. Found 'package.json' at '/src/project/node_modules/pkg2/package.json'. +Resolving real path for '/src/project/node_modules/pkg2/import.d.ts', result '/src/project/node_modules/pkg2/import.d.ts'. Reusing resolution of type reference directive 'pkg2' from '/src/project/fileWithTypeRefs.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. ======== Resolving type reference directive 'pkg3', containing file '/src/project/fileWithTypeRefs.ts', root directory '/src/project/node_modules/@types'. ======== Resolving with primary search path '/src/project/node_modules/@types'. @@ -1266,6 +1271,7 @@ File '/src/project/node_modules/pkg2/package.json' exists according to earlier c Directory '/src/project' has no containing package.json scope according to cache. Reusing resolution of module 'pkg0' from '/src/project/randomFileForImport.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. Directory '/src/project' has no containing package.json scope according to cache. +Resolving real path for '/src/project/node_modules/@types/pkg4/index.d.ts', result '/src/project/node_modules/@types/pkg4/index.d.ts'. Reusing resolution of type reference directive 'pkg4' from '/src/project/__inferred type names__.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/@types/pkg4/index.d.ts'. File '/src/project/node_modules/@types/pkg4/package.json' does not exist. File '/src/project/node_modules/@types/package.json' does not exist. @@ -1954,6 +1960,7 @@ File '/src/project/package.json' does not exist. File '/src/package.json' does not exist. File '/package.json' does not exist. Found 'package.json' at '/src/project/node_modules/pkg0/package.json'. +Resolving real path for '/src/project/node_modules/pkg0/import.d.ts', result '/src/project/node_modules/pkg0/import.d.ts'. Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. ======== Resolving module 'pkg1' from '/src/project/fileWithImports.ts'. ======== Explicitly specified module resolution kind: 'Node16'. @@ -1986,6 +1993,7 @@ Directory '/node_modules' does not exist, skipping all lookups in it. File '/src/project/node_modules/pkg0/package.json' exists according to earlier cached lookups. Directory '/src/project' has no containing package.json scope according to cache. Found 'package.json' at '/src/project/node_modules/pkg2/package.json'. +Resolving real path for '/src/project/node_modules/pkg2/import.d.ts', result '/src/project/node_modules/pkg2/import.d.ts'. Reusing resolution of type reference directive 'pkg2' from '/src/project/fileWithTypeRefs.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. ======== Resolving type reference directive 'pkg3', containing file '/src/project/fileWithTypeRefs.ts', root directory '/src/project/node_modules/@types'. ======== Resolving with primary search path '/src/project/node_modules/@types'. @@ -2005,6 +2013,7 @@ Directory '/src/project' has no containing package.json scope according to cache Reusing resolution of module 'pkg0' from '/src/project/randomFileForImport.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. Directory '/src/project' has no containing package.json scope according to cache. Reusing resolution of type reference directive 'pkg2' from '/src/project/randomFileForTypeRef.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. +Resolving real path for '/src/project/node_modules/@types/pkg4/index.d.ts', result '/src/project/node_modules/@types/pkg4/index.d.ts'. Reusing resolution of type reference directive 'pkg4' from '/src/project/__inferred type names__.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/@types/pkg4/index.d.ts'. File '/src/project/node_modules/@types/pkg4/package.json' does not exist. File '/src/project/node_modules/@types/package.json' does not exist. @@ -2718,6 +2727,7 @@ File '/src/project/package.json' does not exist. File '/src/package.json' does not exist. File '/package.json' does not exist. Found 'package.json' at '/src/project/node_modules/pkg0/package.json'. +Resolving real path for '/src/project/node_modules/pkg0/import.d.ts', result '/src/project/node_modules/pkg0/import.d.ts'. Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. ======== Resolving module 'pkg1' from '/src/project/fileWithImports.ts'. ======== Explicitly specified module resolution kind: 'Node16'. @@ -2740,6 +2750,7 @@ File '/src/project/node_modules/pkg0/package.json' exists according to earlier c File '/src/project/node_modules/pkg1/package.json' exists according to earlier cached lookups. Directory '/src/project' has no containing package.json scope according to cache. Found 'package.json' at '/src/project/node_modules/pkg2/package.json'. +Resolving real path for '/src/project/node_modules/pkg2/import.d.ts', result '/src/project/node_modules/pkg2/import.d.ts'. Reusing resolution of type reference directive 'pkg2' from '/src/project/fileWithTypeRefs.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. ======== Resolving type reference directive 'pkg3', containing file '/src/project/fileWithTypeRefs.ts', root directory '/src/project/node_modules/@types'. ======== Resolving with primary search path '/src/project/node_modules/@types'. @@ -2759,6 +2770,7 @@ Directory '/src/project' has no containing package.json scope according to cache Reusing resolution of module 'pkg0' from '/src/project/randomFileForImport.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. Directory '/src/project' has no containing package.json scope according to cache. Reusing resolution of type reference directive 'pkg2' from '/src/project/randomFileForTypeRef.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. +Resolving real path for '/src/project/node_modules/@types/pkg4/index.d.ts', result '/src/project/node_modules/@types/pkg4/index.d.ts'. Reusing resolution of type reference directive 'pkg4' from '/src/project/__inferred type names__.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/@types/pkg4/index.d.ts'. File '/src/project/node_modules/@types/pkg4/package.json' does not exist. File '/src/project/node_modules/@types/package.json' does not exist. @@ -3528,13 +3540,16 @@ File '/src/project/package.json' does not exist. File '/src/package.json' does not exist. File '/package.json' does not exist. Found 'package.json' at '/src/project/node_modules/pkg0/package.json'. +Resolving real path for '/src/project/node_modules/pkg0/import.d.ts', result '/src/project/node_modules/pkg0/import.d.ts'. Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. Found 'package.json' at '/src/project/node_modules/pkg1/package.json'. +Resolving real path for '/src/project/node_modules/pkg1/require.d.ts', result '/src/project/node_modules/pkg1/require.d.ts'. Reusing resolution of module 'pkg1' from '/src/project/fileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg1/require.d.ts' with Package ID 'pkg1/require.d.ts@0.0.1'. File '/src/project/node_modules/pkg0/package.json' exists according to earlier cached lookups. File '/src/project/node_modules/pkg1/package.json' exists according to earlier cached lookups. Directory '/src/project' has no containing package.json scope according to cache. Found 'package.json' at '/src/project/node_modules/pkg2/package.json'. +Resolving real path for '/src/project/node_modules/pkg2/import.d.ts', result '/src/project/node_modules/pkg2/import.d.ts'. Reusing resolution of type reference directive 'pkg2' from '/src/project/fileWithTypeRefs.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. ======== Resolving type reference directive 'pkg3', containing file '/src/project/fileWithTypeRefs.ts', root directory '/src/project/node_modules/@types'. ======== Resolving with primary search path '/src/project/node_modules/@types'. @@ -3553,6 +3568,7 @@ Directory '/src/project' has no containing package.json scope according to cache Reusing resolution of module 'pkg0' from '/src/project/randomFileForImport.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. Directory '/src/project' has no containing package.json scope according to cache. Reusing resolution of type reference directive 'pkg2' from '/src/project/randomFileForTypeRef.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. +Resolving real path for '/src/project/node_modules/@types/pkg4/index.d.ts', result '/src/project/node_modules/@types/pkg4/index.d.ts'. Reusing resolution of type reference directive 'pkg4' from '/src/project/__inferred type names__.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/@types/pkg4/index.d.ts'. File '/src/project/node_modules/@types/pkg4/package.json' does not exist. File '/src/project/node_modules/@types/package.json' does not exist. @@ -4405,6 +4421,7 @@ File '/src/project/package.json' does not exist. File '/src/package.json' does not exist. File '/package.json' does not exist. Found 'package.json' at '/src/project/node_modules/pkg0/package.json'. +Resolving real path for '/src/project/node_modules/pkg0/import.d.ts', result '/src/project/node_modules/pkg0/import.d.ts'. Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. Found 'package.json' at '/src/project/node_modules/pkg1/package.json'. ======== Resolving module 'pkg1' from '/src/project/fileWithImports.ts'. ======== @@ -4438,8 +4455,10 @@ Directory '/node_modules' does not exist, skipping all lookups in it. File '/src/project/node_modules/pkg0/package.json' exists according to earlier cached lookups. Directory '/src/project' has no containing package.json scope according to cache. Found 'package.json' at '/src/project/node_modules/pkg2/package.json'. +Resolving real path for '/src/project/node_modules/pkg2/import.d.ts', result '/src/project/node_modules/pkg2/import.d.ts'. Reusing resolution of type reference directive 'pkg2' from '/src/project/fileWithTypeRefs.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. Found 'package.json' at '/src/project/node_modules/pkg3/package.json'. +Resolving real path for '/src/project/node_modules/pkg3/require.d.ts', result '/src/project/node_modules/pkg3/require.d.ts'. Reusing resolution of type reference directive 'pkg3' from '/src/project/fileWithTypeRefs.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg3/require.d.ts' with Package ID 'pkg3/require.d.ts@0.0.1'. File '/src/project/node_modules/pkg2/package.json' exists according to earlier cached lookups. File '/src/project/node_modules/pkg3/package.json' exists according to earlier cached lookups. @@ -4447,6 +4466,7 @@ Directory '/src/project' has no containing package.json scope according to cache Reusing resolution of module 'pkg0' from '/src/project/randomFileForImport.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. Directory '/src/project' has no containing package.json scope according to cache. Reusing resolution of type reference directive 'pkg2' from '/src/project/randomFileForTypeRef.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. +Resolving real path for '/src/project/node_modules/@types/pkg4/index.d.ts', result '/src/project/node_modules/@types/pkg4/index.d.ts'. Reusing resolution of type reference directive 'pkg4' from '/src/project/__inferred type names__.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/@types/pkg4/index.d.ts'. File '/src/project/node_modules/@types/pkg4/package.json' does not exist. File '/src/project/node_modules/@types/package.json' does not exist. @@ -5237,6 +5257,7 @@ File '/src/project/package.json' does not exist. File '/src/package.json' does not exist. File '/package.json' does not exist. Found 'package.json' at '/src/project/node_modules/pkg0/package.json'. +Resolving real path for '/src/project/node_modules/pkg0/import.d.ts', result '/src/project/node_modules/pkg0/import.d.ts'. Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. ======== Resolving module 'pkg1' from '/src/project/fileWithImports.ts'. ======== Explicitly specified module resolution kind: 'Node16'. @@ -5259,8 +5280,10 @@ File '/src/project/node_modules/pkg0/package.json' exists according to earlier c File '/src/project/node_modules/pkg1/package.json' exists according to earlier cached lookups. Directory '/src/project' has no containing package.json scope according to cache. Found 'package.json' at '/src/project/node_modules/pkg2/package.json'. +Resolving real path for '/src/project/node_modules/pkg2/import.d.ts', result '/src/project/node_modules/pkg2/import.d.ts'. Reusing resolution of type reference directive 'pkg2' from '/src/project/fileWithTypeRefs.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. Found 'package.json' at '/src/project/node_modules/pkg3/package.json'. +Resolving real path for '/src/project/node_modules/pkg3/require.d.ts', result '/src/project/node_modules/pkg3/require.d.ts'. Reusing resolution of type reference directive 'pkg3' from '/src/project/fileWithTypeRefs.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg3/require.d.ts' with Package ID 'pkg3/require.d.ts@0.0.1'. File '/src/project/node_modules/pkg2/package.json' exists according to earlier cached lookups. File '/src/project/node_modules/pkg3/package.json' exists according to earlier cached lookups. @@ -5268,6 +5291,7 @@ Directory '/src/project' has no containing package.json scope according to cache Reusing resolution of module 'pkg0' from '/src/project/randomFileForImport.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. Directory '/src/project' has no containing package.json scope according to cache. Reusing resolution of type reference directive 'pkg2' from '/src/project/randomFileForTypeRef.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. +Resolving real path for '/src/project/node_modules/@types/pkg4/index.d.ts', result '/src/project/node_modules/@types/pkg4/index.d.ts'. Reusing resolution of type reference directive 'pkg4' from '/src/project/__inferred type names__.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/@types/pkg4/index.d.ts'. File '/src/project/node_modules/@types/pkg4/package.json' does not exist. File '/src/project/node_modules/@types/package.json' does not exist. @@ -6115,17 +6139,21 @@ File '/src/project/package.json' does not exist. File '/src/package.json' does not exist. File '/package.json' does not exist. Found 'package.json' at '/src/project/node_modules/pkg2/package.json'. +Resolving real path for '/src/project/node_modules/pkg2/import.d.ts', result '/src/project/node_modules/pkg2/import.d.ts'. Reusing resolution of type reference directive 'pkg2' from '/src/project/fileWithTypeRefs.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. Found 'package.json' at '/src/project/node_modules/pkg3/package.json'. +Resolving real path for '/src/project/node_modules/pkg3/require.d.ts', result '/src/project/node_modules/pkg3/require.d.ts'. Reusing resolution of type reference directive 'pkg3' from '/src/project/fileWithTypeRefs.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg3/require.d.ts' with Package ID 'pkg3/require.d.ts@0.0.1'. File '/src/project/node_modules/pkg2/package.json' exists according to earlier cached lookups. File '/src/project/node_modules/pkg3/package.json' exists according to earlier cached lookups. Directory '/src/project' has no containing package.json scope according to cache. Found 'package.json' at '/src/project/node_modules/pkg0/package.json'. +Resolving real path for '/src/project/node_modules/pkg0/import.d.ts', result '/src/project/node_modules/pkg0/import.d.ts'. Reusing resolution of module 'pkg0' from '/src/project/randomFileForImport.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. File '/src/project/node_modules/pkg0/package.json' exists according to earlier cached lookups. Directory '/src/project' has no containing package.json scope according to cache. Reusing resolution of type reference directive 'pkg2' from '/src/project/randomFileForTypeRef.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. +Resolving real path for '/src/project/node_modules/@types/pkg4/index.d.ts', result '/src/project/node_modules/@types/pkg4/index.d.ts'. Reusing resolution of type reference directive 'pkg4' from '/src/project/__inferred type names__.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/@types/pkg4/index.d.ts'. File '/src/project/node_modules/@types/pkg4/package.json' does not exist. File '/src/project/node_modules/@types/package.json' does not exist. @@ -6796,12 +6824,15 @@ File '/src/project/package.json' does not exist. File '/src/package.json' does not exist. File '/package.json' does not exist. Found 'package.json' at '/src/project/node_modules/pkg0/package.json'. +Resolving real path for '/src/project/node_modules/pkg0/import.d.ts', result '/src/project/node_modules/pkg0/import.d.ts'. Reusing resolution of module 'pkg0' from '/src/project/randomFileForImport.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. File '/src/project/node_modules/pkg0/package.json' exists according to earlier cached lookups. Directory '/src/project' has no containing package.json scope according to cache. Found 'package.json' at '/src/project/node_modules/pkg2/package.json'. +Resolving real path for '/src/project/node_modules/pkg2/import.d.ts', result '/src/project/node_modules/pkg2/import.d.ts'. Reusing resolution of type reference directive 'pkg2' from '/src/project/randomFileForTypeRef.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. File '/src/project/node_modules/pkg2/package.json' exists according to earlier cached lookups. +Resolving real path for '/src/project/node_modules/@types/pkg4/index.d.ts', result '/src/project/node_modules/@types/pkg4/index.d.ts'. Reusing resolution of type reference directive 'pkg4' from '/src/project/__inferred type names__.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/@types/pkg4/index.d.ts'. File '/src/project/node_modules/@types/pkg4/package.json' does not exist. File '/src/project/node_modules/@types/package.json' does not exist. @@ -7321,8 +7352,10 @@ Directory '/node_modules' does not exist, skipping all lookups in it. ======== Module name 'pkg0' was not resolved. ======== Directory '/src/project' has no containing package.json scope according to cache. Found 'package.json' at '/src/project/node_modules/pkg2/package.json'. +Resolving real path for '/src/project/node_modules/pkg2/import.d.ts', result '/src/project/node_modules/pkg2/import.d.ts'. Reusing resolution of type reference directive 'pkg2' from '/src/project/randomFileForTypeRef.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. File '/src/project/node_modules/pkg2/package.json' exists according to earlier cached lookups. +Resolving real path for '/src/project/node_modules/@types/pkg4/index.d.ts', result '/src/project/node_modules/@types/pkg4/index.d.ts'. Reusing resolution of type reference directive 'pkg4' from '/src/project/__inferred type names__.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/@types/pkg4/index.d.ts'. File '/src/project/node_modules/@types/pkg4/package.json' does not exist. File '/src/project/node_modules/@types/package.json' does not exist. @@ -7759,6 +7792,7 @@ Saw non-matching condition 'require'. Directory '/src/node_modules' does not exist, skipping all lookups in it. Directory '/node_modules' does not exist, skipping all lookups in it. ======== Type reference directive 'pkg2' was not resolved. ======== +Resolving real path for '/src/project/node_modules/@types/pkg4/index.d.ts', result '/src/project/node_modules/@types/pkg4/index.d.ts'. Reusing resolution of type reference directive 'pkg4' from '/src/project/__inferred type names__.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/@types/pkg4/index.d.ts'. File '/src/project/node_modules/@types/pkg4/package.json' does not exist. File '/src/project/node_modules/@types/package.json' does not exist. diff --git a/tests/baselines/reference/tsc/cacheResolutions/multiple-places.js b/tests/baselines/reference/tsc/cacheResolutions/multiple-places.js index 612e60f5ada45..e3413b5d5c97a 100644 --- a/tests/baselines/reference/tsc/cacheResolutions/multiple-places.js +++ b/tests/baselines/reference/tsc/cacheResolutions/multiple-places.js @@ -4554,6 +4554,7 @@ export const x = 10; Output:: /lib/tsc -p /src/project --explainFiles +Resolving real path for '/src/project/node_modules/pkg0/index.d.ts', result '/src/project/node_modules/pkg0/index.d.ts'. Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. ======== Resolving module 'pkg1' from '/src/project/fileWithImports.ts'. ======== Module resolution kind is not specified, using 'NodeJs'. @@ -8755,6 +8756,7 @@ export const x = 10; Output:: /lib/tsc -p /src/project --explainFiles +Resolving real path for '/src/project/node_modules/pkg0/index.d.ts', result '/src/project/node_modules/pkg0/index.d.ts'. Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. ======== Resolving module 'pkg1' from '/src/project/fileWithImports.ts'. ======== Module resolution kind is not specified, using 'NodeJs'. @@ -12971,6 +12973,7 @@ export const x = 10; Output:: /lib/tsc -p /src/project --explainFiles +Resolving real path for '/src/project/node_modules/pkg0/index.d.ts', result '/src/project/node_modules/pkg0/index.d.ts'. Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. ======== Resolving module 'pkg1' from '/src/project/fileWithImports.ts'. ======== Module resolution kind is not specified, using 'NodeJs'. @@ -17202,6 +17205,7 @@ export const x = 10; Output:: /lib/tsc -p /src/project --explainFiles +Resolving real path for '/src/project/node_modules/pkg0/index.d.ts', result '/src/project/node_modules/pkg0/index.d.ts'. Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. ======== Resolving module 'pkg1' from '/src/project/fileWithImports.ts'. ======== Module resolution kind is not specified, using 'NodeJs'. @@ -21455,6 +21459,7 @@ export const x = 10; Output:: /lib/tsc -p /src/project --explainFiles +Resolving real path for '/src/project/node_modules/pkg0/index.d.ts', result '/src/project/node_modules/pkg0/index.d.ts'. Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. ======== Resolving module 'pkg1' from '/src/project/fileWithImports.ts'. ======== Module resolution kind is not specified, using 'NodeJs'. @@ -25724,6 +25729,7 @@ export const x = 10; Output:: /lib/tsc -p /src/project --explainFiles +Resolving real path for '/src/project/node_modules/pkg0/index.d.ts', result '/src/project/node_modules/pkg0/index.d.ts'. Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. ======== Resolving module 'pkg1' from '/src/project/fileWithImports.ts'. ======== Module resolution kind is not specified, using 'NodeJs'. @@ -30256,6 +30262,7 @@ export const x = 10; Output:: /lib/tsc -p /src/project --explainFiles +Resolving real path for '/src/project/node_modules/pkg0/index.d.ts', result '/src/project/node_modules/pkg0/index.d.ts'. Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. ======== Resolving module 'pkg1' from '/src/project/fileWithImports.ts'. ======== Module resolution kind is not specified, using 'NodeJs'. @@ -35060,6 +35067,7 @@ export const x = 10; Output:: /lib/tsc -p /src/project --explainFiles +Resolving real path for '/src/project/node_modules/pkg0/index.d.ts', result '/src/project/node_modules/pkg0/index.d.ts'. Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. ======== Resolving module 'pkg1' from '/src/project/fileWithImports.ts'. ======== Module resolution kind is not specified, using 'NodeJs'. @@ -40136,6 +40144,7 @@ export const x = 10; Output:: /lib/tsc -p /src/project --explainFiles +Resolving real path for '/src/project/node_modules/pkg0/index.d.ts', result '/src/project/node_modules/pkg0/index.d.ts'. Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. ======== Resolving module 'pkg1' from '/src/project/fileWithImports.ts'. ======== Module resolution kind is not specified, using 'NodeJs'. @@ -45997,6 +46006,7 @@ export const x = 10; Output:: /lib/tsc -p /src/project --explainFiles +Resolving real path for '/src/project/node_modules/pkg0/index.d.ts', result '/src/project/node_modules/pkg0/index.d.ts'. Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. ======== Resolving module 'pkg1' from '/src/project/fileWithImports.ts'. ======== Module resolution kind is not specified, using 'NodeJs'. @@ -52702,6 +52712,7 @@ export const x = 10; Output:: /lib/tsc -p /src/project --explainFiles +Resolving real path for '/src/project/node_modules/pkg0/index.d.ts', result '/src/project/node_modules/pkg0/index.d.ts'. Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. ======== Resolving module 'pkg1' from '/src/project/fileWithImports.ts'. ======== Module resolution kind is not specified, using 'NodeJs'. @@ -59444,6 +59455,7 @@ export const x = 10; Output:: /lib/tsc -p /src/project --explainFiles +Resolving real path for '/src/project/node_modules/pkg0/index.d.ts', result '/src/project/node_modules/pkg0/index.d.ts'. Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. ======== Resolving module 'pkg1' from '/src/project/fileWithImports.ts'. ======== Module resolution kind is not specified, using 'NodeJs'. @@ -67082,6 +67094,7 @@ export interface ImportInterface1 {} Output:: /lib/tsc -p /src/project --explainFiles +Resolving real path for '/src/project/node_modules/pkg0/index.d.ts', result '/src/project/node_modules/pkg0/index.d.ts'. Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. ======== Resolving module 'pkg1' from '/src/project/fileWithImports.ts'. ======== Module resolution kind is not specified, using 'NodeJs'. diff --git a/tests/baselines/reference/tsc/cacheResolutions/resolutions-with-symlinks-when-not-built.js b/tests/baselines/reference/tsc/cacheResolutions/resolutions-with-symlinks-when-not-built.js index e3f2ea2974b5e..e11c9b07654a6 100644 --- a/tests/baselines/reference/tsc/cacheResolutions/resolutions-with-symlinks-when-not-built.js +++ b/tests/baselines/reference/tsc/cacheResolutions/resolutions-with-symlinks-when-not-built.js @@ -112,7 +112,7 @@ export declare const x = 10; //// [/src/project/tsconfig.tsbuildinfo] -{"program":{"fileNames":["../../a/lib/lib.d.ts","./lib/pkg0/index.d.ts","./main.ts","./randomfileforimport.ts","./","./node_modules/pkg0/index.d.ts"],"fileInfos":[{"version":"-7698705165-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }","affectsGlobalScope":true},"769951468-export interface ImportInterface0 {}",{"version":"7372004325-import type { ImportInterface0 } from \"pkg0\";\n","signature":"-3531856636-export {};\n"},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n"}],"options":{"cacheResolutions":true,"composite":true},"fileIdsList":[[2]],"referencedMap":[[3,1]],"exportedModulesMap":[],"semanticDiagnosticsPerFile":[1,2,3,4],"latestChangedDtsFile":"./randomFileForImport.d.ts","cacheResolutions":{"resolutions":[{"resolvedModule":{"resolvedFileName":2,"originalPath":6}}],"names":["pkg0"],"resolutionEntries":[[1,1]],"modules":[[5,[1]]]}},"version":"FakeTSVersion"} +{"program":{"fileNames":["../../a/lib/lib.d.ts","./lib/pkg0/index.d.ts","./main.ts","./randomfileforimport.ts","./","./node_modules/pkg0/index.d.ts"],"fileInfos":[{"version":"-7698705165-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }","affectsGlobalScope":true},"769951468-export interface ImportInterface0 {}",{"version":"7372004325-import type { ImportInterface0 } from \"pkg0\";\n","signature":"-3531856636-export {};\n"},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n"}],"options":{"cacheResolutions":true,"composite":true},"fileIdsList":[[2]],"referencedMap":[[3,1]],"exportedModulesMap":[],"semanticDiagnosticsPerFile":[1,2,3,4],"latestChangedDtsFile":"./randomFileForImport.d.ts","cacheResolutions":{"resolutions":[{"resolvedModule":6}],"names":["pkg0"],"resolutionEntries":[[1,1]],"modules":[[5,[1]]]}},"version":"FakeTSVersion"} //// [/src/project/tsconfig.tsbuildinfo.readable.baseline.txt] { @@ -182,16 +182,10 @@ export declare const x = 10; "resolutions": [ { "original": { - "resolvedModule": { - "resolvedFileName": 2, - "originalPath": 6 - } + "resolvedModule": 6 }, "resolutionId": 1, - "resolvedModule": { - "resolvedFileName": "./lib/pkg0/index.d.ts", - "originalPath": "./node_modules/pkg0/index.d.ts" - } + "resolvedModule": "./node_modules/pkg0/index.d.ts" } ], "names": [ @@ -207,10 +201,7 @@ export declare const x = 10; "name": "pkg0", "resolution": { "resolutionId": 1, - "resolvedModule": { - "resolvedFileName": "./lib/pkg0/index.d.ts", - "originalPath": "./node_modules/pkg0/index.d.ts" - } + "resolvedModule": "./node_modules/pkg0/index.d.ts" } } ], @@ -223,10 +214,7 @@ export declare const x = 10; "name": "pkg0", "resolution": { "resolutionId": 1, - "resolvedModule": { - "resolvedFileName": "./lib/pkg0/index.d.ts", - "originalPath": "./node_modules/pkg0/index.d.ts" - } + "resolvedModule": "./node_modules/pkg0/index.d.ts" } } ] @@ -235,6 +223,6 @@ export declare const x = 10; } }, "version": "FakeTSVersion", - "size": 1231 + "size": 1193 } diff --git a/tests/baselines/reference/tsc/cacheResolutions/resolutions-with-symlinks.js b/tests/baselines/reference/tsc/cacheResolutions/resolutions-with-symlinks.js index 6112b144bda5b..2056629561321 100644 --- a/tests/baselines/reference/tsc/cacheResolutions/resolutions-with-symlinks.js +++ b/tests/baselines/reference/tsc/cacheResolutions/resolutions-with-symlinks.js @@ -48,7 +48,7 @@ export declare const x = 10; //// [/src/project/tsconfig.tsbuildinfo] -{"program":{"fileNames":["../../a/lib/lib.d.ts","./lib/pkg0/index.d.ts","./main.ts","./randomfileforimport.ts","./","./node_modules/pkg0/index.d.ts"],"fileInfos":[{"version":"-7698705165-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }","affectsGlobalScope":true},"769951468-export interface ImportInterface0 {}",{"version":"7372004325-import type { ImportInterface0 } from \"pkg0\";\n","signature":"-3531856636-export {};\n"},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n"}],"options":{"cacheResolutions":true,"composite":true},"fileIdsList":[[2]],"referencedMap":[[3,1]],"exportedModulesMap":[],"semanticDiagnosticsPerFile":[1,2,3,4],"latestChangedDtsFile":"./randomFileForImport.d.ts","cacheResolutions":{"resolutions":[{"resolvedModule":{"resolvedFileName":2,"originalPath":6}}],"names":["pkg0"],"resolutionEntries":[[1,1]],"modules":[[5,[1]]]}},"version":"FakeTSVersion"} +{"program":{"fileNames":["../../a/lib/lib.d.ts","./lib/pkg0/index.d.ts","./main.ts","./randomfileforimport.ts","./","./node_modules/pkg0/index.d.ts"],"fileInfos":[{"version":"-7698705165-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }","affectsGlobalScope":true},"769951468-export interface ImportInterface0 {}",{"version":"7372004325-import type { ImportInterface0 } from \"pkg0\";\n","signature":"-3531856636-export {};\n"},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n"}],"options":{"cacheResolutions":true,"composite":true},"fileIdsList":[[2]],"referencedMap":[[3,1]],"exportedModulesMap":[],"semanticDiagnosticsPerFile":[1,2,3,4],"latestChangedDtsFile":"./randomFileForImport.d.ts","cacheResolutions":{"resolutions":[{"resolvedModule":6}],"names":["pkg0"],"resolutionEntries":[[1,1]],"modules":[[5,[1]]]}},"version":"FakeTSVersion"} //// [/src/project/tsconfig.tsbuildinfo.readable.baseline.txt] { @@ -118,16 +118,10 @@ export declare const x = 10; "resolutions": [ { "original": { - "resolvedModule": { - "resolvedFileName": 2, - "originalPath": 6 - } + "resolvedModule": 6 }, "resolutionId": 1, - "resolvedModule": { - "resolvedFileName": "./lib/pkg0/index.d.ts", - "originalPath": "./node_modules/pkg0/index.d.ts" - } + "resolvedModule": "./node_modules/pkg0/index.d.ts" } ], "names": [ @@ -143,10 +137,7 @@ export declare const x = 10; "name": "pkg0", "resolution": { "resolutionId": 1, - "resolvedModule": { - "resolvedFileName": "./lib/pkg0/index.d.ts", - "originalPath": "./node_modules/pkg0/index.d.ts" - } + "resolvedModule": "./node_modules/pkg0/index.d.ts" } } ], @@ -159,10 +150,7 @@ export declare const x = 10; "name": "pkg0", "resolution": { "resolutionId": 1, - "resolvedModule": { - "resolvedFileName": "./lib/pkg0/index.d.ts", - "originalPath": "./node_modules/pkg0/index.d.ts" - } + "resolvedModule": "./node_modules/pkg0/index.d.ts" } } ] @@ -171,12 +159,13 @@ export declare const x = 10; } }, "version": "FakeTSVersion", - "size": 1231 + "size": 1193 } /a/lib/tsc.js -p /src/project --explainFiles Output:: +Resolving real path for '/src/project/node_modules/pkg0/index.d.ts', result '/src/project/lib/pkg0/index.d.ts'. Reusing resolution of module 'pkg0' from '/src/project/main.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/lib/pkg0/index.d.ts'. Reusing resolution of module 'pkg0' from '/src/project/randomFileForImport.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/lib/pkg0/index.d.ts'. a/lib/lib.d.ts @@ -237,7 +226,7 @@ exitCode:: ExitStatus.Success //// [/src/project/randomFileForImport.js] file written with same contents //// [/src/project/tsconfig.tsbuildinfo] -{"program":{"fileNames":["../../a/lib/lib.d.ts","./lib/pkg0/index.d.ts","./main.ts","./randomfileforimport.ts","./","./node_modules/pkg0/index.d.ts"],"fileInfos":[{"version":"-7698705165-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }","affectsGlobalScope":true},"769951468-export interface ImportInterface0 {}",{"version":"7372004325-import type { ImportInterface0 } from \"pkg0\";\n","signature":"-3531856636-export {};\n"},{"version":"10580737119-import type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;","signature":"-6821242887-export declare const x = 10;\n"}],"options":{"cacheResolutions":true,"composite":true},"fileIdsList":[[2]],"referencedMap":[[3,1],[4,1]],"exportedModulesMap":[],"semanticDiagnosticsPerFile":[1,2,3,4],"latestChangedDtsFile":"./randomFileForImport.d.ts","cacheResolutions":{"resolutions":[{"resolvedModule":{"resolvedFileName":2,"originalPath":6}}],"names":["pkg0"],"resolutionEntries":[[1,1]],"modules":[[5,[1]]]}},"version":"FakeTSVersion"} +{"program":{"fileNames":["../../a/lib/lib.d.ts","./lib/pkg0/index.d.ts","./main.ts","./randomfileforimport.ts","./","./node_modules/pkg0/index.d.ts"],"fileInfos":[{"version":"-7698705165-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }","affectsGlobalScope":true},"769951468-export interface ImportInterface0 {}",{"version":"7372004325-import type { ImportInterface0 } from \"pkg0\";\n","signature":"-3531856636-export {};\n"},{"version":"10580737119-import type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;","signature":"-6821242887-export declare const x = 10;\n"}],"options":{"cacheResolutions":true,"composite":true},"fileIdsList":[[2]],"referencedMap":[[3,1],[4,1]],"exportedModulesMap":[],"semanticDiagnosticsPerFile":[1,2,3,4],"latestChangedDtsFile":"./randomFileForImport.d.ts","cacheResolutions":{"resolutions":[{"resolvedModule":6}],"names":["pkg0"],"resolutionEntries":[[1,1]],"modules":[[5,[1]]]}},"version":"FakeTSVersion"} //// [/src/project/tsconfig.tsbuildinfo.readable.baseline.txt] { @@ -310,16 +299,10 @@ exitCode:: ExitStatus.Success "resolutions": [ { "original": { - "resolvedModule": { - "resolvedFileName": 2, - "originalPath": 6 - } + "resolvedModule": 6 }, "resolutionId": 1, - "resolvedModule": { - "resolvedFileName": "./lib/pkg0/index.d.ts", - "originalPath": "./node_modules/pkg0/index.d.ts" - } + "resolvedModule": "./node_modules/pkg0/index.d.ts" } ], "names": [ @@ -335,10 +318,7 @@ exitCode:: ExitStatus.Success "name": "pkg0", "resolution": { "resolutionId": 1, - "resolvedModule": { - "resolvedFileName": "./lib/pkg0/index.d.ts", - "originalPath": "./node_modules/pkg0/index.d.ts" - } + "resolvedModule": "./node_modules/pkg0/index.d.ts" } } ], @@ -351,10 +331,7 @@ exitCode:: ExitStatus.Success "name": "pkg0", "resolution": { "resolutionId": 1, - "resolvedModule": { - "resolvedFileName": "./lib/pkg0/index.d.ts", - "originalPath": "./node_modules/pkg0/index.d.ts" - } + "resolvedModule": "./node_modules/pkg0/index.d.ts" } } ] @@ -363,6 +340,6 @@ exitCode:: ExitStatus.Success } }, "version": "FakeTSVersion", - "size": 1285 + "size": 1247 } diff --git a/tests/baselines/reference/tscWatch/cacheResolutions/multi-file-already-built.js b/tests/baselines/reference/tscWatch/cacheResolutions/multi-file-already-built.js index 99c0a853ff282..ac04618f08278 100644 --- a/tests/baselines/reference/tscWatch/cacheResolutions/multi-file-already-built.js +++ b/tests/baselines/reference/tscWatch/cacheResolutions/multi-file-already-built.js @@ -592,6 +592,7 @@ File '/src/package.json' does not exist. File '/package.json' does not exist. FileWatcher:: Added:: WatchInfo: /src/project/fileWithImports.ts 250 undefined Source file Found 'package.json' at '/src/project/node_modules/pkg0/package.json'. +Resolving real path for '/src/project/node_modules/pkg0/import.d.ts', result '/src/project/node_modules/pkg0/import.d.ts'. Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. ======== Resolving module 'pkg1' from '/src/project/fileWithImports.ts'. ======== Explicitly specified module resolution kind: 'Node16'. @@ -626,6 +627,7 @@ FileWatcher:: Added:: WatchInfo: /src/project/node_modules/pkg0/import.d.ts 250 Directory '/src/project' has no containing package.json scope according to cache. FileWatcher:: Added:: WatchInfo: /src/project/fileWithTypeRefs.ts 250 undefined Source file Found 'package.json' at '/src/project/node_modules/pkg2/package.json'. +Resolving real path for '/src/project/node_modules/pkg2/import.d.ts', result '/src/project/node_modules/pkg2/import.d.ts'. Reusing resolution of type reference directive 'pkg2' from '/src/project/fileWithTypeRefs.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. ======== Resolving type reference directive 'pkg3', containing file '/src/project/fileWithTypeRefs.ts', root directory '/src/project/node_modules/@types'. ======== Resolving with primary search path '/src/project/node_modules/@types'. @@ -646,6 +648,7 @@ Directory '/src/project' has no containing package.json scope according to cache FileWatcher:: Added:: WatchInfo: /src/project/randomFileForImport.ts 250 undefined Source file Directory '/src/project' has no containing package.json scope according to cache. FileWatcher:: Added:: WatchInfo: /src/project/randomFileForTypeRef.ts 250 undefined Source file +Resolving real path for '/src/project/node_modules/@types/pkg4/index.d.ts', result '/src/project/node_modules/@types/pkg4/index.d.ts'. Reusing resolution of type reference directive 'pkg4' from '/src/project/__inferred type names__.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/@types/pkg4/index.d.ts'. File '/src/project/node_modules/@types/pkg4/package.json' does not exist. File '/src/project/node_modules/@types/package.json' does not exist. diff --git a/tests/baselines/reference/tscWatch/cacheResolutions/multi-project.js b/tests/baselines/reference/tscWatch/cacheResolutions/multi-project.js index 260de056ec333..d4b0c761887b1 100644 --- a/tests/baselines/reference/tscWatch/cacheResolutions/multi-project.js +++ b/tests/baselines/reference/tscWatch/cacheResolutions/multi-project.js @@ -1075,6 +1075,7 @@ Resolution for module './aRandomFileForImport2' was found in cache from location Reusing resolution of module './aFileWithImports' from '/src/project/bFileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/aFileWithImports.ts'. Reusing resolution of module './bRandomFileForImport' from '/src/project/bFileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/bRandomFileForImport.ts'. +Resolving real path for '/src/project/node_modules/pkg0/index.d.ts', result '/src/project/node_modules/pkg0/index.d.ts'. Reusing resolution of module 'pkg0' from '/src/project/bFileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. Reusing resolution of module './aRandomFileForImport' from '/src/project/aFileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/aRandomFileForImport.ts'. Reusing resolution of module './aRandomFileForImport2' from '/src/project/aFileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/aRandomFileForImport2.ts'. diff --git a/tests/baselines/reference/tscWatch/cacheResolutions/multiple-places-already-built.js b/tests/baselines/reference/tscWatch/cacheResolutions/multiple-places-already-built.js index 882f676fa0220..f2b349d425cd4 100644 --- a/tests/baselines/reference/tscWatch/cacheResolutions/multiple-places-already-built.js +++ b/tests/baselines/reference/tscWatch/cacheResolutions/multiple-places-already-built.js @@ -982,6 +982,7 @@ Resolution for module 'pkg1' was found in cache from location '/src/project'. >> Screen clear [12:02:02 AM] Starting compilation in watch mode... +Resolving real path for '/src/project/node_modules/pkg0/index.d.ts', result '/src/project/node_modules/pkg0/index.d.ts'. Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. ======== Resolving module 'pkg1' from '/src/project/fileWithImports.ts'. ======== Module resolution kind is not specified, using 'NodeJs'. diff --git a/tests/baselines/reference/tscWatch/cacheResolutions/multiple-places-first-pass.js b/tests/baselines/reference/tscWatch/cacheResolutions/multiple-places-first-pass.js index 2eab3c5ea1c28..7f7bb60ad75a7 100644 --- a/tests/baselines/reference/tscWatch/cacheResolutions/multiple-places-first-pass.js +++ b/tests/baselines/reference/tscWatch/cacheResolutions/multiple-places-first-pass.js @@ -983,6 +983,7 @@ Resolution for module 'pkg1' was found in cache from location '/src/project'. >> Screen clear [12:02:04 AM] Starting compilation in watch mode... +Resolving real path for '/src/project/node_modules/pkg0/index.d.ts', result '/src/project/node_modules/pkg0/index.d.ts'. Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. ======== Resolving module 'pkg1' from '/src/project/fileWithImports.ts'. ======== Module resolution kind is not specified, using 'NodeJs'. diff --git a/tests/baselines/reference/tsserver/cacheResolutions/multi-file.js b/tests/baselines/reference/tsserver/cacheResolutions/multi-file.js index 62bd33d98eb4f..a4d5e6b4ea1c0 100644 --- a/tests/baselines/reference/tsserver/cacheResolutions/multi-file.js +++ b/tests/baselines/reference/tsserver/cacheResolutions/multi-file.js @@ -519,82 +519,85 @@ Info 13 [00:01:18.000] File '/src/project/package.json' does not exist. Info 14 [00:01:19.000] File '/src/package.json' does not exist. Info 15 [00:01:20.000] File '/package.json' does not exist. Info 16 [00:01:21.000] Found 'package.json' at '/src/project/node_modules/pkg0/package.json'. -Info 17 [00:01:22.000] Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. -Info 18 [00:01:23.000] ======== Resolving module 'pkg1' from '/src/project/fileWithImports.ts'. ======== -Info 19 [00:01:24.000] Explicitly specified module resolution kind: 'Node16'. -Info 20 [00:01:25.000] Resolving in CJS mode with conditions 'node', 'require', 'types'. -Info 21 [00:01:26.000] File '/src/project/package.json' does not exist according to earlier cached lookups. -Info 22 [00:01:27.000] File '/src/package.json' does not exist according to earlier cached lookups. -Info 23 [00:01:28.000] File '/package.json' does not exist according to earlier cached lookups. -Info 24 [00:01:29.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration. -Info 25 [00:01:30.000] Found 'package.json' at '/src/project/node_modules/pkg1/package.json'. -Info 26 [00:01:31.000] Saw non-matching condition 'import'. -Info 27 [00:01:32.000] Matched 'exports' condition 'require'. -Info 28 [00:01:33.000] Using 'exports' subpath '.' with target './require.js'. -Info 29 [00:01:34.000] File name '/src/project/node_modules/pkg1/require.js' has a '.js' extension - stripping it. -Info 30 [00:01:35.000] File '/src/project/node_modules/pkg1/require.ts' does not exist. -Info 31 [00:01:36.000] File '/src/project/node_modules/pkg1/require.tsx' does not exist. -Info 32 [00:01:37.000] File '/src/project/node_modules/pkg1/require.d.ts' does not exist. -Info 33 [00:01:38.000] File '/src/project/node_modules/@types/pkg1.d.ts' does not exist. -Info 34 [00:01:39.000] Directory '/src/node_modules' does not exist, skipping all lookups in it. -Info 35 [00:01:40.000] Directory '/node_modules' does not exist, skipping all lookups in it. -Info 36 [00:01:41.000] File '/src/project/node_modules/pkg1/package.json' exists according to earlier cached lookups. -Info 37 [00:01:42.000] Saw non-matching condition 'import'. -Info 38 [00:01:43.000] Matched 'exports' condition 'require'. -Info 39 [00:01:44.000] Using 'exports' subpath '.' with target './require.js'. -Info 40 [00:01:45.000] File name '/src/project/node_modules/pkg1/require.js' has a '.js' extension - stripping it. -Info 41 [00:01:46.000] File '/src/project/node_modules/pkg1/require.js' does not exist. -Info 42 [00:01:47.000] File '/src/project/node_modules/pkg1/require.jsx' does not exist. -Info 43 [00:01:48.000] Directory '/src/node_modules' does not exist, skipping all lookups in it. -Info 44 [00:01:49.000] Directory '/node_modules' does not exist, skipping all lookups in it. -Info 45 [00:01:50.000] ======== Module name 'pkg1' was not resolved. ======== -Info 46 [00:01:51.000] File '/src/project/node_modules/pkg0/package.json' exists according to earlier cached lookups. -Info 47 [00:01:52.000] DirectoryWatcher:: Added:: WatchInfo: /src/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 48 [00:01:53.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /src/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 49 [00:01:54.000] Directory '/src/project' has no containing package.json scope according to cache. -Info 50 [00:01:55.000] Found 'package.json' at '/src/project/node_modules/pkg2/package.json'. -Info 51 [00:01:56.000] Reusing resolution of type reference directive 'pkg2' from '/src/project/fileWithTypeRefs.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. -Info 52 [00:01:57.000] ======== Resolving type reference directive 'pkg3', containing file '/src/project/fileWithTypeRefs.ts', root directory '/src/project/node_modules/@types'. ======== -Info 53 [00:01:58.000] Resolving with primary search path '/src/project/node_modules/@types'. -Info 54 [00:01:59.000] Looking up in 'node_modules' folder, initial location '/src/project'. -Info 55 [00:02:00.000] Found 'package.json' at '/src/project/node_modules/pkg3/package.json'. -Info 56 [00:02:01.000] Saw non-matching condition 'import'. -Info 57 [00:02:02.000] Matched 'exports' condition 'require'. -Info 58 [00:02:03.000] Using 'exports' subpath '.' with target './require.js'. -Info 59 [00:02:04.000] File name '/src/project/node_modules/pkg3/require.js' has a '.js' extension - stripping it. -Info 60 [00:02:05.000] File '/src/project/node_modules/pkg3/require.d.ts' does not exist. -Info 61 [00:02:06.000] File '/src/project/node_modules/@types/pkg3.d.ts' does not exist. -Info 62 [00:02:07.000] Directory '/src/node_modules' does not exist, skipping all lookups in it. -Info 63 [00:02:08.000] Directory '/node_modules' does not exist, skipping all lookups in it. -Info 64 [00:02:09.000] ======== Type reference directive 'pkg3' was not resolved. ======== -Info 65 [00:02:10.000] File '/src/project/node_modules/pkg2/package.json' exists according to earlier cached lookups. -Info 66 [00:02:11.000] Directory '/src/project' has no containing package.json scope according to cache. -Info 67 [00:02:12.000] Directory '/src/project' has no containing package.json scope according to cache. -Info 68 [00:02:13.000] Reusing resolution of type reference directive 'pkg4' from '/src/project/__inferred type names__.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/@types/pkg4/index.d.ts'. -Info 69 [00:02:14.000] File '/src/project/node_modules/@types/pkg4/package.json' does not exist. -Info 70 [00:02:15.000] File '/src/project/node_modules/@types/package.json' does not exist. -Info 71 [00:02:16.000] File '/src/project/node_modules/package.json' does not exist. -Info 72 [00:02:17.000] Directory '/src/project' has no containing package.json scope according to cache. -Info 73 [00:02:18.000] File '/a/lib/package.json' does not exist. -Info 74 [00:02:19.000] File '/a/package.json' does not exist. -Info 75 [00:02:20.000] Directory '/' has no containing package.json scope according to cache. -Info 76 [00:02:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 77 [00:02:22.000] FileWatcher:: Added:: WatchInfo: /src/project/node_modules/pkg0/package.json 2000 undefined Project: /src/project/tsconfig.json WatchType: File location affecting resolution -Info 78 [00:02:23.000] DirectoryWatcher:: Added:: WatchInfo: /src/project/node_modules 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations -Info 79 [00:02:24.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /src/project/node_modules 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations -Info 80 [00:02:25.000] DirectoryWatcher:: Added:: WatchInfo: /src/project 0 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations -Info 81 [00:02:26.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /src/project 0 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations -Info 82 [00:02:27.000] FileWatcher:: Added:: WatchInfo: /src/project/node_modules/pkg1/package.json 2000 undefined Project: /src/project/tsconfig.json WatchType: File location affecting resolution -Info 83 [00:02:28.000] FileWatcher:: Added:: WatchInfo: /src/project/node_modules/@types/pkg4/package.json 2000 undefined Project: /src/project/tsconfig.json WatchType: File location affecting resolution -Info 84 [00:02:29.000] FileWatcher:: Added:: WatchInfo: /src/project/node_modules/@types/package.json 2000 undefined Project: /src/project/tsconfig.json WatchType: File location affecting resolution -Info 85 [00:02:30.000] FileWatcher:: Added:: WatchInfo: /src/project/node_modules/package.json 2000 undefined Project: /src/project/tsconfig.json WatchType: File location affecting resolution -Info 86 [00:02:31.000] FileWatcher:: Added:: WatchInfo: /src/project/node_modules/pkg2/package.json 2000 undefined Project: /src/project/tsconfig.json WatchType: File location affecting resolution -Info 87 [00:02:32.000] FileWatcher:: Added:: WatchInfo: /src/project/node_modules/pkg3/package.json 2000 undefined Project: /src/project/tsconfig.json WatchType: File location affecting resolution -Info 88 [00:02:33.000] DirectoryWatcher:: Added:: WatchInfo: /src/project/node_modules/@types 1 undefined Project: /src/project/tsconfig.json WatchType: Type roots -Info 89 [00:02:34.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /src/project/node_modules/@types 1 undefined Project: /src/project/tsconfig.json WatchType: Type roots -Info 90 [00:02:35.000] Finishing updateGraphWorker: Project: /src/project/tsconfig.json Version: 1 structureChanged: true structureIsReused:: SafeModuleCache Elapsed:: *ms -Info 91 [00:02:36.000] Project '/src/project/tsconfig.json' (Configured) -Info 92 [00:02:37.000] Files (8) +Info 17 [00:01:22.000] Resolving real path for '/src/project/node_modules/pkg0/import.d.ts', result '/src/project/node_modules/pkg0/import.d.ts'. +Info 18 [00:01:23.000] Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. +Info 19 [00:01:24.000] ======== Resolving module 'pkg1' from '/src/project/fileWithImports.ts'. ======== +Info 20 [00:01:25.000] Explicitly specified module resolution kind: 'Node16'. +Info 21 [00:01:26.000] Resolving in CJS mode with conditions 'node', 'require', 'types'. +Info 22 [00:01:27.000] File '/src/project/package.json' does not exist according to earlier cached lookups. +Info 23 [00:01:28.000] File '/src/package.json' does not exist according to earlier cached lookups. +Info 24 [00:01:29.000] File '/package.json' does not exist according to earlier cached lookups. +Info 25 [00:01:30.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration. +Info 26 [00:01:31.000] Found 'package.json' at '/src/project/node_modules/pkg1/package.json'. +Info 27 [00:01:32.000] Saw non-matching condition 'import'. +Info 28 [00:01:33.000] Matched 'exports' condition 'require'. +Info 29 [00:01:34.000] Using 'exports' subpath '.' with target './require.js'. +Info 30 [00:01:35.000] File name '/src/project/node_modules/pkg1/require.js' has a '.js' extension - stripping it. +Info 31 [00:01:36.000] File '/src/project/node_modules/pkg1/require.ts' does not exist. +Info 32 [00:01:37.000] File '/src/project/node_modules/pkg1/require.tsx' does not exist. +Info 33 [00:01:38.000] File '/src/project/node_modules/pkg1/require.d.ts' does not exist. +Info 34 [00:01:39.000] File '/src/project/node_modules/@types/pkg1.d.ts' does not exist. +Info 35 [00:01:40.000] Directory '/src/node_modules' does not exist, skipping all lookups in it. +Info 36 [00:01:41.000] Directory '/node_modules' does not exist, skipping all lookups in it. +Info 37 [00:01:42.000] File '/src/project/node_modules/pkg1/package.json' exists according to earlier cached lookups. +Info 38 [00:01:43.000] Saw non-matching condition 'import'. +Info 39 [00:01:44.000] Matched 'exports' condition 'require'. +Info 40 [00:01:45.000] Using 'exports' subpath '.' with target './require.js'. +Info 41 [00:01:46.000] File name '/src/project/node_modules/pkg1/require.js' has a '.js' extension - stripping it. +Info 42 [00:01:47.000] File '/src/project/node_modules/pkg1/require.js' does not exist. +Info 43 [00:01:48.000] File '/src/project/node_modules/pkg1/require.jsx' does not exist. +Info 44 [00:01:49.000] Directory '/src/node_modules' does not exist, skipping all lookups in it. +Info 45 [00:01:50.000] Directory '/node_modules' does not exist, skipping all lookups in it. +Info 46 [00:01:51.000] ======== Module name 'pkg1' was not resolved. ======== +Info 47 [00:01:52.000] File '/src/project/node_modules/pkg0/package.json' exists according to earlier cached lookups. +Info 48 [00:01:53.000] DirectoryWatcher:: Added:: WatchInfo: /src/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 49 [00:01:54.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /src/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 50 [00:01:55.000] Directory '/src/project' has no containing package.json scope according to cache. +Info 51 [00:01:56.000] Found 'package.json' at '/src/project/node_modules/pkg2/package.json'. +Info 52 [00:01:57.000] Resolving real path for '/src/project/node_modules/pkg2/import.d.ts', result '/src/project/node_modules/pkg2/import.d.ts'. +Info 53 [00:01:58.000] Reusing resolution of type reference directive 'pkg2' from '/src/project/fileWithTypeRefs.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. +Info 54 [00:01:59.000] ======== Resolving type reference directive 'pkg3', containing file '/src/project/fileWithTypeRefs.ts', root directory '/src/project/node_modules/@types'. ======== +Info 55 [00:02:00.000] Resolving with primary search path '/src/project/node_modules/@types'. +Info 56 [00:02:01.000] Looking up in 'node_modules' folder, initial location '/src/project'. +Info 57 [00:02:02.000] Found 'package.json' at '/src/project/node_modules/pkg3/package.json'. +Info 58 [00:02:03.000] Saw non-matching condition 'import'. +Info 59 [00:02:04.000] Matched 'exports' condition 'require'. +Info 60 [00:02:05.000] Using 'exports' subpath '.' with target './require.js'. +Info 61 [00:02:06.000] File name '/src/project/node_modules/pkg3/require.js' has a '.js' extension - stripping it. +Info 62 [00:02:07.000] File '/src/project/node_modules/pkg3/require.d.ts' does not exist. +Info 63 [00:02:08.000] File '/src/project/node_modules/@types/pkg3.d.ts' does not exist. +Info 64 [00:02:09.000] Directory '/src/node_modules' does not exist, skipping all lookups in it. +Info 65 [00:02:10.000] Directory '/node_modules' does not exist, skipping all lookups in it. +Info 66 [00:02:11.000] ======== Type reference directive 'pkg3' was not resolved. ======== +Info 67 [00:02:12.000] File '/src/project/node_modules/pkg2/package.json' exists according to earlier cached lookups. +Info 68 [00:02:13.000] Directory '/src/project' has no containing package.json scope according to cache. +Info 69 [00:02:14.000] Directory '/src/project' has no containing package.json scope according to cache. +Info 70 [00:02:15.000] Resolving real path for '/src/project/node_modules/@types/pkg4/index.d.ts', result '/src/project/node_modules/@types/pkg4/index.d.ts'. +Info 71 [00:02:16.000] Reusing resolution of type reference directive 'pkg4' from '/src/project/__inferred type names__.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/@types/pkg4/index.d.ts'. +Info 72 [00:02:17.000] File '/src/project/node_modules/@types/pkg4/package.json' does not exist. +Info 73 [00:02:18.000] File '/src/project/node_modules/@types/package.json' does not exist. +Info 74 [00:02:19.000] File '/src/project/node_modules/package.json' does not exist. +Info 75 [00:02:20.000] Directory '/src/project' has no containing package.json scope according to cache. +Info 76 [00:02:21.000] File '/a/lib/package.json' does not exist. +Info 77 [00:02:22.000] File '/a/package.json' does not exist. +Info 78 [00:02:23.000] Directory '/' has no containing package.json scope according to cache. +Info 79 [00:02:24.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 80 [00:02:25.000] FileWatcher:: Added:: WatchInfo: /src/project/node_modules/pkg0/package.json 2000 undefined Project: /src/project/tsconfig.json WatchType: File location affecting resolution +Info 81 [00:02:26.000] DirectoryWatcher:: Added:: WatchInfo: /src/project/node_modules 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations +Info 82 [00:02:27.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /src/project/node_modules 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations +Info 83 [00:02:28.000] DirectoryWatcher:: Added:: WatchInfo: /src/project 0 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations +Info 84 [00:02:29.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /src/project 0 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations +Info 85 [00:02:30.000] FileWatcher:: Added:: WatchInfo: /src/project/node_modules/pkg1/package.json 2000 undefined Project: /src/project/tsconfig.json WatchType: File location affecting resolution +Info 86 [00:02:31.000] FileWatcher:: Added:: WatchInfo: /src/project/node_modules/@types/pkg4/package.json 2000 undefined Project: /src/project/tsconfig.json WatchType: File location affecting resolution +Info 87 [00:02:32.000] FileWatcher:: Added:: WatchInfo: /src/project/node_modules/@types/package.json 2000 undefined Project: /src/project/tsconfig.json WatchType: File location affecting resolution +Info 88 [00:02:33.000] FileWatcher:: Added:: WatchInfo: /src/project/node_modules/package.json 2000 undefined Project: /src/project/tsconfig.json WatchType: File location affecting resolution +Info 89 [00:02:34.000] FileWatcher:: Added:: WatchInfo: /src/project/node_modules/pkg2/package.json 2000 undefined Project: /src/project/tsconfig.json WatchType: File location affecting resolution +Info 90 [00:02:35.000] FileWatcher:: Added:: WatchInfo: /src/project/node_modules/pkg3/package.json 2000 undefined Project: /src/project/tsconfig.json WatchType: File location affecting resolution +Info 91 [00:02:36.000] DirectoryWatcher:: Added:: WatchInfo: /src/project/node_modules/@types 1 undefined Project: /src/project/tsconfig.json WatchType: Type roots +Info 92 [00:02:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /src/project/node_modules/@types 1 undefined Project: /src/project/tsconfig.json WatchType: Type roots +Info 93 [00:02:38.000] Finishing updateGraphWorker: Project: /src/project/tsconfig.json Version: 1 structureChanged: true structureIsReused:: SafeModuleCache Elapsed:: *ms +Info 94 [00:02:39.000] Project '/src/project/tsconfig.json' (Configured) +Info 95 [00:02:40.000] Files (8) /a/lib/lib.d.ts /src/project/node_modules/pkg0/import.d.ts /src/project/fileWithImports.ts @@ -629,16 +632,16 @@ Info 92 [00:02:37.000] Files (8) Entry point for implicit type library 'pkg4' File is CommonJS module because 'package.json' was not found -Info 93 [00:02:38.000] ----------------------------------------------- -Info 94 [00:02:39.000] Search path: /src/project -Info 95 [00:02:40.000] For info: /src/project/tsconfig.json :: No config files found. -Info 96 [00:02:41.000] Project '/src/project/tsconfig.json' (Configured) -Info 96 [00:02:42.000] Files (8) +Info 96 [00:02:41.000] ----------------------------------------------- +Info 97 [00:02:42.000] Search path: /src/project +Info 98 [00:02:43.000] For info: /src/project/tsconfig.json :: No config files found. +Info 99 [00:02:44.000] Project '/src/project/tsconfig.json' (Configured) +Info 99 [00:02:45.000] Files (8) -Info 96 [00:02:43.000] ----------------------------------------------- -Info 96 [00:02:44.000] Open files: -Info 96 [00:02:45.000] FileName: /src/project/randomFileForImport.ts ProjectRootPath: undefined -Info 96 [00:02:46.000] Projects: /src/project/tsconfig.json +Info 99 [00:02:46.000] ----------------------------------------------- +Info 99 [00:02:47.000] Open files: +Info 99 [00:02:48.000] FileName: /src/project/randomFileForImport.ts ProjectRootPath: undefined +Info 99 [00:02:49.000] Projects: /src/project/tsconfig.json After request PolledWatches:: @@ -677,11 +680,11 @@ FsWatchesRecursive:: /src/project/node_modules/@types: {} -Info 96 [00:02:47.000] response: +Info 99 [00:02:50.000] response: { "responseRequired": false } -Info 97 [00:02:48.000] request: +Info 100 [00:02:51.000] request: { "command": "open", "arguments": { @@ -728,20 +731,20 @@ FsWatchesRecursive:: /src/project/node_modules/@types: {} -Info 98 [00:02:49.000] FileWatcher:: Close:: WatchInfo: /src/project/randomFileForTypeRef.ts 500 undefined WatchType: Closed Script info -Info 99 [00:02:50.000] Search path: /src/project -Info 100 [00:02:51.000] For info: /src/project/randomFileForTypeRef.ts :: Config file name: /src/project/tsconfig.json -Info 101 [00:02:52.000] Search path: /src/project -Info 102 [00:02:53.000] For info: /src/project/tsconfig.json :: No config files found. -Info 103 [00:02:54.000] Project '/src/project/tsconfig.json' (Configured) -Info 103 [00:02:55.000] Files (8) - -Info 103 [00:02:56.000] ----------------------------------------------- -Info 103 [00:02:57.000] Open files: -Info 103 [00:02:58.000] FileName: /src/project/randomFileForImport.ts ProjectRootPath: undefined -Info 103 [00:02:59.000] Projects: /src/project/tsconfig.json -Info 103 [00:03:00.000] FileName: /src/project/randomFileForTypeRef.ts ProjectRootPath: undefined -Info 103 [00:03:01.000] Projects: /src/project/tsconfig.json +Info 101 [00:02:52.000] FileWatcher:: Close:: WatchInfo: /src/project/randomFileForTypeRef.ts 500 undefined WatchType: Closed Script info +Info 102 [00:02:53.000] Search path: /src/project +Info 103 [00:02:54.000] For info: /src/project/randomFileForTypeRef.ts :: Config file name: /src/project/tsconfig.json +Info 104 [00:02:55.000] Search path: /src/project +Info 105 [00:02:56.000] For info: /src/project/tsconfig.json :: No config files found. +Info 106 [00:02:57.000] Project '/src/project/tsconfig.json' (Configured) +Info 106 [00:02:58.000] Files (8) + +Info 106 [00:02:59.000] ----------------------------------------------- +Info 106 [00:03:00.000] Open files: +Info 106 [00:03:01.000] FileName: /src/project/randomFileForImport.ts ProjectRootPath: undefined +Info 106 [00:03:02.000] Projects: /src/project/tsconfig.json +Info 106 [00:03:03.000] FileName: /src/project/randomFileForTypeRef.ts ProjectRootPath: undefined +Info 106 [00:03:04.000] Projects: /src/project/tsconfig.json After request PolledWatches:: @@ -778,12 +781,12 @@ FsWatchesRecursive:: /src/project/node_modules/@types: {} -Info 103 [00:03:02.000] response: +Info 106 [00:03:05.000] response: { "responseRequired": false } -Info 104 [00:03:03.000] modify randomFileForImport by adding import -Info 105 [00:03:04.000] request: +Info 107 [00:03:06.000] modify randomFileForImport by adding import +Info 108 [00:03:07.000] request: { "command": "change", "arguments": { @@ -869,41 +872,41 @@ FsWatchesRecursive:: /src/project/node_modules/@types: {} -Info 106 [00:03:05.000] response: +Info 109 [00:03:08.000] response: { "responseRequired": false } -Info 107 [00:03:06.000] Starting updateGraphWorker: Project: /src/project/tsconfig.json -Info 108 [00:03:07.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. -Info 109 [00:03:08.000] File '/a/package.json' does not exist according to earlier cached lookups. -Info 110 [00:03:09.000] Directory '/' has no containing package.json scope according to cache. -Info 111 [00:03:10.000] Directory '/src/project/node_modules/pkg0' resolves to '/src/project/node_modules/pkg0/package.json' scope according to cache. -Info 112 [00:03:11.000] Directory '/src/project' has no containing package.json scope according to cache. -Info 113 [00:03:12.000] Directory '/src/project/node_modules/pkg2' resolves to '/src/project/node_modules/pkg2/package.json' scope according to cache. -Info 114 [00:03:13.000] Directory '/src/project' has no containing package.json scope according to cache. +Info 110 [00:03:09.000] Starting updateGraphWorker: Project: /src/project/tsconfig.json +Info 111 [00:03:10.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. +Info 112 [00:03:11.000] File '/a/package.json' does not exist according to earlier cached lookups. +Info 113 [00:03:12.000] Directory '/' has no containing package.json scope according to cache. +Info 114 [00:03:13.000] Directory '/src/project/node_modules/pkg0' resolves to '/src/project/node_modules/pkg0/package.json' scope according to cache. Info 115 [00:03:14.000] Directory '/src/project' has no containing package.json scope according to cache. -Info 116 [00:03:15.000] Directory '/src/project' has no containing package.json scope according to cache. -Info 117 [00:03:16.000] Directory '/src/project/node_modules/@types/pkg4' has no containing package.json scope according to cache. +Info 116 [00:03:15.000] Directory '/src/project/node_modules/pkg2' resolves to '/src/project/node_modules/pkg2/package.json' scope according to cache. +Info 117 [00:03:16.000] Directory '/src/project' has no containing package.json scope according to cache. Info 118 [00:03:17.000] Directory '/src/project' has no containing package.json scope according to cache. -Info 119 [00:03:18.000] Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. -Info 120 [00:03:19.000] Reusing resolution of module 'pkg1' from '/src/project/fileWithImports.ts' of old program, it was not resolved. -Info 121 [00:03:20.000] Directory '/src/project/node_modules/pkg0' resolves to '/src/project/node_modules/pkg0/package.json' scope according to cache. -Info 122 [00:03:21.000] Directory '/src/project' has no containing package.json scope according to cache. -Info 123 [00:03:22.000] Reusing resolution of type reference directive 'pkg2' from '/src/project/fileWithTypeRefs.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. -Info 124 [00:03:23.000] Reusing resolution of type reference directive 'pkg3' from '/src/project/fileWithTypeRefs.ts' of old program, it was not resolved. -Info 125 [00:03:24.000] Directory '/src/project/node_modules/pkg2' resolves to '/src/project/node_modules/pkg2/package.json' scope according to cache. -Info 126 [00:03:25.000] Directory '/src/project' has no containing package.json scope according to cache. -Info 127 [00:03:26.000] ======== Resolving module 'pkg0' from '/src/project/randomFileForImport.ts'. ======== -Info 128 [00:03:27.000] Resolution for module 'pkg0' was found in cache from location '/src/project'. -Info 129 [00:03:28.000] ======== Module name 'pkg0' was successfully resolved to '/src/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. ======== -Info 130 [00:03:29.000] Directory '/src/project' has no containing package.json scope according to cache. -Info 131 [00:03:30.000] Reusing resolution of type reference directive 'pkg4' from '/src/project/__inferred type names__.ts' of old program, it was successfully resolved to '/src/project/node_modules/@types/pkg4/index.d.ts'. -Info 132 [00:03:31.000] Directory '/src/project/node_modules/@types/pkg4' has no containing package.json scope according to cache. -Info 133 [00:03:32.000] Directory '/a/lib' has no containing package.json scope according to cache. -Info 134 [00:03:33.000] Finishing updateGraphWorker: Project: /src/project/tsconfig.json Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 135 [00:03:34.000] Different program with same set of files -Info 136 [00:03:35.000] modify randomFileForTypeRef by adding typeRef -Info 137 [00:03:36.000] request: +Info 119 [00:03:18.000] Directory '/src/project' has no containing package.json scope according to cache. +Info 120 [00:03:19.000] Directory '/src/project/node_modules/@types/pkg4' has no containing package.json scope according to cache. +Info 121 [00:03:20.000] Directory '/src/project' has no containing package.json scope according to cache. +Info 122 [00:03:21.000] Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. +Info 123 [00:03:22.000] Reusing resolution of module 'pkg1' from '/src/project/fileWithImports.ts' of old program, it was not resolved. +Info 124 [00:03:23.000] Directory '/src/project/node_modules/pkg0' resolves to '/src/project/node_modules/pkg0/package.json' scope according to cache. +Info 125 [00:03:24.000] Directory '/src/project' has no containing package.json scope according to cache. +Info 126 [00:03:25.000] Reusing resolution of type reference directive 'pkg2' from '/src/project/fileWithTypeRefs.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. +Info 127 [00:03:26.000] Reusing resolution of type reference directive 'pkg3' from '/src/project/fileWithTypeRefs.ts' of old program, it was not resolved. +Info 128 [00:03:27.000] Directory '/src/project/node_modules/pkg2' resolves to '/src/project/node_modules/pkg2/package.json' scope according to cache. +Info 129 [00:03:28.000] Directory '/src/project' has no containing package.json scope according to cache. +Info 130 [00:03:29.000] ======== Resolving module 'pkg0' from '/src/project/randomFileForImport.ts'. ======== +Info 131 [00:03:30.000] Resolution for module 'pkg0' was found in cache from location '/src/project'. +Info 132 [00:03:31.000] ======== Module name 'pkg0' was successfully resolved to '/src/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. ======== +Info 133 [00:03:32.000] Directory '/src/project' has no containing package.json scope according to cache. +Info 134 [00:03:33.000] Reusing resolution of type reference directive 'pkg4' from '/src/project/__inferred type names__.ts' of old program, it was successfully resolved to '/src/project/node_modules/@types/pkg4/index.d.ts'. +Info 135 [00:03:34.000] Directory '/src/project/node_modules/@types/pkg4' has no containing package.json scope according to cache. +Info 136 [00:03:35.000] Directory '/a/lib' has no containing package.json scope according to cache. +Info 137 [00:03:36.000] Finishing updateGraphWorker: Project: /src/project/tsconfig.json Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 138 [00:03:37.000] Different program with same set of files +Info 139 [00:03:38.000] modify randomFileForTypeRef by adding typeRef +Info 140 [00:03:39.000] request: { "command": "change", "arguments": { @@ -989,46 +992,46 @@ FsWatchesRecursive:: /src/project/node_modules/@types: {} -Info 138 [00:03:37.000] response: +Info 141 [00:03:40.000] response: { "responseRequired": false } -Info 139 [00:03:38.000] Starting updateGraphWorker: Project: /src/project/tsconfig.json -Info 140 [00:03:39.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. -Info 141 [00:03:40.000] File '/a/package.json' does not exist according to earlier cached lookups. -Info 142 [00:03:41.000] Directory '/' has no containing package.json scope according to cache. -Info 143 [00:03:42.000] Directory '/src/project/node_modules/pkg0' resolves to '/src/project/node_modules/pkg0/package.json' scope according to cache. -Info 144 [00:03:43.000] Directory '/src/project' has no containing package.json scope according to cache. -Info 145 [00:03:44.000] Directory '/src/project/node_modules/pkg2' resolves to '/src/project/node_modules/pkg2/package.json' scope according to cache. -Info 146 [00:03:45.000] Directory '/src/project' has no containing package.json scope according to cache. +Info 142 [00:03:41.000] Starting updateGraphWorker: Project: /src/project/tsconfig.json +Info 143 [00:03:42.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. +Info 144 [00:03:43.000] File '/a/package.json' does not exist according to earlier cached lookups. +Info 145 [00:03:44.000] Directory '/' has no containing package.json scope according to cache. +Info 146 [00:03:45.000] Directory '/src/project/node_modules/pkg0' resolves to '/src/project/node_modules/pkg0/package.json' scope according to cache. Info 147 [00:03:46.000] Directory '/src/project' has no containing package.json scope according to cache. -Info 148 [00:03:47.000] Directory '/src/project' has no containing package.json scope according to cache. -Info 149 [00:03:48.000] Directory '/src/project/node_modules/@types/pkg4' has no containing package.json scope according to cache. +Info 148 [00:03:47.000] Directory '/src/project/node_modules/pkg2' resolves to '/src/project/node_modules/pkg2/package.json' scope according to cache. +Info 149 [00:03:48.000] Directory '/src/project' has no containing package.json scope according to cache. Info 150 [00:03:49.000] Directory '/src/project' has no containing package.json scope according to cache. -Info 151 [00:03:50.000] Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. -Info 152 [00:03:51.000] Reusing resolution of module 'pkg1' from '/src/project/fileWithImports.ts' of old program, it was not resolved. -Info 153 [00:03:52.000] Directory '/src/project/node_modules/pkg0' resolves to '/src/project/node_modules/pkg0/package.json' scope according to cache. -Info 154 [00:03:53.000] Directory '/src/project' has no containing package.json scope according to cache. -Info 155 [00:03:54.000] Reusing resolution of type reference directive 'pkg2' from '/src/project/fileWithTypeRefs.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. -Info 156 [00:03:55.000] Reusing resolution of type reference directive 'pkg3' from '/src/project/fileWithTypeRefs.ts' of old program, it was not resolved. -Info 157 [00:03:56.000] Directory '/src/project/node_modules/pkg2' resolves to '/src/project/node_modules/pkg2/package.json' scope according to cache. -Info 158 [00:03:57.000] Directory '/src/project' has no containing package.json scope according to cache. -Info 159 [00:03:58.000] Reusing resolution of module 'pkg0' from '/src/project/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. -Info 160 [00:03:59.000] Directory '/src/project' has no containing package.json scope according to cache. -Info 161 [00:04:00.000] ======== Resolving type reference directive 'pkg2', containing file '/src/project/randomFileForTypeRef.ts'. ======== -Info 162 [00:04:01.000] Resolution for type reference directive 'pkg2' was found in cache from location '/src/project'. -Info 163 [00:04:02.000] ======== Type reference directive 'pkg2' was successfully resolved to '/src/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1', primary: false. ======== -Info 164 [00:04:03.000] Reusing resolution of type reference directive 'pkg4' from '/src/project/__inferred type names__.ts' of old program, it was successfully resolved to '/src/project/node_modules/@types/pkg4/index.d.ts'. -Info 165 [00:04:04.000] Directory '/src/project/node_modules/@types/pkg4' has no containing package.json scope according to cache. -Info 166 [00:04:05.000] Directory '/a/lib' has no containing package.json scope according to cache. -Info 167 [00:04:06.000] Finishing updateGraphWorker: Project: /src/project/tsconfig.json Version: 3 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 168 [00:04:07.000] Different program with same set of files -Info 169 [00:04:08.000] write file not resolved by import -Info 170 [00:04:11.000] DirectoryWatcher:: Triggered with /src/project/node_modules/pkg1/require.d.ts :: WatchInfo: /src/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 171 [00:04:12.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /src/project/node_modules/pkg1/require.d.ts :: WatchInfo: /src/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 172 [00:04:13.000] DirectoryWatcher:: Triggered with /src/project/node_modules/pkg1/require.d.ts :: WatchInfo: /src/project/node_modules 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations -Info 173 [00:04:14.000] Scheduled: /src/project/tsconfig.jsonFailedLookupInvalidation -Info 174 [00:04:15.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /src/project/node_modules/pkg1/require.d.ts :: WatchInfo: /src/project/node_modules 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations +Info 151 [00:03:50.000] Directory '/src/project' has no containing package.json scope according to cache. +Info 152 [00:03:51.000] Directory '/src/project/node_modules/@types/pkg4' has no containing package.json scope according to cache. +Info 153 [00:03:52.000] Directory '/src/project' has no containing package.json scope according to cache. +Info 154 [00:03:53.000] Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. +Info 155 [00:03:54.000] Reusing resolution of module 'pkg1' from '/src/project/fileWithImports.ts' of old program, it was not resolved. +Info 156 [00:03:55.000] Directory '/src/project/node_modules/pkg0' resolves to '/src/project/node_modules/pkg0/package.json' scope according to cache. +Info 157 [00:03:56.000] Directory '/src/project' has no containing package.json scope according to cache. +Info 158 [00:03:57.000] Reusing resolution of type reference directive 'pkg2' from '/src/project/fileWithTypeRefs.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. +Info 159 [00:03:58.000] Reusing resolution of type reference directive 'pkg3' from '/src/project/fileWithTypeRefs.ts' of old program, it was not resolved. +Info 160 [00:03:59.000] Directory '/src/project/node_modules/pkg2' resolves to '/src/project/node_modules/pkg2/package.json' scope according to cache. +Info 161 [00:04:00.000] Directory '/src/project' has no containing package.json scope according to cache. +Info 162 [00:04:01.000] Reusing resolution of module 'pkg0' from '/src/project/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. +Info 163 [00:04:02.000] Directory '/src/project' has no containing package.json scope according to cache. +Info 164 [00:04:03.000] ======== Resolving type reference directive 'pkg2', containing file '/src/project/randomFileForTypeRef.ts'. ======== +Info 165 [00:04:04.000] Resolution for type reference directive 'pkg2' was found in cache from location '/src/project'. +Info 166 [00:04:05.000] ======== Type reference directive 'pkg2' was successfully resolved to '/src/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1', primary: false. ======== +Info 167 [00:04:06.000] Reusing resolution of type reference directive 'pkg4' from '/src/project/__inferred type names__.ts' of old program, it was successfully resolved to '/src/project/node_modules/@types/pkg4/index.d.ts'. +Info 168 [00:04:07.000] Directory '/src/project/node_modules/@types/pkg4' has no containing package.json scope according to cache. +Info 169 [00:04:08.000] Directory '/a/lib' has no containing package.json scope according to cache. +Info 170 [00:04:09.000] Finishing updateGraphWorker: Project: /src/project/tsconfig.json Version: 3 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 171 [00:04:10.000] Different program with same set of files +Info 172 [00:04:11.000] write file not resolved by import +Info 173 [00:04:14.000] DirectoryWatcher:: Triggered with /src/project/node_modules/pkg1/require.d.ts :: WatchInfo: /src/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 174 [00:04:15.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /src/project/node_modules/pkg1/require.d.ts :: WatchInfo: /src/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 175 [00:04:16.000] DirectoryWatcher:: Triggered with /src/project/node_modules/pkg1/require.d.ts :: WatchInfo: /src/project/node_modules 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations +Info 176 [00:04:17.000] Scheduled: /src/project/tsconfig.jsonFailedLookupInvalidation +Info 177 [00:04:18.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /src/project/node_modules/pkg1/require.d.ts :: WatchInfo: /src/project/node_modules 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations Before running timeout callbacks //// [/src/project/node_modules/pkg1/require.d.ts] export interface RequireInterface1 {} @@ -1068,9 +1071,9 @@ FsWatchesRecursive:: /src/project/node_modules/@types: {} -Info 175 [00:04:16.000] Running: /src/project/tsconfig.jsonFailedLookupInvalidation -Info 176 [00:04:17.000] Scheduled: /src/project/tsconfig.json -Info 177 [00:04:18.000] Scheduled: *ensureProjectForOpenFiles* +Info 178 [00:04:19.000] Running: /src/project/tsconfig.jsonFailedLookupInvalidation +Info 179 [00:04:20.000] Scheduled: /src/project/tsconfig.json +Info 180 [00:04:21.000] Scheduled: *ensureProjectForOpenFiles* After running timeout callbacks PolledWatches:: @@ -1143,55 +1146,55 @@ FsWatchesRecursive:: /src/project/node_modules/@types: {} -Info 178 [00:04:19.000] Running: /src/project/tsconfig.json -Info 179 [00:04:20.000] Starting updateGraphWorker: Project: /src/project/tsconfig.json -Info 180 [00:04:21.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. -Info 181 [00:04:22.000] File '/a/package.json' does not exist according to earlier cached lookups. -Info 182 [00:04:23.000] Directory '/' has no containing package.json scope according to cache. -Info 183 [00:04:24.000] Directory '/src/project/node_modules/pkg0' resolves to '/src/project/node_modules/pkg0/package.json' scope according to cache. -Info 184 [00:04:25.000] Directory '/src/project' has no containing package.json scope according to cache. -Info 185 [00:04:26.000] Directory '/src/project/node_modules/pkg2' resolves to '/src/project/node_modules/pkg2/package.json' scope according to cache. -Info 186 [00:04:27.000] Directory '/src/project' has no containing package.json scope according to cache. +Info 181 [00:04:22.000] Running: /src/project/tsconfig.json +Info 182 [00:04:23.000] Starting updateGraphWorker: Project: /src/project/tsconfig.json +Info 183 [00:04:24.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. +Info 184 [00:04:25.000] File '/a/package.json' does not exist according to earlier cached lookups. +Info 185 [00:04:26.000] Directory '/' has no containing package.json scope according to cache. +Info 186 [00:04:27.000] Directory '/src/project/node_modules/pkg0' resolves to '/src/project/node_modules/pkg0/package.json' scope according to cache. Info 187 [00:04:28.000] Directory '/src/project' has no containing package.json scope according to cache. -Info 188 [00:04:29.000] Directory '/src/project' has no containing package.json scope according to cache. -Info 189 [00:04:30.000] Directory '/src/project/node_modules/@types/pkg4' has no containing package.json scope according to cache. +Info 188 [00:04:29.000] Directory '/src/project/node_modules/pkg2' resolves to '/src/project/node_modules/pkg2/package.json' scope according to cache. +Info 189 [00:04:30.000] Directory '/src/project' has no containing package.json scope according to cache. Info 190 [00:04:31.000] Directory '/src/project' has no containing package.json scope according to cache. -Info 191 [00:04:32.000] Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. -Info 192 [00:04:33.000] ======== Resolving module 'pkg1' from '/src/project/fileWithImports.ts'. ======== -Info 193 [00:04:34.000] Explicitly specified module resolution kind: 'Node16'. -Info 194 [00:04:35.000] Resolving in CJS mode with conditions 'node', 'require', 'types'. -Info 195 [00:04:36.000] File '/src/project/package.json' does not exist according to earlier cached lookups. -Info 196 [00:04:37.000] File '/src/package.json' does not exist according to earlier cached lookups. -Info 197 [00:04:38.000] File '/package.json' does not exist according to earlier cached lookups. -Info 198 [00:04:39.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration. -Info 199 [00:04:40.000] Found 'package.json' at '/src/project/node_modules/pkg1/package.json'. -Info 200 [00:04:41.000] Saw non-matching condition 'import'. -Info 201 [00:04:42.000] Matched 'exports' condition 'require'. -Info 202 [00:04:43.000] Using 'exports' subpath '.' with target './require.js'. -Info 203 [00:04:44.000] File name '/src/project/node_modules/pkg1/require.js' has a '.js' extension - stripping it. -Info 204 [00:04:45.000] File '/src/project/node_modules/pkg1/require.ts' does not exist. -Info 205 [00:04:46.000] File '/src/project/node_modules/pkg1/require.tsx' does not exist. -Info 206 [00:04:47.000] File '/src/project/node_modules/pkg1/require.d.ts' exist - use it as a name resolution result. -Info 207 [00:04:48.000] Resolving real path for '/src/project/node_modules/pkg1/require.d.ts', result '/src/project/node_modules/pkg1/require.d.ts'. -Info 208 [00:04:49.000] ======== Module name 'pkg1' was successfully resolved to '/src/project/node_modules/pkg1/require.d.ts' with Package ID 'pkg1/require.d.ts@0.0.1'. ======== -Info 209 [00:04:50.000] Directory '/src/project/node_modules/pkg0' resolves to '/src/project/node_modules/pkg0/package.json' scope according to cache. -Info 210 [00:04:51.000] File '/src/project/node_modules/pkg1/package.json' exists according to earlier cached lookups. -Info 211 [00:04:52.000] Directory '/src/project' has no containing package.json scope according to cache. -Info 212 [00:04:53.000] Reusing resolution of type reference directive 'pkg2' from '/src/project/fileWithTypeRefs.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. -Info 213 [00:04:54.000] Reusing resolution of type reference directive 'pkg3' from '/src/project/fileWithTypeRefs.ts' of old program, it was not resolved. -Info 214 [00:04:55.000] Directory '/src/project/node_modules/pkg2' resolves to '/src/project/node_modules/pkg2/package.json' scope according to cache. -Info 215 [00:04:56.000] Directory '/src/project' has no containing package.json scope according to cache. -Info 216 [00:04:57.000] Reusing resolution of module 'pkg0' from '/src/project/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. -Info 217 [00:04:58.000] Directory '/src/project' has no containing package.json scope according to cache. -Info 218 [00:04:59.000] Reusing resolution of type reference directive 'pkg2' from '/src/project/randomFileForTypeRef.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. -Info 219 [00:05:00.000] Reusing resolution of type reference directive 'pkg4' from '/src/project/__inferred type names__.ts' of old program, it was successfully resolved to '/src/project/node_modules/@types/pkg4/index.d.ts'. -Info 220 [00:05:01.000] Directory '/src/project/node_modules/@types/pkg4' has no containing package.json scope according to cache. -Info 221 [00:05:02.000] Directory '/a/lib' has no containing package.json scope according to cache. -Info 222 [00:05:03.000] DirectoryWatcher:: Close:: WatchInfo: /src/project 0 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations -Info 223 [00:05:04.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /src/project 0 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations -Info 224 [00:05:05.000] Finishing updateGraphWorker: Project: /src/project/tsconfig.json Version: 4 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 225 [00:05:06.000] Project '/src/project/tsconfig.json' (Configured) -Info 226 [00:05:07.000] Files (9) +Info 191 [00:04:32.000] Directory '/src/project' has no containing package.json scope according to cache. +Info 192 [00:04:33.000] Directory '/src/project/node_modules/@types/pkg4' has no containing package.json scope according to cache. +Info 193 [00:04:34.000] Directory '/src/project' has no containing package.json scope according to cache. +Info 194 [00:04:35.000] Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. +Info 195 [00:04:36.000] ======== Resolving module 'pkg1' from '/src/project/fileWithImports.ts'. ======== +Info 196 [00:04:37.000] Explicitly specified module resolution kind: 'Node16'. +Info 197 [00:04:38.000] Resolving in CJS mode with conditions 'node', 'require', 'types'. +Info 198 [00:04:39.000] File '/src/project/package.json' does not exist according to earlier cached lookups. +Info 199 [00:04:40.000] File '/src/package.json' does not exist according to earlier cached lookups. +Info 200 [00:04:41.000] File '/package.json' does not exist according to earlier cached lookups. +Info 201 [00:04:42.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration. +Info 202 [00:04:43.000] Found 'package.json' at '/src/project/node_modules/pkg1/package.json'. +Info 203 [00:04:44.000] Saw non-matching condition 'import'. +Info 204 [00:04:45.000] Matched 'exports' condition 'require'. +Info 205 [00:04:46.000] Using 'exports' subpath '.' with target './require.js'. +Info 206 [00:04:47.000] File name '/src/project/node_modules/pkg1/require.js' has a '.js' extension - stripping it. +Info 207 [00:04:48.000] File '/src/project/node_modules/pkg1/require.ts' does not exist. +Info 208 [00:04:49.000] File '/src/project/node_modules/pkg1/require.tsx' does not exist. +Info 209 [00:04:50.000] File '/src/project/node_modules/pkg1/require.d.ts' exist - use it as a name resolution result. +Info 210 [00:04:51.000] Resolving real path for '/src/project/node_modules/pkg1/require.d.ts', result '/src/project/node_modules/pkg1/require.d.ts'. +Info 211 [00:04:52.000] ======== Module name 'pkg1' was successfully resolved to '/src/project/node_modules/pkg1/require.d.ts' with Package ID 'pkg1/require.d.ts@0.0.1'. ======== +Info 212 [00:04:53.000] Directory '/src/project/node_modules/pkg0' resolves to '/src/project/node_modules/pkg0/package.json' scope according to cache. +Info 213 [00:04:54.000] File '/src/project/node_modules/pkg1/package.json' exists according to earlier cached lookups. +Info 214 [00:04:55.000] Directory '/src/project' has no containing package.json scope according to cache. +Info 215 [00:04:56.000] Reusing resolution of type reference directive 'pkg2' from '/src/project/fileWithTypeRefs.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. +Info 216 [00:04:57.000] Reusing resolution of type reference directive 'pkg3' from '/src/project/fileWithTypeRefs.ts' of old program, it was not resolved. +Info 217 [00:04:58.000] Directory '/src/project/node_modules/pkg2' resolves to '/src/project/node_modules/pkg2/package.json' scope according to cache. +Info 218 [00:04:59.000] Directory '/src/project' has no containing package.json scope according to cache. +Info 219 [00:05:00.000] Reusing resolution of module 'pkg0' from '/src/project/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. +Info 220 [00:05:01.000] Directory '/src/project' has no containing package.json scope according to cache. +Info 221 [00:05:02.000] Reusing resolution of type reference directive 'pkg2' from '/src/project/randomFileForTypeRef.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. +Info 222 [00:05:03.000] Reusing resolution of type reference directive 'pkg4' from '/src/project/__inferred type names__.ts' of old program, it was successfully resolved to '/src/project/node_modules/@types/pkg4/index.d.ts'. +Info 223 [00:05:04.000] Directory '/src/project/node_modules/@types/pkg4' has no containing package.json scope according to cache. +Info 224 [00:05:05.000] Directory '/a/lib' has no containing package.json scope according to cache. +Info 225 [00:05:06.000] DirectoryWatcher:: Close:: WatchInfo: /src/project 0 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations +Info 226 [00:05:07.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /src/project 0 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations +Info 227 [00:05:08.000] Finishing updateGraphWorker: Project: /src/project/tsconfig.json Version: 4 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 228 [00:05:09.000] Project '/src/project/tsconfig.json' (Configured) +Info 229 [00:05:10.000] Files (9) /a/lib/lib.d.ts /src/project/node_modules/pkg0/import.d.ts /src/project/node_modules/pkg1/require.d.ts @@ -1231,28 +1234,28 @@ Info 226 [00:05:07.000] Files (9) Entry point for implicit type library 'pkg4' File is CommonJS module because 'package.json' was not found -Info 227 [00:05:08.000] ----------------------------------------------- -Info 228 [00:05:09.000] Running: *ensureProjectForOpenFiles* -Info 229 [00:05:10.000] Before ensureProjectForOpenFiles: -Info 230 [00:05:11.000] Project '/src/project/tsconfig.json' (Configured) -Info 230 [00:05:12.000] Files (9) - -Info 230 [00:05:13.000] ----------------------------------------------- -Info 230 [00:05:14.000] Open files: -Info 230 [00:05:15.000] FileName: /src/project/randomFileForImport.ts ProjectRootPath: undefined -Info 230 [00:05:16.000] Projects: /src/project/tsconfig.json -Info 230 [00:05:17.000] FileName: /src/project/randomFileForTypeRef.ts ProjectRootPath: undefined -Info 230 [00:05:18.000] Projects: /src/project/tsconfig.json -Info 230 [00:05:19.000] After ensureProjectForOpenFiles: -Info 231 [00:05:20.000] Project '/src/project/tsconfig.json' (Configured) -Info 231 [00:05:21.000] Files (9) - -Info 231 [00:05:22.000] ----------------------------------------------- -Info 231 [00:05:23.000] Open files: -Info 231 [00:05:24.000] FileName: /src/project/randomFileForImport.ts ProjectRootPath: undefined -Info 231 [00:05:25.000] Projects: /src/project/tsconfig.json -Info 231 [00:05:26.000] FileName: /src/project/randomFileForTypeRef.ts ProjectRootPath: undefined -Info 231 [00:05:27.000] Projects: /src/project/tsconfig.json +Info 230 [00:05:11.000] ----------------------------------------------- +Info 231 [00:05:12.000] Running: *ensureProjectForOpenFiles* +Info 232 [00:05:13.000] Before ensureProjectForOpenFiles: +Info 233 [00:05:14.000] Project '/src/project/tsconfig.json' (Configured) +Info 233 [00:05:15.000] Files (9) + +Info 233 [00:05:16.000] ----------------------------------------------- +Info 233 [00:05:17.000] Open files: +Info 233 [00:05:18.000] FileName: /src/project/randomFileForImport.ts ProjectRootPath: undefined +Info 233 [00:05:19.000] Projects: /src/project/tsconfig.json +Info 233 [00:05:20.000] FileName: /src/project/randomFileForTypeRef.ts ProjectRootPath: undefined +Info 233 [00:05:21.000] Projects: /src/project/tsconfig.json +Info 233 [00:05:22.000] After ensureProjectForOpenFiles: +Info 234 [00:05:23.000] Project '/src/project/tsconfig.json' (Configured) +Info 234 [00:05:24.000] Files (9) + +Info 234 [00:05:25.000] ----------------------------------------------- +Info 234 [00:05:26.000] Open files: +Info 234 [00:05:27.000] FileName: /src/project/randomFileForImport.ts ProjectRootPath: undefined +Info 234 [00:05:28.000] Projects: /src/project/tsconfig.json +Info 234 [00:05:29.000] FileName: /src/project/randomFileForTypeRef.ts ProjectRootPath: undefined +Info 234 [00:05:30.000] Projects: /src/project/tsconfig.json After running timeout callbacks PolledWatches:: @@ -1289,12 +1292,12 @@ FsWatchesRecursive:: /src/project/node_modules/@types: {} -Info 231 [00:05:28.000] write file not resolved by typeRef -Info 232 [00:05:31.000] DirectoryWatcher:: Triggered with /src/project/node_modules/pkg3/require.d.ts :: WatchInfo: /src/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 233 [00:05:32.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /src/project/node_modules/pkg3/require.d.ts :: WatchInfo: /src/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 234 [00:05:33.000] DirectoryWatcher:: Triggered with /src/project/node_modules/pkg3/require.d.ts :: WatchInfo: /src/project/node_modules 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations -Info 235 [00:05:34.000] Scheduled: /src/project/tsconfig.jsonFailedLookupInvalidation -Info 236 [00:05:35.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /src/project/node_modules/pkg3/require.d.ts :: WatchInfo: /src/project/node_modules 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations +Info 234 [00:05:31.000] write file not resolved by typeRef +Info 235 [00:05:34.000] DirectoryWatcher:: Triggered with /src/project/node_modules/pkg3/require.d.ts :: WatchInfo: /src/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 236 [00:05:35.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /src/project/node_modules/pkg3/require.d.ts :: WatchInfo: /src/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 237 [00:05:36.000] DirectoryWatcher:: Triggered with /src/project/node_modules/pkg3/require.d.ts :: WatchInfo: /src/project/node_modules 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations +Info 238 [00:05:37.000] Scheduled: /src/project/tsconfig.jsonFailedLookupInvalidation +Info 239 [00:05:38.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /src/project/node_modules/pkg3/require.d.ts :: WatchInfo: /src/project/node_modules 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations Before running timeout callbacks //// [/src/project/node_modules/pkg3/require.d.ts] export interface RequireInterface3 {} @@ -1334,9 +1337,9 @@ FsWatchesRecursive:: /src/project/node_modules/@types: {} -Info 237 [00:05:36.000] Running: /src/project/tsconfig.jsonFailedLookupInvalidation -Info 238 [00:05:37.000] Scheduled: /src/project/tsconfig.json -Info 239 [00:05:38.000] Scheduled: *ensureProjectForOpenFiles* +Info 240 [00:05:39.000] Running: /src/project/tsconfig.jsonFailedLookupInvalidation +Info 241 [00:05:40.000] Scheduled: /src/project/tsconfig.json +Info 242 [00:05:41.000] Scheduled: *ensureProjectForOpenFiles* After running timeout callbacks PolledWatches:: @@ -1409,51 +1412,51 @@ FsWatchesRecursive:: /src/project/node_modules/@types: {} -Info 240 [00:05:39.000] Running: /src/project/tsconfig.json -Info 241 [00:05:40.000] Starting updateGraphWorker: Project: /src/project/tsconfig.json -Info 242 [00:05:41.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. -Info 243 [00:05:42.000] File '/a/package.json' does not exist according to earlier cached lookups. -Info 244 [00:05:43.000] Directory '/' has no containing package.json scope according to cache. -Info 245 [00:05:44.000] Directory '/src/project/node_modules/pkg0' resolves to '/src/project/node_modules/pkg0/package.json' scope according to cache. -Info 246 [00:05:45.000] Directory '/src/project/node_modules/pkg1' resolves to '/src/project/node_modules/pkg1/package.json' scope according to cache. -Info 247 [00:05:46.000] Directory '/src/project' has no containing package.json scope according to cache. -Info 248 [00:05:47.000] Directory '/src/project/node_modules/pkg2' resolves to '/src/project/node_modules/pkg2/package.json' scope according to cache. -Info 249 [00:05:48.000] Directory '/src/project' has no containing package.json scope according to cache. +Info 243 [00:05:42.000] Running: /src/project/tsconfig.json +Info 244 [00:05:43.000] Starting updateGraphWorker: Project: /src/project/tsconfig.json +Info 245 [00:05:44.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. +Info 246 [00:05:45.000] File '/a/package.json' does not exist according to earlier cached lookups. +Info 247 [00:05:46.000] Directory '/' has no containing package.json scope according to cache. +Info 248 [00:05:47.000] Directory '/src/project/node_modules/pkg0' resolves to '/src/project/node_modules/pkg0/package.json' scope according to cache. +Info 249 [00:05:48.000] Directory '/src/project/node_modules/pkg1' resolves to '/src/project/node_modules/pkg1/package.json' scope according to cache. Info 250 [00:05:49.000] Directory '/src/project' has no containing package.json scope according to cache. -Info 251 [00:05:50.000] Directory '/src/project' has no containing package.json scope according to cache. -Info 252 [00:05:51.000] Directory '/src/project/node_modules/@types/pkg4' has no containing package.json scope according to cache. +Info 251 [00:05:50.000] Directory '/src/project/node_modules/pkg2' resolves to '/src/project/node_modules/pkg2/package.json' scope according to cache. +Info 252 [00:05:51.000] Directory '/src/project' has no containing package.json scope according to cache. Info 253 [00:05:52.000] Directory '/src/project' has no containing package.json scope according to cache. -Info 254 [00:05:53.000] Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. -Info 255 [00:05:54.000] Reusing resolution of module 'pkg1' from '/src/project/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg1/require.d.ts' with Package ID 'pkg1/require.d.ts@0.0.1'. -Info 256 [00:05:55.000] Directory '/src/project/node_modules/pkg0' resolves to '/src/project/node_modules/pkg0/package.json' scope according to cache. -Info 257 [00:05:56.000] Directory '/src/project/node_modules/pkg1' resolves to '/src/project/node_modules/pkg1/package.json' scope according to cache. -Info 258 [00:05:57.000] Directory '/src/project' has no containing package.json scope according to cache. -Info 259 [00:05:58.000] Reusing resolution of type reference directive 'pkg2' from '/src/project/fileWithTypeRefs.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. -Info 260 [00:05:59.000] ======== Resolving type reference directive 'pkg3', containing file '/src/project/fileWithTypeRefs.ts', root directory '/src/project/node_modules/@types'. ======== -Info 261 [00:06:00.000] Resolving with primary search path '/src/project/node_modules/@types'. -Info 262 [00:06:01.000] Looking up in 'node_modules' folder, initial location '/src/project'. -Info 263 [00:06:02.000] Found 'package.json' at '/src/project/node_modules/pkg3/package.json'. -Info 264 [00:06:03.000] Saw non-matching condition 'import'. -Info 265 [00:06:04.000] Matched 'exports' condition 'require'. -Info 266 [00:06:05.000] Using 'exports' subpath '.' with target './require.js'. -Info 267 [00:06:06.000] File name '/src/project/node_modules/pkg3/require.js' has a '.js' extension - stripping it. -Info 268 [00:06:07.000] File '/src/project/node_modules/pkg3/require.d.ts' exist - use it as a name resolution result. -Info 269 [00:06:08.000] Resolving real path for '/src/project/node_modules/pkg3/require.d.ts', result '/src/project/node_modules/pkg3/require.d.ts'. -Info 270 [00:06:09.000] ======== Type reference directive 'pkg3' was successfully resolved to '/src/project/node_modules/pkg3/require.d.ts' with Package ID 'pkg3/require.d.ts@0.0.1', primary: false. ======== -Info 271 [00:06:10.000] Directory '/src/project/node_modules/pkg2' resolves to '/src/project/node_modules/pkg2/package.json' scope according to cache. -Info 272 [00:06:11.000] File '/src/project/node_modules/pkg3/package.json' exists according to earlier cached lookups. -Info 273 [00:06:12.000] Directory '/src/project' has no containing package.json scope according to cache. -Info 274 [00:06:13.000] Reusing resolution of module 'pkg0' from '/src/project/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. -Info 275 [00:06:14.000] Directory '/src/project' has no containing package.json scope according to cache. -Info 276 [00:06:15.000] Reusing resolution of type reference directive 'pkg2' from '/src/project/randomFileForTypeRef.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. -Info 277 [00:06:16.000] Reusing resolution of type reference directive 'pkg4' from '/src/project/__inferred type names__.ts' of old program, it was successfully resolved to '/src/project/node_modules/@types/pkg4/index.d.ts'. -Info 278 [00:06:17.000] Directory '/src/project/node_modules/@types/pkg4' has no containing package.json scope according to cache. -Info 279 [00:06:18.000] Directory '/a/lib' has no containing package.json scope according to cache. -Info 280 [00:06:19.000] DirectoryWatcher:: Close:: WatchInfo: /src/project/node_modules 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations -Info 281 [00:06:20.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /src/project/node_modules 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations -Info 282 [00:06:21.000] Finishing updateGraphWorker: Project: /src/project/tsconfig.json Version: 5 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 283 [00:06:22.000] Project '/src/project/tsconfig.json' (Configured) -Info 284 [00:06:23.000] Files (10) +Info 254 [00:05:53.000] Directory '/src/project' has no containing package.json scope according to cache. +Info 255 [00:05:54.000] Directory '/src/project/node_modules/@types/pkg4' has no containing package.json scope according to cache. +Info 256 [00:05:55.000] Directory '/src/project' has no containing package.json scope according to cache. +Info 257 [00:05:56.000] Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. +Info 258 [00:05:57.000] Reusing resolution of module 'pkg1' from '/src/project/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg1/require.d.ts' with Package ID 'pkg1/require.d.ts@0.0.1'. +Info 259 [00:05:58.000] Directory '/src/project/node_modules/pkg0' resolves to '/src/project/node_modules/pkg0/package.json' scope according to cache. +Info 260 [00:05:59.000] Directory '/src/project/node_modules/pkg1' resolves to '/src/project/node_modules/pkg1/package.json' scope according to cache. +Info 261 [00:06:00.000] Directory '/src/project' has no containing package.json scope according to cache. +Info 262 [00:06:01.000] Reusing resolution of type reference directive 'pkg2' from '/src/project/fileWithTypeRefs.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. +Info 263 [00:06:02.000] ======== Resolving type reference directive 'pkg3', containing file '/src/project/fileWithTypeRefs.ts', root directory '/src/project/node_modules/@types'. ======== +Info 264 [00:06:03.000] Resolving with primary search path '/src/project/node_modules/@types'. +Info 265 [00:06:04.000] Looking up in 'node_modules' folder, initial location '/src/project'. +Info 266 [00:06:05.000] Found 'package.json' at '/src/project/node_modules/pkg3/package.json'. +Info 267 [00:06:06.000] Saw non-matching condition 'import'. +Info 268 [00:06:07.000] Matched 'exports' condition 'require'. +Info 269 [00:06:08.000] Using 'exports' subpath '.' with target './require.js'. +Info 270 [00:06:09.000] File name '/src/project/node_modules/pkg3/require.js' has a '.js' extension - stripping it. +Info 271 [00:06:10.000] File '/src/project/node_modules/pkg3/require.d.ts' exist - use it as a name resolution result. +Info 272 [00:06:11.000] Resolving real path for '/src/project/node_modules/pkg3/require.d.ts', result '/src/project/node_modules/pkg3/require.d.ts'. +Info 273 [00:06:12.000] ======== Type reference directive 'pkg3' was successfully resolved to '/src/project/node_modules/pkg3/require.d.ts' with Package ID 'pkg3/require.d.ts@0.0.1', primary: false. ======== +Info 274 [00:06:13.000] Directory '/src/project/node_modules/pkg2' resolves to '/src/project/node_modules/pkg2/package.json' scope according to cache. +Info 275 [00:06:14.000] File '/src/project/node_modules/pkg3/package.json' exists according to earlier cached lookups. +Info 276 [00:06:15.000] Directory '/src/project' has no containing package.json scope according to cache. +Info 277 [00:06:16.000] Reusing resolution of module 'pkg0' from '/src/project/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. +Info 278 [00:06:17.000] Directory '/src/project' has no containing package.json scope according to cache. +Info 279 [00:06:18.000] Reusing resolution of type reference directive 'pkg2' from '/src/project/randomFileForTypeRef.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. +Info 280 [00:06:19.000] Reusing resolution of type reference directive 'pkg4' from '/src/project/__inferred type names__.ts' of old program, it was successfully resolved to '/src/project/node_modules/@types/pkg4/index.d.ts'. +Info 281 [00:06:20.000] Directory '/src/project/node_modules/@types/pkg4' has no containing package.json scope according to cache. +Info 282 [00:06:21.000] Directory '/a/lib' has no containing package.json scope according to cache. +Info 283 [00:06:22.000] DirectoryWatcher:: Close:: WatchInfo: /src/project/node_modules 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations +Info 284 [00:06:23.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /src/project/node_modules 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations +Info 285 [00:06:24.000] Finishing updateGraphWorker: Project: /src/project/tsconfig.json Version: 5 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 286 [00:06:25.000] Project '/src/project/tsconfig.json' (Configured) +Info 287 [00:06:26.000] Files (10) /a/lib/lib.d.ts /src/project/node_modules/pkg0/import.d.ts /src/project/node_modules/pkg1/require.d.ts @@ -1497,28 +1500,28 @@ Info 284 [00:06:23.000] Files (10) Entry point for implicit type library 'pkg4' File is CommonJS module because 'package.json' was not found -Info 285 [00:06:24.000] ----------------------------------------------- -Info 286 [00:06:25.000] Running: *ensureProjectForOpenFiles* -Info 287 [00:06:26.000] Before ensureProjectForOpenFiles: -Info 288 [00:06:27.000] Project '/src/project/tsconfig.json' (Configured) -Info 288 [00:06:28.000] Files (10) - -Info 288 [00:06:29.000] ----------------------------------------------- -Info 288 [00:06:30.000] Open files: -Info 288 [00:06:31.000] FileName: /src/project/randomFileForImport.ts ProjectRootPath: undefined -Info 288 [00:06:32.000] Projects: /src/project/tsconfig.json -Info 288 [00:06:33.000] FileName: /src/project/randomFileForTypeRef.ts ProjectRootPath: undefined -Info 288 [00:06:34.000] Projects: /src/project/tsconfig.json -Info 288 [00:06:35.000] After ensureProjectForOpenFiles: -Info 289 [00:06:36.000] Project '/src/project/tsconfig.json' (Configured) -Info 289 [00:06:37.000] Files (10) - -Info 289 [00:06:38.000] ----------------------------------------------- -Info 289 [00:06:39.000] Open files: -Info 289 [00:06:40.000] FileName: /src/project/randomFileForImport.ts ProjectRootPath: undefined -Info 289 [00:06:41.000] Projects: /src/project/tsconfig.json -Info 289 [00:06:42.000] FileName: /src/project/randomFileForTypeRef.ts ProjectRootPath: undefined -Info 289 [00:06:43.000] Projects: /src/project/tsconfig.json +Info 288 [00:06:27.000] ----------------------------------------------- +Info 289 [00:06:28.000] Running: *ensureProjectForOpenFiles* +Info 290 [00:06:29.000] Before ensureProjectForOpenFiles: +Info 291 [00:06:30.000] Project '/src/project/tsconfig.json' (Configured) +Info 291 [00:06:31.000] Files (10) + +Info 291 [00:06:32.000] ----------------------------------------------- +Info 291 [00:06:33.000] Open files: +Info 291 [00:06:34.000] FileName: /src/project/randomFileForImport.ts ProjectRootPath: undefined +Info 291 [00:06:35.000] Projects: /src/project/tsconfig.json +Info 291 [00:06:36.000] FileName: /src/project/randomFileForTypeRef.ts ProjectRootPath: undefined +Info 291 [00:06:37.000] Projects: /src/project/tsconfig.json +Info 291 [00:06:38.000] After ensureProjectForOpenFiles: +Info 292 [00:06:39.000] Project '/src/project/tsconfig.json' (Configured) +Info 292 [00:06:40.000] Files (10) + +Info 292 [00:06:41.000] ----------------------------------------------- +Info 292 [00:06:42.000] Open files: +Info 292 [00:06:43.000] FileName: /src/project/randomFileForImport.ts ProjectRootPath: undefined +Info 292 [00:06:44.000] Projects: /src/project/tsconfig.json +Info 292 [00:06:45.000] FileName: /src/project/randomFileForTypeRef.ts ProjectRootPath: undefined +Info 292 [00:06:46.000] Projects: /src/project/tsconfig.json After running timeout callbacks PolledWatches:: @@ -1555,10 +1558,10 @@ FsWatchesRecursive:: /src/project/node_modules/@types: {} -Info 289 [00:06:44.000] modify package.json and that should re-resolve -Info 290 [00:06:48.000] FileWatcher:: Triggered with /src/project/node_modules/pkg1/package.json 1:: WatchInfo: /src/project/node_modules/pkg1/package.json 2000 undefined Project: /src/project/tsconfig.json WatchType: File location affecting resolution -Info 291 [00:06:49.000] Scheduled: /src/project/tsconfig.jsonFailedLookupInvalidation -Info 292 [00:06:50.000] Elapsed:: *ms FileWatcher:: Triggered with /src/project/node_modules/pkg1/package.json 1:: WatchInfo: /src/project/node_modules/pkg1/package.json 2000 undefined Project: /src/project/tsconfig.json WatchType: File location affecting resolution +Info 292 [00:06:47.000] modify package.json and that should re-resolve +Info 293 [00:06:51.000] FileWatcher:: Triggered with /src/project/node_modules/pkg1/package.json 1:: WatchInfo: /src/project/node_modules/pkg1/package.json 2000 undefined Project: /src/project/tsconfig.json WatchType: File location affecting resolution +Info 294 [00:06:52.000] Scheduled: /src/project/tsconfig.jsonFailedLookupInvalidation +Info 295 [00:06:53.000] Elapsed:: *ms FileWatcher:: Triggered with /src/project/node_modules/pkg1/package.json 1:: WatchInfo: /src/project/node_modules/pkg1/package.json 2000 undefined Project: /src/project/tsconfig.json WatchType: File location affecting resolution Before running timeout callbacks //// [/src/project/node_modules/pkg1/package.json] {"name":"pkg1","version":"0.0.1","exports":{"import":"./import.js","require":"./require1.js"}} @@ -1598,9 +1601,9 @@ FsWatchesRecursive:: /src/project/node_modules/@types: {} -Info 293 [00:06:51.000] Running: /src/project/tsconfig.jsonFailedLookupInvalidation -Info 294 [00:06:52.000] Scheduled: /src/project/tsconfig.json -Info 295 [00:06:53.000] Scheduled: *ensureProjectForOpenFiles* +Info 296 [00:06:54.000] Running: /src/project/tsconfig.jsonFailedLookupInvalidation +Info 297 [00:06:55.000] Scheduled: /src/project/tsconfig.json +Info 298 [00:06:56.000] Scheduled: *ensureProjectForOpenFiles* After running timeout callbacks PolledWatches:: @@ -1673,71 +1676,71 @@ FsWatchesRecursive:: /src/project/node_modules/@types: {} -Info 296 [00:06:54.000] Running: /src/project/tsconfig.json -Info 297 [00:06:55.000] Starting updateGraphWorker: Project: /src/project/tsconfig.json -Info 298 [00:06:56.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. -Info 299 [00:06:57.000] File '/a/package.json' does not exist according to earlier cached lookups. -Info 300 [00:06:58.000] Directory '/' has no containing package.json scope according to cache. -Info 301 [00:06:59.000] Directory '/src/project/node_modules/pkg0' resolves to '/src/project/node_modules/pkg0/package.json' scope according to cache. -Info 302 [00:07:00.000] Found 'package.json' at '/src/project/node_modules/pkg1/package.json'. -Info 303 [00:07:01.000] Directory '/src/project/node_modules/pkg1' resolves to '/src/project/node_modules/pkg1/package.json' scope according to cache. -Info 304 [00:07:02.000] Directory '/src/project' has no containing package.json scope according to cache. -Info 305 [00:07:03.000] Directory '/src/project/node_modules/pkg2' resolves to '/src/project/node_modules/pkg2/package.json' scope according to cache. -Info 306 [00:07:04.000] Directory '/src/project/node_modules/pkg3' resolves to '/src/project/node_modules/pkg3/package.json' scope according to cache. +Info 299 [00:06:57.000] Running: /src/project/tsconfig.json +Info 300 [00:06:58.000] Starting updateGraphWorker: Project: /src/project/tsconfig.json +Info 301 [00:06:59.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. +Info 302 [00:07:00.000] File '/a/package.json' does not exist according to earlier cached lookups. +Info 303 [00:07:01.000] Directory '/' has no containing package.json scope according to cache. +Info 304 [00:07:02.000] Directory '/src/project/node_modules/pkg0' resolves to '/src/project/node_modules/pkg0/package.json' scope according to cache. +Info 305 [00:07:03.000] Found 'package.json' at '/src/project/node_modules/pkg1/package.json'. +Info 306 [00:07:04.000] Directory '/src/project/node_modules/pkg1' resolves to '/src/project/node_modules/pkg1/package.json' scope according to cache. Info 307 [00:07:05.000] Directory '/src/project' has no containing package.json scope according to cache. -Info 308 [00:07:06.000] Directory '/src/project' has no containing package.json scope according to cache. -Info 309 [00:07:07.000] Directory '/src/project' has no containing package.json scope according to cache. -Info 310 [00:07:08.000] Directory '/src/project/node_modules/@types/pkg4' has no containing package.json scope according to cache. +Info 308 [00:07:06.000] Directory '/src/project/node_modules/pkg2' resolves to '/src/project/node_modules/pkg2/package.json' scope according to cache. +Info 309 [00:07:07.000] Directory '/src/project/node_modules/pkg3' resolves to '/src/project/node_modules/pkg3/package.json' scope according to cache. +Info 310 [00:07:08.000] Directory '/src/project' has no containing package.json scope according to cache. Info 311 [00:07:09.000] Directory '/src/project' has no containing package.json scope according to cache. -Info 312 [00:07:10.000] Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. -Info 313 [00:07:11.000] ======== Resolving module 'pkg1' from '/src/project/fileWithImports.ts'. ======== -Info 314 [00:07:12.000] Explicitly specified module resolution kind: 'Node16'. -Info 315 [00:07:13.000] Resolving in CJS mode with conditions 'node', 'require', 'types'. -Info 316 [00:07:14.000] File '/src/project/package.json' does not exist according to earlier cached lookups. -Info 317 [00:07:15.000] File '/src/package.json' does not exist according to earlier cached lookups. -Info 318 [00:07:16.000] File '/package.json' does not exist according to earlier cached lookups. -Info 319 [00:07:17.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration. -Info 320 [00:07:18.000] File '/src/project/node_modules/pkg1/package.json' exists according to earlier cached lookups. -Info 321 [00:07:19.000] Saw non-matching condition 'import'. -Info 322 [00:07:20.000] Matched 'exports' condition 'require'. -Info 323 [00:07:21.000] Using 'exports' subpath '.' with target './require1.js'. -Info 324 [00:07:22.000] File name '/src/project/node_modules/pkg1/require1.js' has a '.js' extension - stripping it. -Info 325 [00:07:23.000] File '/src/project/node_modules/pkg1/require1.ts' does not exist. -Info 326 [00:07:24.000] File '/src/project/node_modules/pkg1/require1.tsx' does not exist. -Info 327 [00:07:25.000] File '/src/project/node_modules/pkg1/require1.d.ts' does not exist. -Info 328 [00:07:26.000] File '/src/project/node_modules/@types/pkg1.d.ts' does not exist. -Info 329 [00:07:27.000] Directory '/src/node_modules' does not exist, skipping all lookups in it. -Info 330 [00:07:28.000] Directory '/node_modules' does not exist, skipping all lookups in it. -Info 331 [00:07:29.000] File '/src/project/node_modules/pkg1/package.json' exists according to earlier cached lookups. -Info 332 [00:07:30.000] Saw non-matching condition 'import'. -Info 333 [00:07:31.000] Matched 'exports' condition 'require'. -Info 334 [00:07:32.000] Using 'exports' subpath '.' with target './require1.js'. -Info 335 [00:07:33.000] File name '/src/project/node_modules/pkg1/require1.js' has a '.js' extension - stripping it. -Info 336 [00:07:34.000] File '/src/project/node_modules/pkg1/require1.js' does not exist. -Info 337 [00:07:35.000] File '/src/project/node_modules/pkg1/require1.jsx' does not exist. -Info 338 [00:07:36.000] Directory '/src/node_modules' does not exist, skipping all lookups in it. -Info 339 [00:07:37.000] Directory '/node_modules' does not exist, skipping all lookups in it. -Info 340 [00:07:38.000] ======== Module name 'pkg1' was not resolved. ======== -Info 341 [00:07:39.000] Directory '/src/project/node_modules/pkg0' resolves to '/src/project/node_modules/pkg0/package.json' scope according to cache. -Info 342 [00:07:40.000] Directory '/src/project' has no containing package.json scope according to cache. -Info 343 [00:07:41.000] Reusing resolution of type reference directive 'pkg2' from '/src/project/fileWithTypeRefs.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. -Info 344 [00:07:42.000] Reusing resolution of type reference directive 'pkg3' from '/src/project/fileWithTypeRefs.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg3/require.d.ts' with Package ID 'pkg3/require.d.ts@0.0.1'. -Info 345 [00:07:43.000] Directory '/src/project/node_modules/pkg2' resolves to '/src/project/node_modules/pkg2/package.json' scope according to cache. -Info 346 [00:07:44.000] Directory '/src/project/node_modules/pkg3' resolves to '/src/project/node_modules/pkg3/package.json' scope according to cache. -Info 347 [00:07:45.000] Directory '/src/project' has no containing package.json scope according to cache. -Info 348 [00:07:46.000] Reusing resolution of module 'pkg0' from '/src/project/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. -Info 349 [00:07:47.000] Directory '/src/project' has no containing package.json scope according to cache. -Info 350 [00:07:48.000] Reusing resolution of type reference directive 'pkg2' from '/src/project/randomFileForTypeRef.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. -Info 351 [00:07:49.000] Reusing resolution of type reference directive 'pkg4' from '/src/project/__inferred type names__.ts' of old program, it was successfully resolved to '/src/project/node_modules/@types/pkg4/index.d.ts'. -Info 352 [00:07:50.000] Directory '/src/project/node_modules/@types/pkg4' has no containing package.json scope according to cache. -Info 353 [00:07:51.000] Directory '/a/lib' has no containing package.json scope according to cache. -Info 354 [00:07:52.000] DirectoryWatcher:: Added:: WatchInfo: /src/project/node_modules 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations -Info 355 [00:07:53.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /src/project/node_modules 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations -Info 356 [00:07:54.000] DirectoryWatcher:: Added:: WatchInfo: /src/project 0 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations -Info 357 [00:07:55.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /src/project 0 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations -Info 358 [00:07:56.000] Finishing updateGraphWorker: Project: /src/project/tsconfig.json Version: 6 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 359 [00:07:57.000] Project '/src/project/tsconfig.json' (Configured) -Info 360 [00:07:58.000] Files (9) +Info 312 [00:07:10.000] Directory '/src/project' has no containing package.json scope according to cache. +Info 313 [00:07:11.000] Directory '/src/project/node_modules/@types/pkg4' has no containing package.json scope according to cache. +Info 314 [00:07:12.000] Directory '/src/project' has no containing package.json scope according to cache. +Info 315 [00:07:13.000] Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. +Info 316 [00:07:14.000] ======== Resolving module 'pkg1' from '/src/project/fileWithImports.ts'. ======== +Info 317 [00:07:15.000] Explicitly specified module resolution kind: 'Node16'. +Info 318 [00:07:16.000] Resolving in CJS mode with conditions 'node', 'require', 'types'. +Info 319 [00:07:17.000] File '/src/project/package.json' does not exist according to earlier cached lookups. +Info 320 [00:07:18.000] File '/src/package.json' does not exist according to earlier cached lookups. +Info 321 [00:07:19.000] File '/package.json' does not exist according to earlier cached lookups. +Info 322 [00:07:20.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration. +Info 323 [00:07:21.000] File '/src/project/node_modules/pkg1/package.json' exists according to earlier cached lookups. +Info 324 [00:07:22.000] Saw non-matching condition 'import'. +Info 325 [00:07:23.000] Matched 'exports' condition 'require'. +Info 326 [00:07:24.000] Using 'exports' subpath '.' with target './require1.js'. +Info 327 [00:07:25.000] File name '/src/project/node_modules/pkg1/require1.js' has a '.js' extension - stripping it. +Info 328 [00:07:26.000] File '/src/project/node_modules/pkg1/require1.ts' does not exist. +Info 329 [00:07:27.000] File '/src/project/node_modules/pkg1/require1.tsx' does not exist. +Info 330 [00:07:28.000] File '/src/project/node_modules/pkg1/require1.d.ts' does not exist. +Info 331 [00:07:29.000] File '/src/project/node_modules/@types/pkg1.d.ts' does not exist. +Info 332 [00:07:30.000] Directory '/src/node_modules' does not exist, skipping all lookups in it. +Info 333 [00:07:31.000] Directory '/node_modules' does not exist, skipping all lookups in it. +Info 334 [00:07:32.000] File '/src/project/node_modules/pkg1/package.json' exists according to earlier cached lookups. +Info 335 [00:07:33.000] Saw non-matching condition 'import'. +Info 336 [00:07:34.000] Matched 'exports' condition 'require'. +Info 337 [00:07:35.000] Using 'exports' subpath '.' with target './require1.js'. +Info 338 [00:07:36.000] File name '/src/project/node_modules/pkg1/require1.js' has a '.js' extension - stripping it. +Info 339 [00:07:37.000] File '/src/project/node_modules/pkg1/require1.js' does not exist. +Info 340 [00:07:38.000] File '/src/project/node_modules/pkg1/require1.jsx' does not exist. +Info 341 [00:07:39.000] Directory '/src/node_modules' does not exist, skipping all lookups in it. +Info 342 [00:07:40.000] Directory '/node_modules' does not exist, skipping all lookups in it. +Info 343 [00:07:41.000] ======== Module name 'pkg1' was not resolved. ======== +Info 344 [00:07:42.000] Directory '/src/project/node_modules/pkg0' resolves to '/src/project/node_modules/pkg0/package.json' scope according to cache. +Info 345 [00:07:43.000] Directory '/src/project' has no containing package.json scope according to cache. +Info 346 [00:07:44.000] Reusing resolution of type reference directive 'pkg2' from '/src/project/fileWithTypeRefs.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. +Info 347 [00:07:45.000] Reusing resolution of type reference directive 'pkg3' from '/src/project/fileWithTypeRefs.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg3/require.d.ts' with Package ID 'pkg3/require.d.ts@0.0.1'. +Info 348 [00:07:46.000] Directory '/src/project/node_modules/pkg2' resolves to '/src/project/node_modules/pkg2/package.json' scope according to cache. +Info 349 [00:07:47.000] Directory '/src/project/node_modules/pkg3' resolves to '/src/project/node_modules/pkg3/package.json' scope according to cache. +Info 350 [00:07:48.000] Directory '/src/project' has no containing package.json scope according to cache. +Info 351 [00:07:49.000] Reusing resolution of module 'pkg0' from '/src/project/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. +Info 352 [00:07:50.000] Directory '/src/project' has no containing package.json scope according to cache. +Info 353 [00:07:51.000] Reusing resolution of type reference directive 'pkg2' from '/src/project/randomFileForTypeRef.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. +Info 354 [00:07:52.000] Reusing resolution of type reference directive 'pkg4' from '/src/project/__inferred type names__.ts' of old program, it was successfully resolved to '/src/project/node_modules/@types/pkg4/index.d.ts'. +Info 355 [00:07:53.000] Directory '/src/project/node_modules/@types/pkg4' has no containing package.json scope according to cache. +Info 356 [00:07:54.000] Directory '/a/lib' has no containing package.json scope according to cache. +Info 357 [00:07:55.000] DirectoryWatcher:: Added:: WatchInfo: /src/project/node_modules 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations +Info 358 [00:07:56.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /src/project/node_modules 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations +Info 359 [00:07:57.000] DirectoryWatcher:: Added:: WatchInfo: /src/project 0 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations +Info 360 [00:07:58.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /src/project 0 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations +Info 361 [00:07:59.000] Finishing updateGraphWorker: Project: /src/project/tsconfig.json Version: 6 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 362 [00:08:00.000] Project '/src/project/tsconfig.json' (Configured) +Info 363 [00:08:01.000] Files (9) /a/lib/lib.d.ts /src/project/node_modules/pkg0/import.d.ts /src/project/fileWithImports.ts @@ -1777,28 +1780,28 @@ Info 360 [00:07:58.000] Files (9) Entry point for implicit type library 'pkg4' File is CommonJS module because 'package.json' was not found -Info 361 [00:07:59.000] ----------------------------------------------- -Info 362 [00:08:00.000] Running: *ensureProjectForOpenFiles* -Info 363 [00:08:01.000] Before ensureProjectForOpenFiles: -Info 364 [00:08:02.000] Project '/src/project/tsconfig.json' (Configured) -Info 364 [00:08:03.000] Files (9) - -Info 364 [00:08:04.000] ----------------------------------------------- -Info 364 [00:08:05.000] Open files: -Info 364 [00:08:06.000] FileName: /src/project/randomFileForImport.ts ProjectRootPath: undefined -Info 364 [00:08:07.000] Projects: /src/project/tsconfig.json -Info 364 [00:08:08.000] FileName: /src/project/randomFileForTypeRef.ts ProjectRootPath: undefined -Info 364 [00:08:09.000] Projects: /src/project/tsconfig.json -Info 364 [00:08:10.000] After ensureProjectForOpenFiles: -Info 365 [00:08:11.000] Project '/src/project/tsconfig.json' (Configured) -Info 365 [00:08:12.000] Files (9) - -Info 365 [00:08:13.000] ----------------------------------------------- -Info 365 [00:08:14.000] Open files: -Info 365 [00:08:15.000] FileName: /src/project/randomFileForImport.ts ProjectRootPath: undefined -Info 365 [00:08:16.000] Projects: /src/project/tsconfig.json -Info 365 [00:08:17.000] FileName: /src/project/randomFileForTypeRef.ts ProjectRootPath: undefined -Info 365 [00:08:18.000] Projects: /src/project/tsconfig.json +Info 364 [00:08:02.000] ----------------------------------------------- +Info 365 [00:08:03.000] Running: *ensureProjectForOpenFiles* +Info 366 [00:08:04.000] Before ensureProjectForOpenFiles: +Info 367 [00:08:05.000] Project '/src/project/tsconfig.json' (Configured) +Info 367 [00:08:06.000] Files (9) + +Info 367 [00:08:07.000] ----------------------------------------------- +Info 367 [00:08:08.000] Open files: +Info 367 [00:08:09.000] FileName: /src/project/randomFileForImport.ts ProjectRootPath: undefined +Info 367 [00:08:10.000] Projects: /src/project/tsconfig.json +Info 367 [00:08:11.000] FileName: /src/project/randomFileForTypeRef.ts ProjectRootPath: undefined +Info 367 [00:08:12.000] Projects: /src/project/tsconfig.json +Info 367 [00:08:13.000] After ensureProjectForOpenFiles: +Info 368 [00:08:14.000] Project '/src/project/tsconfig.json' (Configured) +Info 368 [00:08:15.000] Files (9) + +Info 368 [00:08:16.000] ----------------------------------------------- +Info 368 [00:08:17.000] Open files: +Info 368 [00:08:18.000] FileName: /src/project/randomFileForImport.ts ProjectRootPath: undefined +Info 368 [00:08:19.000] Projects: /src/project/tsconfig.json +Info 368 [00:08:20.000] FileName: /src/project/randomFileForTypeRef.ts ProjectRootPath: undefined +Info 368 [00:08:21.000] Projects: /src/project/tsconfig.json After running timeout callbacks PolledWatches:: @@ -1835,12 +1838,12 @@ FsWatchesRecursive:: /src/project/node_modules/@types: {} -Info 365 [00:08:19.000] write file not resolved by import -Info 366 [00:08:22.000] DirectoryWatcher:: Triggered with /src/project/node_modules/pkg1/require1.d.ts :: WatchInfo: /src/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 367 [00:08:23.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /src/project/node_modules/pkg1/require1.d.ts :: WatchInfo: /src/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 368 [00:08:24.000] DirectoryWatcher:: Triggered with /src/project/node_modules/pkg1/require1.d.ts :: WatchInfo: /src/project/node_modules 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations -Info 369 [00:08:25.000] Scheduled: /src/project/tsconfig.jsonFailedLookupInvalidation -Info 370 [00:08:26.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /src/project/node_modules/pkg1/require1.d.ts :: WatchInfo: /src/project/node_modules 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations +Info 368 [00:08:22.000] write file not resolved by import +Info 369 [00:08:25.000] DirectoryWatcher:: Triggered with /src/project/node_modules/pkg1/require1.d.ts :: WatchInfo: /src/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 370 [00:08:26.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /src/project/node_modules/pkg1/require1.d.ts :: WatchInfo: /src/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 371 [00:08:27.000] DirectoryWatcher:: Triggered with /src/project/node_modules/pkg1/require1.d.ts :: WatchInfo: /src/project/node_modules 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations +Info 372 [00:08:28.000] Scheduled: /src/project/tsconfig.jsonFailedLookupInvalidation +Info 373 [00:08:29.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /src/project/node_modules/pkg1/require1.d.ts :: WatchInfo: /src/project/node_modules 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations Before running timeout callbacks //// [/src/project/node_modules/pkg1/require1.d.ts] export interface RequireInterface1 {} @@ -1880,9 +1883,9 @@ FsWatchesRecursive:: /src/project/node_modules/@types: {} -Info 371 [00:08:27.000] Running: /src/project/tsconfig.jsonFailedLookupInvalidation -Info 372 [00:08:28.000] Scheduled: /src/project/tsconfig.json -Info 373 [00:08:29.000] Scheduled: *ensureProjectForOpenFiles* +Info 374 [00:08:30.000] Running: /src/project/tsconfig.jsonFailedLookupInvalidation +Info 375 [00:08:31.000] Scheduled: /src/project/tsconfig.json +Info 376 [00:08:32.000] Scheduled: *ensureProjectForOpenFiles* After running timeout callbacks PolledWatches:: @@ -1955,59 +1958,59 @@ FsWatchesRecursive:: /src/project/node_modules/@types: {} -Info 374 [00:08:30.000] Running: /src/project/tsconfig.json -Info 375 [00:08:31.000] Starting updateGraphWorker: Project: /src/project/tsconfig.json -Info 376 [00:08:32.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. -Info 377 [00:08:33.000] File '/a/package.json' does not exist according to earlier cached lookups. -Info 378 [00:08:34.000] Directory '/' has no containing package.json scope according to cache. -Info 379 [00:08:35.000] Directory '/src/project/node_modules/pkg0' resolves to '/src/project/node_modules/pkg0/package.json' scope according to cache. -Info 380 [00:08:36.000] Directory '/src/project' has no containing package.json scope according to cache. -Info 381 [00:08:37.000] Directory '/src/project/node_modules/pkg2' resolves to '/src/project/node_modules/pkg2/package.json' scope according to cache. -Info 382 [00:08:38.000] Directory '/src/project/node_modules/pkg3' resolves to '/src/project/node_modules/pkg3/package.json' scope according to cache. +Info 377 [00:08:33.000] Running: /src/project/tsconfig.json +Info 378 [00:08:34.000] Starting updateGraphWorker: Project: /src/project/tsconfig.json +Info 379 [00:08:35.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. +Info 380 [00:08:36.000] File '/a/package.json' does not exist according to earlier cached lookups. +Info 381 [00:08:37.000] Directory '/' has no containing package.json scope according to cache. +Info 382 [00:08:38.000] Directory '/src/project/node_modules/pkg0' resolves to '/src/project/node_modules/pkg0/package.json' scope according to cache. Info 383 [00:08:39.000] Directory '/src/project' has no containing package.json scope according to cache. -Info 384 [00:08:40.000] Directory '/src/project' has no containing package.json scope according to cache. -Info 385 [00:08:41.000] Directory '/src/project' has no containing package.json scope according to cache. -Info 386 [00:08:42.000] Directory '/src/project/node_modules/@types/pkg4' has no containing package.json scope according to cache. +Info 384 [00:08:40.000] Directory '/src/project/node_modules/pkg2' resolves to '/src/project/node_modules/pkg2/package.json' scope according to cache. +Info 385 [00:08:41.000] Directory '/src/project/node_modules/pkg3' resolves to '/src/project/node_modules/pkg3/package.json' scope according to cache. +Info 386 [00:08:42.000] Directory '/src/project' has no containing package.json scope according to cache. Info 387 [00:08:43.000] Directory '/src/project' has no containing package.json scope according to cache. -Info 388 [00:08:44.000] Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. -Info 389 [00:08:45.000] ======== Resolving module 'pkg1' from '/src/project/fileWithImports.ts'. ======== -Info 390 [00:08:46.000] Explicitly specified module resolution kind: 'Node16'. -Info 391 [00:08:47.000] Resolving in CJS mode with conditions 'node', 'require', 'types'. -Info 392 [00:08:48.000] File '/src/project/package.json' does not exist according to earlier cached lookups. -Info 393 [00:08:49.000] File '/src/package.json' does not exist according to earlier cached lookups. -Info 394 [00:08:50.000] File '/package.json' does not exist according to earlier cached lookups. -Info 395 [00:08:51.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration. -Info 396 [00:08:52.000] Found 'package.json' at '/src/project/node_modules/pkg1/package.json'. -Info 397 [00:08:53.000] Saw non-matching condition 'import'. -Info 398 [00:08:54.000] Matched 'exports' condition 'require'. -Info 399 [00:08:55.000] Using 'exports' subpath '.' with target './require1.js'. -Info 400 [00:08:56.000] File name '/src/project/node_modules/pkg1/require1.js' has a '.js' extension - stripping it. -Info 401 [00:08:57.000] File '/src/project/node_modules/pkg1/require1.ts' does not exist. -Info 402 [00:08:58.000] File '/src/project/node_modules/pkg1/require1.tsx' does not exist. -Info 403 [00:08:59.000] File '/src/project/node_modules/pkg1/require1.d.ts' exist - use it as a name resolution result. -Info 404 [00:09:00.000] Resolving real path for '/src/project/node_modules/pkg1/require1.d.ts', result '/src/project/node_modules/pkg1/require1.d.ts'. -Info 405 [00:09:01.000] ======== Module name 'pkg1' was successfully resolved to '/src/project/node_modules/pkg1/require1.d.ts' with Package ID 'pkg1/require1.d.ts@0.0.1'. ======== -Info 406 [00:09:02.000] Directory '/src/project/node_modules/pkg0' resolves to '/src/project/node_modules/pkg0/package.json' scope according to cache. -Info 407 [00:09:03.000] File '/src/project/node_modules/pkg1/package.json' exists according to earlier cached lookups. -Info 408 [00:09:04.000] Directory '/src/project' has no containing package.json scope according to cache. -Info 409 [00:09:05.000] Reusing resolution of type reference directive 'pkg2' from '/src/project/fileWithTypeRefs.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. -Info 410 [00:09:06.000] Reusing resolution of type reference directive 'pkg3' from '/src/project/fileWithTypeRefs.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg3/require.d.ts' with Package ID 'pkg3/require.d.ts@0.0.1'. -Info 411 [00:09:07.000] Directory '/src/project/node_modules/pkg2' resolves to '/src/project/node_modules/pkg2/package.json' scope according to cache. -Info 412 [00:09:08.000] Directory '/src/project/node_modules/pkg3' resolves to '/src/project/node_modules/pkg3/package.json' scope according to cache. -Info 413 [00:09:09.000] Directory '/src/project' has no containing package.json scope according to cache. -Info 414 [00:09:10.000] Reusing resolution of module 'pkg0' from '/src/project/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. -Info 415 [00:09:11.000] Directory '/src/project' has no containing package.json scope according to cache. -Info 416 [00:09:12.000] Reusing resolution of type reference directive 'pkg2' from '/src/project/randomFileForTypeRef.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. -Info 417 [00:09:13.000] Reusing resolution of type reference directive 'pkg4' from '/src/project/__inferred type names__.ts' of old program, it was successfully resolved to '/src/project/node_modules/@types/pkg4/index.d.ts'. -Info 418 [00:09:14.000] Directory '/src/project/node_modules/@types/pkg4' has no containing package.json scope according to cache. -Info 419 [00:09:15.000] Directory '/a/lib' has no containing package.json scope according to cache. -Info 420 [00:09:16.000] DirectoryWatcher:: Close:: WatchInfo: /src/project/node_modules 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations -Info 421 [00:09:17.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /src/project/node_modules 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations -Info 422 [00:09:18.000] DirectoryWatcher:: Close:: WatchInfo: /src/project 0 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations -Info 423 [00:09:19.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /src/project 0 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations -Info 424 [00:09:20.000] Finishing updateGraphWorker: Project: /src/project/tsconfig.json Version: 7 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 425 [00:09:21.000] Project '/src/project/tsconfig.json' (Configured) -Info 426 [00:09:22.000] Files (10) +Info 388 [00:08:44.000] Directory '/src/project' has no containing package.json scope according to cache. +Info 389 [00:08:45.000] Directory '/src/project/node_modules/@types/pkg4' has no containing package.json scope according to cache. +Info 390 [00:08:46.000] Directory '/src/project' has no containing package.json scope according to cache. +Info 391 [00:08:47.000] Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. +Info 392 [00:08:48.000] ======== Resolving module 'pkg1' from '/src/project/fileWithImports.ts'. ======== +Info 393 [00:08:49.000] Explicitly specified module resolution kind: 'Node16'. +Info 394 [00:08:50.000] Resolving in CJS mode with conditions 'node', 'require', 'types'. +Info 395 [00:08:51.000] File '/src/project/package.json' does not exist according to earlier cached lookups. +Info 396 [00:08:52.000] File '/src/package.json' does not exist according to earlier cached lookups. +Info 397 [00:08:53.000] File '/package.json' does not exist according to earlier cached lookups. +Info 398 [00:08:54.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration. +Info 399 [00:08:55.000] Found 'package.json' at '/src/project/node_modules/pkg1/package.json'. +Info 400 [00:08:56.000] Saw non-matching condition 'import'. +Info 401 [00:08:57.000] Matched 'exports' condition 'require'. +Info 402 [00:08:58.000] Using 'exports' subpath '.' with target './require1.js'. +Info 403 [00:08:59.000] File name '/src/project/node_modules/pkg1/require1.js' has a '.js' extension - stripping it. +Info 404 [00:09:00.000] File '/src/project/node_modules/pkg1/require1.ts' does not exist. +Info 405 [00:09:01.000] File '/src/project/node_modules/pkg1/require1.tsx' does not exist. +Info 406 [00:09:02.000] File '/src/project/node_modules/pkg1/require1.d.ts' exist - use it as a name resolution result. +Info 407 [00:09:03.000] Resolving real path for '/src/project/node_modules/pkg1/require1.d.ts', result '/src/project/node_modules/pkg1/require1.d.ts'. +Info 408 [00:09:04.000] ======== Module name 'pkg1' was successfully resolved to '/src/project/node_modules/pkg1/require1.d.ts' with Package ID 'pkg1/require1.d.ts@0.0.1'. ======== +Info 409 [00:09:05.000] Directory '/src/project/node_modules/pkg0' resolves to '/src/project/node_modules/pkg0/package.json' scope according to cache. +Info 410 [00:09:06.000] File '/src/project/node_modules/pkg1/package.json' exists according to earlier cached lookups. +Info 411 [00:09:07.000] Directory '/src/project' has no containing package.json scope according to cache. +Info 412 [00:09:08.000] Reusing resolution of type reference directive 'pkg2' from '/src/project/fileWithTypeRefs.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. +Info 413 [00:09:09.000] Reusing resolution of type reference directive 'pkg3' from '/src/project/fileWithTypeRefs.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg3/require.d.ts' with Package ID 'pkg3/require.d.ts@0.0.1'. +Info 414 [00:09:10.000] Directory '/src/project/node_modules/pkg2' resolves to '/src/project/node_modules/pkg2/package.json' scope according to cache. +Info 415 [00:09:11.000] Directory '/src/project/node_modules/pkg3' resolves to '/src/project/node_modules/pkg3/package.json' scope according to cache. +Info 416 [00:09:12.000] Directory '/src/project' has no containing package.json scope according to cache. +Info 417 [00:09:13.000] Reusing resolution of module 'pkg0' from '/src/project/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. +Info 418 [00:09:14.000] Directory '/src/project' has no containing package.json scope according to cache. +Info 419 [00:09:15.000] Reusing resolution of type reference directive 'pkg2' from '/src/project/randomFileForTypeRef.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. +Info 420 [00:09:16.000] Reusing resolution of type reference directive 'pkg4' from '/src/project/__inferred type names__.ts' of old program, it was successfully resolved to '/src/project/node_modules/@types/pkg4/index.d.ts'. +Info 421 [00:09:17.000] Directory '/src/project/node_modules/@types/pkg4' has no containing package.json scope according to cache. +Info 422 [00:09:18.000] Directory '/a/lib' has no containing package.json scope according to cache. +Info 423 [00:09:19.000] DirectoryWatcher:: Close:: WatchInfo: /src/project/node_modules 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations +Info 424 [00:09:20.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /src/project/node_modules 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations +Info 425 [00:09:21.000] DirectoryWatcher:: Close:: WatchInfo: /src/project 0 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations +Info 426 [00:09:22.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /src/project 0 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations +Info 427 [00:09:23.000] Finishing updateGraphWorker: Project: /src/project/tsconfig.json Version: 7 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 428 [00:09:24.000] Project '/src/project/tsconfig.json' (Configured) +Info 429 [00:09:25.000] Files (10) /a/lib/lib.d.ts /src/project/node_modules/pkg0/import.d.ts /src/project/node_modules/pkg1/require1.d.ts @@ -2051,28 +2054,28 @@ Info 426 [00:09:22.000] Files (10) Entry point for implicit type library 'pkg4' File is CommonJS module because 'package.json' was not found -Info 427 [00:09:23.000] ----------------------------------------------- -Info 428 [00:09:24.000] Running: *ensureProjectForOpenFiles* -Info 429 [00:09:25.000] Before ensureProjectForOpenFiles: -Info 430 [00:09:26.000] Project '/src/project/tsconfig.json' (Configured) -Info 430 [00:09:27.000] Files (10) - -Info 430 [00:09:28.000] ----------------------------------------------- -Info 430 [00:09:29.000] Open files: -Info 430 [00:09:30.000] FileName: /src/project/randomFileForImport.ts ProjectRootPath: undefined -Info 430 [00:09:31.000] Projects: /src/project/tsconfig.json -Info 430 [00:09:32.000] FileName: /src/project/randomFileForTypeRef.ts ProjectRootPath: undefined -Info 430 [00:09:33.000] Projects: /src/project/tsconfig.json -Info 430 [00:09:34.000] After ensureProjectForOpenFiles: -Info 431 [00:09:35.000] Project '/src/project/tsconfig.json' (Configured) -Info 431 [00:09:36.000] Files (10) - -Info 431 [00:09:37.000] ----------------------------------------------- -Info 431 [00:09:38.000] Open files: -Info 431 [00:09:39.000] FileName: /src/project/randomFileForImport.ts ProjectRootPath: undefined -Info 431 [00:09:40.000] Projects: /src/project/tsconfig.json -Info 431 [00:09:41.000] FileName: /src/project/randomFileForTypeRef.ts ProjectRootPath: undefined -Info 431 [00:09:42.000] Projects: /src/project/tsconfig.json +Info 430 [00:09:26.000] ----------------------------------------------- +Info 431 [00:09:27.000] Running: *ensureProjectForOpenFiles* +Info 432 [00:09:28.000] Before ensureProjectForOpenFiles: +Info 433 [00:09:29.000] Project '/src/project/tsconfig.json' (Configured) +Info 433 [00:09:30.000] Files (10) + +Info 433 [00:09:31.000] ----------------------------------------------- +Info 433 [00:09:32.000] Open files: +Info 433 [00:09:33.000] FileName: /src/project/randomFileForImport.ts ProjectRootPath: undefined +Info 433 [00:09:34.000] Projects: /src/project/tsconfig.json +Info 433 [00:09:35.000] FileName: /src/project/randomFileForTypeRef.ts ProjectRootPath: undefined +Info 433 [00:09:36.000] Projects: /src/project/tsconfig.json +Info 433 [00:09:37.000] After ensureProjectForOpenFiles: +Info 434 [00:09:38.000] Project '/src/project/tsconfig.json' (Configured) +Info 434 [00:09:39.000] Files (10) + +Info 434 [00:09:40.000] ----------------------------------------------- +Info 434 [00:09:41.000] Open files: +Info 434 [00:09:42.000] FileName: /src/project/randomFileForImport.ts ProjectRootPath: undefined +Info 434 [00:09:43.000] Projects: /src/project/tsconfig.json +Info 434 [00:09:44.000] FileName: /src/project/randomFileForTypeRef.ts ProjectRootPath: undefined +Info 434 [00:09:45.000] Projects: /src/project/tsconfig.json After running timeout callbacks PolledWatches:: @@ -2109,16 +2112,16 @@ FsWatchesRecursive:: /src/project/node_modules/@types: {} -Info 431 [00:09:43.000] delete file with imports -Info 432 [00:09:45.000] FileWatcher:: Triggered with /src/project/fileWithImports.ts 2:: WatchInfo: /src/project/fileWithImports.ts 500 undefined WatchType: Closed Script info -Info 433 [00:09:46.000] FileWatcher:: Close:: WatchInfo: /src/project/fileWithImports.ts 500 undefined WatchType: Closed Script info -Info 434 [00:09:47.000] Scheduled: /src/project/tsconfig.json -Info 435 [00:09:48.000] Scheduled: *ensureProjectForOpenFiles* -Info 436 [00:09:49.000] Elapsed:: *ms FileWatcher:: Triggered with /src/project/fileWithImports.ts 2:: WatchInfo: /src/project/fileWithImports.ts 500 undefined WatchType: Closed Script info -Info 437 [00:09:50.000] DirectoryWatcher:: Triggered with /src/project/fileWithImports.ts :: WatchInfo: /src/project 0 undefined Config: /src/project/tsconfig.json WatchType: Wild card directory -Info 438 [00:09:51.000] Scheduled: /src/project/tsconfig.json, Cancelled earlier one -Info 439 [00:09:52.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 440 [00:09:53.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /src/project/fileWithImports.ts :: WatchInfo: /src/project 0 undefined Config: /src/project/tsconfig.json WatchType: Wild card directory +Info 434 [00:09:46.000] delete file with imports +Info 435 [00:09:48.000] FileWatcher:: Triggered with /src/project/fileWithImports.ts 2:: WatchInfo: /src/project/fileWithImports.ts 500 undefined WatchType: Closed Script info +Info 436 [00:09:49.000] FileWatcher:: Close:: WatchInfo: /src/project/fileWithImports.ts 500 undefined WatchType: Closed Script info +Info 437 [00:09:50.000] Scheduled: /src/project/tsconfig.json +Info 438 [00:09:51.000] Scheduled: *ensureProjectForOpenFiles* +Info 439 [00:09:52.000] Elapsed:: *ms FileWatcher:: Triggered with /src/project/fileWithImports.ts 2:: WatchInfo: /src/project/fileWithImports.ts 500 undefined WatchType: Closed Script info +Info 440 [00:09:53.000] DirectoryWatcher:: Triggered with /src/project/fileWithImports.ts :: WatchInfo: /src/project 0 undefined Config: /src/project/tsconfig.json WatchType: Wild card directory +Info 441 [00:09:54.000] Scheduled: /src/project/tsconfig.json, Cancelled earlier one +Info 442 [00:09:55.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 443 [00:09:56.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /src/project/fileWithImports.ts :: WatchInfo: /src/project 0 undefined Config: /src/project/tsconfig.json WatchType: Wild card directory Before running timeout callbacks //// [/src/project/fileWithImports.ts] deleted @@ -2154,27 +2157,27 @@ FsWatchesRecursive:: /src/project/node_modules/@types: {} -Info 441 [00:09:54.000] Running: /src/project/tsconfig.json -Info 442 [00:09:55.000] Starting updateGraphWorker: Project: /src/project/tsconfig.json -Info 443 [00:09:56.000] Directory '/src/project' has no containing package.json scope according to cache. -Info 444 [00:09:57.000] Reusing resolution of type reference directive 'pkg2' from '/src/project/fileWithTypeRefs.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. -Info 445 [00:09:58.000] Reusing resolution of type reference directive 'pkg3' from '/src/project/fileWithTypeRefs.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg3/require.d.ts' with Package ID 'pkg3/require.d.ts@0.0.1'. -Info 446 [00:09:59.000] Directory '/src/project/node_modules/pkg2' resolves to '/src/project/node_modules/pkg2/package.json' scope according to cache. -Info 447 [00:10:00.000] Directory '/src/project/node_modules/pkg3' resolves to '/src/project/node_modules/pkg3/package.json' scope according to cache. -Info 448 [00:10:01.000] Directory '/src/project' has no containing package.json scope according to cache. -Info 449 [00:10:02.000] Reusing resolution of module 'pkg0' from '/src/project/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. -Info 450 [00:10:03.000] Directory '/src/project/node_modules/pkg0' resolves to '/src/project/node_modules/pkg0/package.json' scope according to cache. +Info 444 [00:09:57.000] Running: /src/project/tsconfig.json +Info 445 [00:09:58.000] Starting updateGraphWorker: Project: /src/project/tsconfig.json +Info 446 [00:09:59.000] Directory '/src/project' has no containing package.json scope according to cache. +Info 447 [00:10:00.000] Reusing resolution of type reference directive 'pkg2' from '/src/project/fileWithTypeRefs.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. +Info 448 [00:10:01.000] Reusing resolution of type reference directive 'pkg3' from '/src/project/fileWithTypeRefs.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg3/require.d.ts' with Package ID 'pkg3/require.d.ts@0.0.1'. +Info 449 [00:10:02.000] Directory '/src/project/node_modules/pkg2' resolves to '/src/project/node_modules/pkg2/package.json' scope according to cache. +Info 450 [00:10:03.000] Directory '/src/project/node_modules/pkg3' resolves to '/src/project/node_modules/pkg3/package.json' scope according to cache. Info 451 [00:10:04.000] Directory '/src/project' has no containing package.json scope according to cache. -Info 452 [00:10:05.000] Reusing resolution of type reference directive 'pkg2' from '/src/project/randomFileForTypeRef.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. -Info 453 [00:10:06.000] Reusing resolution of type reference directive 'pkg4' from '/src/project/__inferred type names__.ts' of old program, it was successfully resolved to '/src/project/node_modules/@types/pkg4/index.d.ts'. -Info 454 [00:10:07.000] Directory '/src/project/node_modules/@types/pkg4' has no containing package.json scope according to cache. -Info 455 [00:10:08.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. -Info 456 [00:10:09.000] File '/a/package.json' does not exist according to earlier cached lookups. -Info 457 [00:10:10.000] Directory '/' has no containing package.json scope according to cache. -Info 458 [00:10:11.000] FileWatcher:: Close:: WatchInfo: /src/project/node_modules/pkg1/package.json 2000 undefined Project: /src/project/tsconfig.json WatchType: File location affecting resolution -Info 459 [00:10:12.000] Finishing updateGraphWorker: Project: /src/project/tsconfig.json Version: 8 structureChanged: true structureIsReused:: SafeModuleCache Elapsed:: *ms -Info 460 [00:10:13.000] Project '/src/project/tsconfig.json' (Configured) -Info 461 [00:10:14.000] Files (8) +Info 452 [00:10:05.000] Reusing resolution of module 'pkg0' from '/src/project/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. +Info 453 [00:10:06.000] Directory '/src/project/node_modules/pkg0' resolves to '/src/project/node_modules/pkg0/package.json' scope according to cache. +Info 454 [00:10:07.000] Directory '/src/project' has no containing package.json scope according to cache. +Info 455 [00:10:08.000] Reusing resolution of type reference directive 'pkg2' from '/src/project/randomFileForTypeRef.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. +Info 456 [00:10:09.000] Reusing resolution of type reference directive 'pkg4' from '/src/project/__inferred type names__.ts' of old program, it was successfully resolved to '/src/project/node_modules/@types/pkg4/index.d.ts'. +Info 457 [00:10:10.000] Directory '/src/project/node_modules/@types/pkg4' has no containing package.json scope according to cache. +Info 458 [00:10:11.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. +Info 459 [00:10:12.000] File '/a/package.json' does not exist according to earlier cached lookups. +Info 460 [00:10:13.000] Directory '/' has no containing package.json scope according to cache. +Info 461 [00:10:14.000] FileWatcher:: Close:: WatchInfo: /src/project/node_modules/pkg1/package.json 2000 undefined Project: /src/project/tsconfig.json WatchType: File location affecting resolution +Info 462 [00:10:15.000] Finishing updateGraphWorker: Project: /src/project/tsconfig.json Version: 8 structureChanged: true structureIsReused:: SafeModuleCache Elapsed:: *ms +Info 463 [00:10:16.000] Project '/src/project/tsconfig.json' (Configured) +Info 464 [00:10:17.000] Files (8) /a/lib/lib.d.ts /src/project/node_modules/pkg2/import.d.ts /src/project/node_modules/pkg3/require.d.ts @@ -2209,28 +2212,28 @@ Info 461 [00:10:14.000] Files (8) Entry point for implicit type library 'pkg4' File is CommonJS module because 'package.json' was not found -Info 462 [00:10:15.000] ----------------------------------------------- -Info 463 [00:10:16.000] Running: *ensureProjectForOpenFiles* -Info 464 [00:10:17.000] Before ensureProjectForOpenFiles: -Info 465 [00:10:18.000] Project '/src/project/tsconfig.json' (Configured) -Info 465 [00:10:19.000] Files (8) - -Info 465 [00:10:20.000] ----------------------------------------------- -Info 465 [00:10:21.000] Open files: -Info 465 [00:10:22.000] FileName: /src/project/randomFileForImport.ts ProjectRootPath: undefined -Info 465 [00:10:23.000] Projects: /src/project/tsconfig.json -Info 465 [00:10:24.000] FileName: /src/project/randomFileForTypeRef.ts ProjectRootPath: undefined -Info 465 [00:10:25.000] Projects: /src/project/tsconfig.json -Info 465 [00:10:26.000] After ensureProjectForOpenFiles: -Info 466 [00:10:27.000] Project '/src/project/tsconfig.json' (Configured) -Info 466 [00:10:28.000] Files (8) - -Info 466 [00:10:29.000] ----------------------------------------------- -Info 466 [00:10:30.000] Open files: -Info 466 [00:10:31.000] FileName: /src/project/randomFileForImport.ts ProjectRootPath: undefined -Info 466 [00:10:32.000] Projects: /src/project/tsconfig.json -Info 466 [00:10:33.000] FileName: /src/project/randomFileForTypeRef.ts ProjectRootPath: undefined -Info 466 [00:10:34.000] Projects: /src/project/tsconfig.json +Info 465 [00:10:18.000] ----------------------------------------------- +Info 466 [00:10:19.000] Running: *ensureProjectForOpenFiles* +Info 467 [00:10:20.000] Before ensureProjectForOpenFiles: +Info 468 [00:10:21.000] Project '/src/project/tsconfig.json' (Configured) +Info 468 [00:10:22.000] Files (8) + +Info 468 [00:10:23.000] ----------------------------------------------- +Info 468 [00:10:24.000] Open files: +Info 468 [00:10:25.000] FileName: /src/project/randomFileForImport.ts ProjectRootPath: undefined +Info 468 [00:10:26.000] Projects: /src/project/tsconfig.json +Info 468 [00:10:27.000] FileName: /src/project/randomFileForTypeRef.ts ProjectRootPath: undefined +Info 468 [00:10:28.000] Projects: /src/project/tsconfig.json +Info 468 [00:10:29.000] After ensureProjectForOpenFiles: +Info 469 [00:10:30.000] Project '/src/project/tsconfig.json' (Configured) +Info 469 [00:10:31.000] Files (8) + +Info 469 [00:10:32.000] ----------------------------------------------- +Info 469 [00:10:33.000] Open files: +Info 469 [00:10:34.000] FileName: /src/project/randomFileForImport.ts ProjectRootPath: undefined +Info 469 [00:10:35.000] Projects: /src/project/tsconfig.json +Info 469 [00:10:36.000] FileName: /src/project/randomFileForTypeRef.ts ProjectRootPath: undefined +Info 469 [00:10:37.000] Projects: /src/project/tsconfig.json After running timeout callbacks PolledWatches:: @@ -2263,16 +2266,16 @@ FsWatchesRecursive:: /src/project/node_modules/@types: {} -Info 466 [00:10:35.000] delete file with typeRefs -Info 467 [00:10:37.000] FileWatcher:: Triggered with /src/project/fileWithTypeRefs.ts 2:: WatchInfo: /src/project/fileWithTypeRefs.ts 500 undefined WatchType: Closed Script info -Info 468 [00:10:38.000] FileWatcher:: Close:: WatchInfo: /src/project/fileWithTypeRefs.ts 500 undefined WatchType: Closed Script info -Info 469 [00:10:39.000] Scheduled: /src/project/tsconfig.json -Info 470 [00:10:40.000] Scheduled: *ensureProjectForOpenFiles* -Info 471 [00:10:41.000] Elapsed:: *ms FileWatcher:: Triggered with /src/project/fileWithTypeRefs.ts 2:: WatchInfo: /src/project/fileWithTypeRefs.ts 500 undefined WatchType: Closed Script info -Info 472 [00:10:42.000] DirectoryWatcher:: Triggered with /src/project/fileWithTypeRefs.ts :: WatchInfo: /src/project 0 undefined Config: /src/project/tsconfig.json WatchType: Wild card directory -Info 473 [00:10:43.000] Scheduled: /src/project/tsconfig.json, Cancelled earlier one -Info 474 [00:10:44.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 475 [00:10:45.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /src/project/fileWithTypeRefs.ts :: WatchInfo: /src/project 0 undefined Config: /src/project/tsconfig.json WatchType: Wild card directory +Info 469 [00:10:38.000] delete file with typeRefs +Info 470 [00:10:40.000] FileWatcher:: Triggered with /src/project/fileWithTypeRefs.ts 2:: WatchInfo: /src/project/fileWithTypeRefs.ts 500 undefined WatchType: Closed Script info +Info 471 [00:10:41.000] FileWatcher:: Close:: WatchInfo: /src/project/fileWithTypeRefs.ts 500 undefined WatchType: Closed Script info +Info 472 [00:10:42.000] Scheduled: /src/project/tsconfig.json +Info 473 [00:10:43.000] Scheduled: *ensureProjectForOpenFiles* +Info 474 [00:10:44.000] Elapsed:: *ms FileWatcher:: Triggered with /src/project/fileWithTypeRefs.ts 2:: WatchInfo: /src/project/fileWithTypeRefs.ts 500 undefined WatchType: Closed Script info +Info 475 [00:10:45.000] DirectoryWatcher:: Triggered with /src/project/fileWithTypeRefs.ts :: WatchInfo: /src/project 0 undefined Config: /src/project/tsconfig.json WatchType: Wild card directory +Info 476 [00:10:46.000] Scheduled: /src/project/tsconfig.json, Cancelled earlier one +Info 477 [00:10:47.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 478 [00:10:48.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /src/project/fileWithTypeRefs.ts :: WatchInfo: /src/project 0 undefined Config: /src/project/tsconfig.json WatchType: Wild card directory Before running timeout callbacks //// [/src/project/fileWithTypeRefs.ts] deleted @@ -2304,23 +2307,23 @@ FsWatchesRecursive:: /src/project/node_modules/@types: {} -Info 476 [00:10:46.000] Running: /src/project/tsconfig.json -Info 477 [00:10:47.000] Starting updateGraphWorker: Project: /src/project/tsconfig.json -Info 478 [00:10:48.000] Directory '/src/project' has no containing package.json scope according to cache. -Info 479 [00:10:49.000] Reusing resolution of module 'pkg0' from '/src/project/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. -Info 480 [00:10:50.000] Directory '/src/project/node_modules/pkg0' resolves to '/src/project/node_modules/pkg0/package.json' scope according to cache. +Info 479 [00:10:49.000] Running: /src/project/tsconfig.json +Info 480 [00:10:50.000] Starting updateGraphWorker: Project: /src/project/tsconfig.json Info 481 [00:10:51.000] Directory '/src/project' has no containing package.json scope according to cache. -Info 482 [00:10:52.000] Reusing resolution of type reference directive 'pkg2' from '/src/project/randomFileForTypeRef.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. -Info 483 [00:10:53.000] Directory '/src/project/node_modules/pkg2' resolves to '/src/project/node_modules/pkg2/package.json' scope according to cache. -Info 484 [00:10:54.000] Reusing resolution of type reference directive 'pkg4' from '/src/project/__inferred type names__.ts' of old program, it was successfully resolved to '/src/project/node_modules/@types/pkg4/index.d.ts'. -Info 485 [00:10:55.000] Directory '/src/project/node_modules/@types/pkg4' has no containing package.json scope according to cache. -Info 486 [00:10:56.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. -Info 487 [00:10:57.000] File '/a/package.json' does not exist according to earlier cached lookups. -Info 488 [00:10:58.000] Directory '/' has no containing package.json scope according to cache. -Info 489 [00:10:59.000] FileWatcher:: Close:: WatchInfo: /src/project/node_modules/pkg3/package.json 2000 undefined Project: /src/project/tsconfig.json WatchType: File location affecting resolution -Info 490 [00:11:00.000] Finishing updateGraphWorker: Project: /src/project/tsconfig.json Version: 9 structureChanged: true structureIsReused:: SafeModuleCache Elapsed:: *ms -Info 491 [00:11:01.000] Project '/src/project/tsconfig.json' (Configured) -Info 492 [00:11:02.000] Files (6) +Info 482 [00:10:52.000] Reusing resolution of module 'pkg0' from '/src/project/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. +Info 483 [00:10:53.000] Directory '/src/project/node_modules/pkg0' resolves to '/src/project/node_modules/pkg0/package.json' scope according to cache. +Info 484 [00:10:54.000] Directory '/src/project' has no containing package.json scope according to cache. +Info 485 [00:10:55.000] Reusing resolution of type reference directive 'pkg2' from '/src/project/randomFileForTypeRef.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. +Info 486 [00:10:56.000] Directory '/src/project/node_modules/pkg2' resolves to '/src/project/node_modules/pkg2/package.json' scope according to cache. +Info 487 [00:10:57.000] Reusing resolution of type reference directive 'pkg4' from '/src/project/__inferred type names__.ts' of old program, it was successfully resolved to '/src/project/node_modules/@types/pkg4/index.d.ts'. +Info 488 [00:10:58.000] Directory '/src/project/node_modules/@types/pkg4' has no containing package.json scope according to cache. +Info 489 [00:10:59.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. +Info 490 [00:11:00.000] File '/a/package.json' does not exist according to earlier cached lookups. +Info 491 [00:11:01.000] Directory '/' has no containing package.json scope according to cache. +Info 492 [00:11:02.000] FileWatcher:: Close:: WatchInfo: /src/project/node_modules/pkg3/package.json 2000 undefined Project: /src/project/tsconfig.json WatchType: File location affecting resolution +Info 493 [00:11:03.000] Finishing updateGraphWorker: Project: /src/project/tsconfig.json Version: 9 structureChanged: true structureIsReused:: SafeModuleCache Elapsed:: *ms +Info 494 [00:11:04.000] Project '/src/project/tsconfig.json' (Configured) +Info 495 [00:11:05.000] Files (6) /a/lib/lib.d.ts /src/project/node_modules/pkg0/import.d.ts /src/project/randomFileForImport.ts @@ -2347,28 +2350,28 @@ Info 492 [00:11:02.000] Files (6) Entry point for implicit type library 'pkg4' File is CommonJS module because 'package.json' was not found -Info 493 [00:11:03.000] ----------------------------------------------- -Info 494 [00:11:04.000] Running: *ensureProjectForOpenFiles* -Info 495 [00:11:05.000] Before ensureProjectForOpenFiles: -Info 496 [00:11:06.000] Project '/src/project/tsconfig.json' (Configured) -Info 496 [00:11:07.000] Files (6) - -Info 496 [00:11:08.000] ----------------------------------------------- -Info 496 [00:11:09.000] Open files: -Info 496 [00:11:10.000] FileName: /src/project/randomFileForImport.ts ProjectRootPath: undefined -Info 496 [00:11:11.000] Projects: /src/project/tsconfig.json -Info 496 [00:11:12.000] FileName: /src/project/randomFileForTypeRef.ts ProjectRootPath: undefined -Info 496 [00:11:13.000] Projects: /src/project/tsconfig.json -Info 496 [00:11:14.000] After ensureProjectForOpenFiles: -Info 497 [00:11:15.000] Project '/src/project/tsconfig.json' (Configured) -Info 497 [00:11:16.000] Files (6) - -Info 497 [00:11:17.000] ----------------------------------------------- -Info 497 [00:11:18.000] Open files: -Info 497 [00:11:19.000] FileName: /src/project/randomFileForImport.ts ProjectRootPath: undefined -Info 497 [00:11:20.000] Projects: /src/project/tsconfig.json -Info 497 [00:11:21.000] FileName: /src/project/randomFileForTypeRef.ts ProjectRootPath: undefined -Info 497 [00:11:22.000] Projects: /src/project/tsconfig.json +Info 496 [00:11:06.000] ----------------------------------------------- +Info 497 [00:11:07.000] Running: *ensureProjectForOpenFiles* +Info 498 [00:11:08.000] Before ensureProjectForOpenFiles: +Info 499 [00:11:09.000] Project '/src/project/tsconfig.json' (Configured) +Info 499 [00:11:10.000] Files (6) + +Info 499 [00:11:11.000] ----------------------------------------------- +Info 499 [00:11:12.000] Open files: +Info 499 [00:11:13.000] FileName: /src/project/randomFileForImport.ts ProjectRootPath: undefined +Info 499 [00:11:14.000] Projects: /src/project/tsconfig.json +Info 499 [00:11:15.000] FileName: /src/project/randomFileForTypeRef.ts ProjectRootPath: undefined +Info 499 [00:11:16.000] Projects: /src/project/tsconfig.json +Info 499 [00:11:17.000] After ensureProjectForOpenFiles: +Info 500 [00:11:18.000] Project '/src/project/tsconfig.json' (Configured) +Info 500 [00:11:19.000] Files (6) + +Info 500 [00:11:20.000] ----------------------------------------------- +Info 500 [00:11:21.000] Open files: +Info 500 [00:11:22.000] FileName: /src/project/randomFileForImport.ts ProjectRootPath: undefined +Info 500 [00:11:23.000] Projects: /src/project/tsconfig.json +Info 500 [00:11:24.000] FileName: /src/project/randomFileForTypeRef.ts ProjectRootPath: undefined +Info 500 [00:11:25.000] Projects: /src/project/tsconfig.json After running timeout callbacks PolledWatches:: @@ -2397,11 +2400,11 @@ FsWatchesRecursive:: /src/project/node_modules/@types: {} -Info 497 [00:11:23.000] delete resolved import file -Info 498 [00:11:25.000] DirectoryWatcher:: Triggered with /src/project/node_modules/pkg0/import.d.ts :: WatchInfo: /src/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 499 [00:11:26.000] Scheduled: /src/project/tsconfig.json -Info 500 [00:11:27.000] Scheduled: *ensureProjectForOpenFiles* -Info 501 [00:11:28.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /src/project/node_modules/pkg0/import.d.ts :: WatchInfo: /src/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 500 [00:11:26.000] delete resolved import file +Info 501 [00:11:28.000] DirectoryWatcher:: Triggered with /src/project/node_modules/pkg0/import.d.ts :: WatchInfo: /src/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 502 [00:11:29.000] Scheduled: /src/project/tsconfig.json +Info 503 [00:11:30.000] Scheduled: *ensureProjectForOpenFiles* +Info 504 [00:11:31.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /src/project/node_modules/pkg0/import.d.ts :: WatchInfo: /src/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Before running timeout callbacks //// [/src/project/node_modules/pkg0/import.d.ts] deleted @@ -2431,53 +2434,53 @@ FsWatchesRecursive:: /src/project/node_modules/@types: {} -Info 502 [00:11:29.000] Running: /src/project/tsconfig.json -Info 503 [00:11:30.000] Starting updateGraphWorker: Project: /src/project/tsconfig.json -Info 504 [00:11:31.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. -Info 505 [00:11:32.000] File '/a/package.json' does not exist according to earlier cached lookups. -Info 506 [00:11:33.000] Directory '/' has no containing package.json scope according to cache. -Info 507 [00:11:34.000] Directory '/src/project/node_modules/pkg0' resolves to '/src/project/node_modules/pkg0/package.json' scope according to cache. -Info 508 [00:11:35.000] Directory '/src/project' has no containing package.json scope according to cache. -Info 509 [00:11:36.000] ======== Resolving module 'pkg0' from '/src/project/randomFileForImport.ts'. ======== -Info 510 [00:11:37.000] Explicitly specified module resolution kind: 'Node16'. -Info 511 [00:11:38.000] Resolving in ESM mode with conditions 'node', 'import', 'types'. -Info 512 [00:11:39.000] File '/src/project/package.json' does not exist according to earlier cached lookups. -Info 513 [00:11:40.000] File '/src/package.json' does not exist according to earlier cached lookups. -Info 514 [00:11:41.000] File '/package.json' does not exist according to earlier cached lookups. -Info 515 [00:11:42.000] Loading module 'pkg0' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration. -Info 516 [00:11:43.000] File '/src/project/node_modules/pkg0/package.json' exists according to earlier cached lookups. -Info 517 [00:11:44.000] Matched 'exports' condition 'import'. -Info 518 [00:11:45.000] Using 'exports' subpath '.' with target './import.js'. -Info 519 [00:11:46.000] File name '/src/project/node_modules/pkg0/import.js' has a '.js' extension - stripping it. -Info 520 [00:11:47.000] File '/src/project/node_modules/pkg0/import.ts' does not exist. -Info 521 [00:11:48.000] File '/src/project/node_modules/pkg0/import.tsx' does not exist. -Info 522 [00:11:49.000] File '/src/project/node_modules/pkg0/import.d.ts' does not exist. -Info 523 [00:11:50.000] Saw non-matching condition 'require'. -Info 524 [00:11:51.000] Directory '/src/node_modules' does not exist, skipping all lookups in it. -Info 525 [00:11:52.000] Directory '/node_modules' does not exist, skipping all lookups in it. -Info 526 [00:11:53.000] File '/src/project/node_modules/pkg0/package.json' exists according to earlier cached lookups. -Info 527 [00:11:54.000] Matched 'exports' condition 'import'. -Info 528 [00:11:55.000] Using 'exports' subpath '.' with target './import.js'. -Info 529 [00:11:56.000] File name '/src/project/node_modules/pkg0/import.js' has a '.js' extension - stripping it. -Info 530 [00:11:57.000] File '/src/project/node_modules/pkg0/import.js' does not exist. -Info 531 [00:11:58.000] File '/src/project/node_modules/pkg0/import.jsx' does not exist. -Info 532 [00:11:59.000] Saw non-matching condition 'require'. -Info 533 [00:12:00.000] Directory '/src/node_modules' does not exist, skipping all lookups in it. -Info 534 [00:12:01.000] Directory '/node_modules' does not exist, skipping all lookups in it. -Info 535 [00:12:02.000] ======== Module name 'pkg0' was not resolved. ======== -Info 536 [00:12:03.000] Directory '/src/project' has no containing package.json scope according to cache. -Info 537 [00:12:04.000] Reusing resolution of type reference directive 'pkg2' from '/src/project/randomFileForTypeRef.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. -Info 538 [00:12:05.000] Directory '/src/project/node_modules/pkg2' resolves to '/src/project/node_modules/pkg2/package.json' scope according to cache. -Info 539 [00:12:06.000] Reusing resolution of type reference directive 'pkg4' from '/src/project/__inferred type names__.ts' of old program, it was successfully resolved to '/src/project/node_modules/@types/pkg4/index.d.ts'. -Info 540 [00:12:07.000] Directory '/src/project/node_modules/@types/pkg4' has no containing package.json scope according to cache. -Info 541 [00:12:08.000] Directory '/a/lib' has no containing package.json scope according to cache. -Info 542 [00:12:09.000] DirectoryWatcher:: Added:: WatchInfo: /src/project/node_modules 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations -Info 543 [00:12:10.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /src/project/node_modules 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations -Info 544 [00:12:11.000] DirectoryWatcher:: Added:: WatchInfo: /src/project 0 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations -Info 545 [00:12:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /src/project 0 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations -Info 546 [00:12:13.000] Finishing updateGraphWorker: Project: /src/project/tsconfig.json Version: 10 structureChanged: true structureIsReused:: SafeModuleCache Elapsed:: *ms -Info 547 [00:12:14.000] Project '/src/project/tsconfig.json' (Configured) -Info 548 [00:12:15.000] Files (5) +Info 505 [00:11:32.000] Running: /src/project/tsconfig.json +Info 506 [00:11:33.000] Starting updateGraphWorker: Project: /src/project/tsconfig.json +Info 507 [00:11:34.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. +Info 508 [00:11:35.000] File '/a/package.json' does not exist according to earlier cached lookups. +Info 509 [00:11:36.000] Directory '/' has no containing package.json scope according to cache. +Info 510 [00:11:37.000] Directory '/src/project/node_modules/pkg0' resolves to '/src/project/node_modules/pkg0/package.json' scope according to cache. +Info 511 [00:11:38.000] Directory '/src/project' has no containing package.json scope according to cache. +Info 512 [00:11:39.000] ======== Resolving module 'pkg0' from '/src/project/randomFileForImport.ts'. ======== +Info 513 [00:11:40.000] Explicitly specified module resolution kind: 'Node16'. +Info 514 [00:11:41.000] Resolving in ESM mode with conditions 'node', 'import', 'types'. +Info 515 [00:11:42.000] File '/src/project/package.json' does not exist according to earlier cached lookups. +Info 516 [00:11:43.000] File '/src/package.json' does not exist according to earlier cached lookups. +Info 517 [00:11:44.000] File '/package.json' does not exist according to earlier cached lookups. +Info 518 [00:11:45.000] Loading module 'pkg0' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration. +Info 519 [00:11:46.000] File '/src/project/node_modules/pkg0/package.json' exists according to earlier cached lookups. +Info 520 [00:11:47.000] Matched 'exports' condition 'import'. +Info 521 [00:11:48.000] Using 'exports' subpath '.' with target './import.js'. +Info 522 [00:11:49.000] File name '/src/project/node_modules/pkg0/import.js' has a '.js' extension - stripping it. +Info 523 [00:11:50.000] File '/src/project/node_modules/pkg0/import.ts' does not exist. +Info 524 [00:11:51.000] File '/src/project/node_modules/pkg0/import.tsx' does not exist. +Info 525 [00:11:52.000] File '/src/project/node_modules/pkg0/import.d.ts' does not exist. +Info 526 [00:11:53.000] Saw non-matching condition 'require'. +Info 527 [00:11:54.000] Directory '/src/node_modules' does not exist, skipping all lookups in it. +Info 528 [00:11:55.000] Directory '/node_modules' does not exist, skipping all lookups in it. +Info 529 [00:11:56.000] File '/src/project/node_modules/pkg0/package.json' exists according to earlier cached lookups. +Info 530 [00:11:57.000] Matched 'exports' condition 'import'. +Info 531 [00:11:58.000] Using 'exports' subpath '.' with target './import.js'. +Info 532 [00:11:59.000] File name '/src/project/node_modules/pkg0/import.js' has a '.js' extension - stripping it. +Info 533 [00:12:00.000] File '/src/project/node_modules/pkg0/import.js' does not exist. +Info 534 [00:12:01.000] File '/src/project/node_modules/pkg0/import.jsx' does not exist. +Info 535 [00:12:02.000] Saw non-matching condition 'require'. +Info 536 [00:12:03.000] Directory '/src/node_modules' does not exist, skipping all lookups in it. +Info 537 [00:12:04.000] Directory '/node_modules' does not exist, skipping all lookups in it. +Info 538 [00:12:05.000] ======== Module name 'pkg0' was not resolved. ======== +Info 539 [00:12:06.000] Directory '/src/project' has no containing package.json scope according to cache. +Info 540 [00:12:07.000] Reusing resolution of type reference directive 'pkg2' from '/src/project/randomFileForTypeRef.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. +Info 541 [00:12:08.000] Directory '/src/project/node_modules/pkg2' resolves to '/src/project/node_modules/pkg2/package.json' scope according to cache. +Info 542 [00:12:09.000] Reusing resolution of type reference directive 'pkg4' from '/src/project/__inferred type names__.ts' of old program, it was successfully resolved to '/src/project/node_modules/@types/pkg4/index.d.ts'. +Info 543 [00:12:10.000] Directory '/src/project/node_modules/@types/pkg4' has no containing package.json scope according to cache. +Info 544 [00:12:11.000] Directory '/a/lib' has no containing package.json scope according to cache. +Info 545 [00:12:12.000] DirectoryWatcher:: Added:: WatchInfo: /src/project/node_modules 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations +Info 546 [00:12:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /src/project/node_modules 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations +Info 547 [00:12:14.000] DirectoryWatcher:: Added:: WatchInfo: /src/project 0 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations +Info 548 [00:12:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /src/project 0 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations +Info 549 [00:12:16.000] Finishing updateGraphWorker: Project: /src/project/tsconfig.json Version: 10 structureChanged: true structureIsReused:: SafeModuleCache Elapsed:: *ms +Info 550 [00:12:17.000] Project '/src/project/tsconfig.json' (Configured) +Info 551 [00:12:18.000] Files (5) /a/lib/lib.d.ts /src/project/randomFileForImport.ts /src/project/node_modules/pkg2/import.d.ts @@ -2500,28 +2503,28 @@ Info 548 [00:12:15.000] Files (5) Entry point for implicit type library 'pkg4' File is CommonJS module because 'package.json' was not found -Info 549 [00:12:16.000] ----------------------------------------------- -Info 550 [00:12:17.000] Running: *ensureProjectForOpenFiles* -Info 551 [00:12:18.000] Before ensureProjectForOpenFiles: -Info 552 [00:12:19.000] Project '/src/project/tsconfig.json' (Configured) -Info 552 [00:12:20.000] Files (5) - -Info 552 [00:12:21.000] ----------------------------------------------- -Info 552 [00:12:22.000] Open files: -Info 552 [00:12:23.000] FileName: /src/project/randomFileForImport.ts ProjectRootPath: undefined -Info 552 [00:12:24.000] Projects: /src/project/tsconfig.json -Info 552 [00:12:25.000] FileName: /src/project/randomFileForTypeRef.ts ProjectRootPath: undefined -Info 552 [00:12:26.000] Projects: /src/project/tsconfig.json -Info 552 [00:12:27.000] After ensureProjectForOpenFiles: -Info 553 [00:12:28.000] Project '/src/project/tsconfig.json' (Configured) -Info 553 [00:12:29.000] Files (5) - -Info 553 [00:12:30.000] ----------------------------------------------- -Info 553 [00:12:31.000] Open files: -Info 553 [00:12:32.000] FileName: /src/project/randomFileForImport.ts ProjectRootPath: undefined -Info 553 [00:12:33.000] Projects: /src/project/tsconfig.json -Info 553 [00:12:34.000] FileName: /src/project/randomFileForTypeRef.ts ProjectRootPath: undefined -Info 553 [00:12:35.000] Projects: /src/project/tsconfig.json +Info 552 [00:12:19.000] ----------------------------------------------- +Info 553 [00:12:20.000] Running: *ensureProjectForOpenFiles* +Info 554 [00:12:21.000] Before ensureProjectForOpenFiles: +Info 555 [00:12:22.000] Project '/src/project/tsconfig.json' (Configured) +Info 555 [00:12:23.000] Files (5) + +Info 555 [00:12:24.000] ----------------------------------------------- +Info 555 [00:12:25.000] Open files: +Info 555 [00:12:26.000] FileName: /src/project/randomFileForImport.ts ProjectRootPath: undefined +Info 555 [00:12:27.000] Projects: /src/project/tsconfig.json +Info 555 [00:12:28.000] FileName: /src/project/randomFileForTypeRef.ts ProjectRootPath: undefined +Info 555 [00:12:29.000] Projects: /src/project/tsconfig.json +Info 555 [00:12:30.000] After ensureProjectForOpenFiles: +Info 556 [00:12:31.000] Project '/src/project/tsconfig.json' (Configured) +Info 556 [00:12:32.000] Files (5) + +Info 556 [00:12:33.000] ----------------------------------------------- +Info 556 [00:12:34.000] Open files: +Info 556 [00:12:35.000] FileName: /src/project/randomFileForImport.ts ProjectRootPath: undefined +Info 556 [00:12:36.000] Projects: /src/project/tsconfig.json +Info 556 [00:12:37.000] FileName: /src/project/randomFileForTypeRef.ts ProjectRootPath: undefined +Info 556 [00:12:38.000] Projects: /src/project/tsconfig.json After running timeout callbacks PolledWatches:: @@ -2550,14 +2553,14 @@ FsWatchesRecursive:: /src/project/node_modules/@types: {} -Info 553 [00:12:36.000] delete resolved typeRef file -Info 554 [00:12:38.000] DirectoryWatcher:: Triggered with /src/project/node_modules/pkg2/import.d.ts :: WatchInfo: /src/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 555 [00:12:39.000] Scheduled: /src/project/tsconfig.json -Info 556 [00:12:40.000] Scheduled: *ensureProjectForOpenFiles* -Info 557 [00:12:41.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /src/project/node_modules/pkg2/import.d.ts :: WatchInfo: /src/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 558 [00:12:42.000] DirectoryWatcher:: Triggered with /src/project/node_modules/pkg2/import.d.ts :: WatchInfo: /src/project/node_modules 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations -Info 559 [00:12:43.000] Scheduled: /src/project/tsconfig.jsonFailedLookupInvalidation -Info 560 [00:12:44.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /src/project/node_modules/pkg2/import.d.ts :: WatchInfo: /src/project/node_modules 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations +Info 556 [00:12:39.000] delete resolved typeRef file +Info 557 [00:12:41.000] DirectoryWatcher:: Triggered with /src/project/node_modules/pkg2/import.d.ts :: WatchInfo: /src/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 558 [00:12:42.000] Scheduled: /src/project/tsconfig.json +Info 559 [00:12:43.000] Scheduled: *ensureProjectForOpenFiles* +Info 560 [00:12:44.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /src/project/node_modules/pkg2/import.d.ts :: WatchInfo: /src/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 561 [00:12:45.000] DirectoryWatcher:: Triggered with /src/project/node_modules/pkg2/import.d.ts :: WatchInfo: /src/project/node_modules 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations +Info 562 [00:12:46.000] Scheduled: /src/project/tsconfig.jsonFailedLookupInvalidation +Info 563 [00:12:47.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /src/project/node_modules/pkg2/import.d.ts :: WatchInfo: /src/project/node_modules 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations Before running timeout callbacks //// [/src/project/node_modules/pkg2/import.d.ts] deleted @@ -2587,34 +2590,34 @@ FsWatchesRecursive:: /src/project/node_modules/@types: {} -Info 561 [00:12:45.000] Running: /src/project/tsconfig.json -Info 562 [00:12:46.000] Starting updateGraphWorker: Project: /src/project/tsconfig.json -Info 563 [00:12:47.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. -Info 564 [00:12:48.000] File '/a/package.json' does not exist according to earlier cached lookups. -Info 565 [00:12:49.000] Directory '/' has no containing package.json scope according to cache. -Info 566 [00:12:50.000] Directory '/src/project' has no containing package.json scope according to cache. -Info 567 [00:12:51.000] Directory '/src/project/node_modules/pkg2' resolves to '/src/project/node_modules/pkg2/package.json' scope according to cache. -Info 568 [00:12:52.000] Directory '/src/project' has no containing package.json scope according to cache. -Info 569 [00:12:53.000] Reusing resolution of module 'pkg0' from '/src/project/randomFileForImport.ts' of old program, it was not resolved. -Info 570 [00:12:54.000] Directory '/src/project' has no containing package.json scope according to cache. -Info 571 [00:12:55.000] ======== Resolving type reference directive 'pkg2', containing file '/src/project/randomFileForTypeRef.ts', root directory '/src/project/node_modules/@types'. ======== -Info 572 [00:12:56.000] Resolving with primary search path '/src/project/node_modules/@types'. -Info 573 [00:12:57.000] Looking up in 'node_modules' folder, initial location '/src/project'. -Info 574 [00:12:58.000] Found 'package.json' at '/src/project/node_modules/pkg2/package.json'. -Info 575 [00:12:59.000] Matched 'exports' condition 'import'. -Info 576 [00:13:00.000] Using 'exports' subpath '.' with target './import.js'. -Info 577 [00:13:01.000] File name '/src/project/node_modules/pkg2/import.js' has a '.js' extension - stripping it. -Info 578 [00:13:02.000] File '/src/project/node_modules/pkg2/import.d.ts' does not exist. -Info 579 [00:13:03.000] Saw non-matching condition 'require'. -Info 580 [00:13:04.000] Directory '/src/node_modules' does not exist, skipping all lookups in it. -Info 581 [00:13:05.000] Directory '/node_modules' does not exist, skipping all lookups in it. -Info 582 [00:13:06.000] ======== Type reference directive 'pkg2' was not resolved. ======== -Info 583 [00:13:07.000] Reusing resolution of type reference directive 'pkg4' from '/src/project/__inferred type names__.ts' of old program, it was successfully resolved to '/src/project/node_modules/@types/pkg4/index.d.ts'. -Info 584 [00:13:08.000] Directory '/src/project/node_modules/@types/pkg4' has no containing package.json scope according to cache. -Info 585 [00:13:09.000] Directory '/a/lib' has no containing package.json scope according to cache. -Info 586 [00:13:10.000] Finishing updateGraphWorker: Project: /src/project/tsconfig.json Version: 11 structureChanged: true structureIsReused:: SafeModuleCache Elapsed:: *ms -Info 587 [00:13:11.000] Project '/src/project/tsconfig.json' (Configured) -Info 588 [00:13:12.000] Files (4) +Info 564 [00:12:48.000] Running: /src/project/tsconfig.json +Info 565 [00:12:49.000] Starting updateGraphWorker: Project: /src/project/tsconfig.json +Info 566 [00:12:50.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. +Info 567 [00:12:51.000] File '/a/package.json' does not exist according to earlier cached lookups. +Info 568 [00:12:52.000] Directory '/' has no containing package.json scope according to cache. +Info 569 [00:12:53.000] Directory '/src/project' has no containing package.json scope according to cache. +Info 570 [00:12:54.000] Directory '/src/project/node_modules/pkg2' resolves to '/src/project/node_modules/pkg2/package.json' scope according to cache. +Info 571 [00:12:55.000] Directory '/src/project' has no containing package.json scope according to cache. +Info 572 [00:12:56.000] Reusing resolution of module 'pkg0' from '/src/project/randomFileForImport.ts' of old program, it was not resolved. +Info 573 [00:12:57.000] Directory '/src/project' has no containing package.json scope according to cache. +Info 574 [00:12:58.000] ======== Resolving type reference directive 'pkg2', containing file '/src/project/randomFileForTypeRef.ts', root directory '/src/project/node_modules/@types'. ======== +Info 575 [00:12:59.000] Resolving with primary search path '/src/project/node_modules/@types'. +Info 576 [00:13:00.000] Looking up in 'node_modules' folder, initial location '/src/project'. +Info 577 [00:13:01.000] Found 'package.json' at '/src/project/node_modules/pkg2/package.json'. +Info 578 [00:13:02.000] Matched 'exports' condition 'import'. +Info 579 [00:13:03.000] Using 'exports' subpath '.' with target './import.js'. +Info 580 [00:13:04.000] File name '/src/project/node_modules/pkg2/import.js' has a '.js' extension - stripping it. +Info 581 [00:13:05.000] File '/src/project/node_modules/pkg2/import.d.ts' does not exist. +Info 582 [00:13:06.000] Saw non-matching condition 'require'. +Info 583 [00:13:07.000] Directory '/src/node_modules' does not exist, skipping all lookups in it. +Info 584 [00:13:08.000] Directory '/node_modules' does not exist, skipping all lookups in it. +Info 585 [00:13:09.000] ======== Type reference directive 'pkg2' was not resolved. ======== +Info 586 [00:13:10.000] Reusing resolution of type reference directive 'pkg4' from '/src/project/__inferred type names__.ts' of old program, it was successfully resolved to '/src/project/node_modules/@types/pkg4/index.d.ts'. +Info 587 [00:13:11.000] Directory '/src/project/node_modules/@types/pkg4' has no containing package.json scope according to cache. +Info 588 [00:13:12.000] Directory '/a/lib' has no containing package.json scope according to cache. +Info 589 [00:13:13.000] Finishing updateGraphWorker: Project: /src/project/tsconfig.json Version: 11 structureChanged: true structureIsReused:: SafeModuleCache Elapsed:: *ms +Info 590 [00:13:14.000] Project '/src/project/tsconfig.json' (Configured) +Info 591 [00:13:15.000] Files (4) /a/lib/lib.d.ts /src/project/randomFileForImport.ts /src/project/randomFileForTypeRef.ts @@ -2633,28 +2636,28 @@ Info 588 [00:13:12.000] Files (4) Entry point for implicit type library 'pkg4' File is CommonJS module because 'package.json' was not found -Info 589 [00:13:13.000] ----------------------------------------------- -Info 590 [00:13:14.000] Running: *ensureProjectForOpenFiles* -Info 591 [00:13:15.000] Before ensureProjectForOpenFiles: -Info 592 [00:13:16.000] Project '/src/project/tsconfig.json' (Configured) -Info 592 [00:13:17.000] Files (4) - -Info 592 [00:13:18.000] ----------------------------------------------- -Info 592 [00:13:19.000] Open files: -Info 592 [00:13:20.000] FileName: /src/project/randomFileForImport.ts ProjectRootPath: undefined -Info 592 [00:13:21.000] Projects: /src/project/tsconfig.json -Info 592 [00:13:22.000] FileName: /src/project/randomFileForTypeRef.ts ProjectRootPath: undefined -Info 592 [00:13:23.000] Projects: /src/project/tsconfig.json -Info 592 [00:13:24.000] After ensureProjectForOpenFiles: -Info 593 [00:13:25.000] Project '/src/project/tsconfig.json' (Configured) -Info 593 [00:13:26.000] Files (4) - -Info 593 [00:13:27.000] ----------------------------------------------- -Info 593 [00:13:28.000] Open files: -Info 593 [00:13:29.000] FileName: /src/project/randomFileForImport.ts ProjectRootPath: undefined -Info 593 [00:13:30.000] Projects: /src/project/tsconfig.json -Info 593 [00:13:31.000] FileName: /src/project/randomFileForTypeRef.ts ProjectRootPath: undefined -Info 593 [00:13:32.000] Projects: /src/project/tsconfig.json +Info 592 [00:13:16.000] ----------------------------------------------- +Info 593 [00:13:17.000] Running: *ensureProjectForOpenFiles* +Info 594 [00:13:18.000] Before ensureProjectForOpenFiles: +Info 595 [00:13:19.000] Project '/src/project/tsconfig.json' (Configured) +Info 595 [00:13:20.000] Files (4) + +Info 595 [00:13:21.000] ----------------------------------------------- +Info 595 [00:13:22.000] Open files: +Info 595 [00:13:23.000] FileName: /src/project/randomFileForImport.ts ProjectRootPath: undefined +Info 595 [00:13:24.000] Projects: /src/project/tsconfig.json +Info 595 [00:13:25.000] FileName: /src/project/randomFileForTypeRef.ts ProjectRootPath: undefined +Info 595 [00:13:26.000] Projects: /src/project/tsconfig.json +Info 595 [00:13:27.000] After ensureProjectForOpenFiles: +Info 596 [00:13:28.000] Project '/src/project/tsconfig.json' (Configured) +Info 596 [00:13:29.000] Files (4) + +Info 596 [00:13:30.000] ----------------------------------------------- +Info 596 [00:13:31.000] Open files: +Info 596 [00:13:32.000] FileName: /src/project/randomFileForImport.ts ProjectRootPath: undefined +Info 596 [00:13:33.000] Projects: /src/project/tsconfig.json +Info 596 [00:13:34.000] FileName: /src/project/randomFileForTypeRef.ts ProjectRootPath: undefined +Info 596 [00:13:35.000] Projects: /src/project/tsconfig.json After running timeout callbacks PolledWatches:: diff --git a/tests/baselines/reference/tsserver/cacheResolutions/multi-project.js b/tests/baselines/reference/tsserver/cacheResolutions/multi-project.js index 7797415631895..62c08a00c035f 100644 --- a/tests/baselines/reference/tsserver/cacheResolutions/multi-project.js +++ b/tests/baselines/reference/tsserver/cacheResolutions/multi-project.js @@ -1159,15 +1159,16 @@ Info 53 [00:02:30.000] FileWatcher:: Added:: WatchInfo: /src/project/bRandomFi Info 54 [00:02:31.000] Starting updateGraphWorker: Project: /src/project/tsconfig.b.json Info 55 [00:02:32.000] Reusing resolution of module './aFileWithImports' from '/src/project/bFileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/aFileWithImports.ts'. Info 56 [00:02:33.000] Reusing resolution of module './bRandomFileForImport' from '/src/project/bFileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/bRandomFileForImport.ts'. -Info 57 [00:02:34.000] Reusing resolution of module 'pkg0' from '/src/project/bFileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 58 [00:02:35.000] Reusing resolution of module 'pkg0' from '/src/project/aFileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 59 [00:02:36.000] Reusing resolution of module './aRandomFileForImport' from '/src/project/aFileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/aRandomFileForImport.ts'. -Info 60 [00:02:37.000] Reusing resolution of module './aRandomFileForImport2' from '/src/project/aFileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/aRandomFileForImport2.ts'. -Info 61 [00:02:38.000] DirectoryWatcher:: Added:: WatchInfo: /src/project/node_modules/@types 1 undefined Project: /src/project/tsconfig.b.json WatchType: Type roots -Info 62 [00:02:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /src/project/node_modules/@types 1 undefined Project: /src/project/tsconfig.b.json WatchType: Type roots -Info 63 [00:02:40.000] Finishing updateGraphWorker: Project: /src/project/tsconfig.b.json Version: 1 structureChanged: true structureIsReused:: SafeModuleCache Elapsed:: *ms -Info 64 [00:02:41.000] Project '/src/project/tsconfig.b.json' (Configured) -Info 65 [00:02:42.000] Files (8) +Info 57 [00:02:34.000] Resolving real path for '/src/project/node_modules/pkg0/index.d.ts', result '/src/project/node_modules/pkg0/index.d.ts'. +Info 58 [00:02:35.000] Reusing resolution of module 'pkg0' from '/src/project/bFileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 59 [00:02:36.000] Reusing resolution of module 'pkg0' from '/src/project/aFileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 60 [00:02:37.000] Reusing resolution of module './aRandomFileForImport' from '/src/project/aFileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/aRandomFileForImport.ts'. +Info 61 [00:02:38.000] Reusing resolution of module './aRandomFileForImport2' from '/src/project/aFileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/aRandomFileForImport2.ts'. +Info 62 [00:02:39.000] DirectoryWatcher:: Added:: WatchInfo: /src/project/node_modules/@types 1 undefined Project: /src/project/tsconfig.b.json WatchType: Type roots +Info 63 [00:02:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /src/project/node_modules/@types 1 undefined Project: /src/project/tsconfig.b.json WatchType: Type roots +Info 64 [00:02:41.000] Finishing updateGraphWorker: Project: /src/project/tsconfig.b.json Version: 1 structureChanged: true structureIsReused:: SafeModuleCache Elapsed:: *ms +Info 65 [00:02:42.000] Project '/src/project/tsconfig.b.json' (Configured) +Info 66 [00:02:43.000] Files (8) /a/lib/lib.d.ts /src/project/node_modules/pkg0/index.d.ts /src/project/aRandomFileForImport.ts @@ -1197,20 +1198,20 @@ Info 65 [00:02:42.000] Files (8) bRandomFileForImport2.ts Part of 'files' list in tsconfig.json -Info 66 [00:02:43.000] ----------------------------------------------- -Info 67 [00:02:44.000] Search path: /src/project -Info 68 [00:02:45.000] For info: /src/project/tsconfig.json :: No config files found. -Info 69 [00:02:46.000] Project '/src/project/tsconfig.json' (Configured) -Info 69 [00:02:47.000] Files (11) +Info 67 [00:02:44.000] ----------------------------------------------- +Info 68 [00:02:45.000] Search path: /src/project +Info 69 [00:02:46.000] For info: /src/project/tsconfig.json :: No config files found. +Info 70 [00:02:47.000] Project '/src/project/tsconfig.json' (Configured) +Info 70 [00:02:48.000] Files (11) -Info 69 [00:02:48.000] ----------------------------------------------- -Info 69 [00:02:49.000] Project '/src/project/tsconfig.b.json' (Configured) -Info 69 [00:02:50.000] Files (8) +Info 70 [00:02:49.000] ----------------------------------------------- +Info 70 [00:02:50.000] Project '/src/project/tsconfig.b.json' (Configured) +Info 70 [00:02:51.000] Files (8) -Info 69 [00:02:51.000] ----------------------------------------------- -Info 69 [00:02:52.000] Open files: -Info 69 [00:02:53.000] FileName: /src/project/bRandomFileForImport.ts ProjectRootPath: undefined -Info 69 [00:02:54.000] Projects: /src/project/tsconfig.json,/src/project/tsconfig.b.json +Info 70 [00:02:52.000] ----------------------------------------------- +Info 70 [00:02:53.000] Open files: +Info 70 [00:02:54.000] FileName: /src/project/bRandomFileForImport.ts ProjectRootPath: undefined +Info 70 [00:02:55.000] Projects: /src/project/tsconfig.json,/src/project/tsconfig.b.json After request PolledWatches:: @@ -1249,12 +1250,12 @@ FsWatchesRecursive:: /src/project/node_modules: {} -Info 69 [00:02:55.000] response: +Info 70 [00:02:56.000] response: { "responseRequired": false } -Info 70 [00:02:56.000] modify bRandomFileForImport by adding import -Info 71 [00:02:57.000] request: +Info 71 [00:02:57.000] modify bRandomFileForImport by adding import +Info 72 [00:02:58.000] request: { "command": "change", "arguments": { @@ -1344,34 +1345,34 @@ FsWatchesRecursive:: /src/project/node_modules: {} -Info 72 [00:02:58.000] response: +Info 73 [00:02:59.000] response: { "responseRequired": false } -Info 73 [00:02:59.000] Starting updateGraphWorker: Project: /src/project/tsconfig.b.json -Info 74 [00:03:00.000] Reusing resolution of module './aFileWithImports' from '/src/project/bFileWithImports.ts' of old program, it was successfully resolved to '/src/project/aFileWithImports.ts'. -Info 75 [00:03:01.000] Reusing resolution of module './bRandomFileForImport' from '/src/project/bFileWithImports.ts' of old program, it was successfully resolved to '/src/project/bRandomFileForImport.ts'. -Info 76 [00:03:02.000] Reusing resolution of module 'pkg0' from '/src/project/bFileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 77 [00:03:03.000] Reusing resolution of module 'pkg0' from '/src/project/aFileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 78 [00:03:04.000] Reusing resolution of module './aRandomFileForImport' from '/src/project/aFileWithImports.ts' of old program, it was successfully resolved to '/src/project/aRandomFileForImport.ts'. -Info 79 [00:03:05.000] Reusing resolution of module './aRandomFileForImport2' from '/src/project/aFileWithImports.ts' of old program, it was successfully resolved to '/src/project/aRandomFileForImport2.ts'. -Info 80 [00:03:06.000] ======== Resolving module 'pkg0' from '/src/project/bRandomFileForImport.ts'. ======== -Info 81 [00:03:07.000] Resolution for module 'pkg0' was found in cache from location '/src/project'. -Info 82 [00:03:08.000] ======== Module name 'pkg0' was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. ======== -Info 83 [00:03:09.000] Finishing updateGraphWorker: Project: /src/project/tsconfig.b.json Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 84 [00:03:10.000] Different program with same set of files -Info 85 [00:03:11.000] Starting updateGraphWorker: Project: /src/project/tsconfig.json -Info 86 [00:03:12.000] Reusing resolution of module './bFileWithImports' from '/src/project/cFileWithImports.ts' of old program, it was successfully resolved to '/src/project/bFileWithImports.ts'. -Info 87 [00:03:13.000] Reusing resolution of module 'pkg0' from '/src/project/cFileWithImports.ts' of old program, it was successfully resolved to '/src/project/pkg0.d.ts'. -Info 88 [00:03:14.000] Reusing resolution of module './aFileWithImports' from '/src/project/bFileWithImports.ts' of old program, it was successfully resolved to '/src/project/aFileWithImports.ts'. -Info 89 [00:03:15.000] Reusing resolution of module './bRandomFileForImport' from '/src/project/bFileWithImports.ts' of old program, it was successfully resolved to '/src/project/bRandomFileForImport.ts'. -Info 90 [00:03:16.000] Reusing resolution of module 'pkg0' from '/src/project/bFileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 91 [00:03:17.000] Reusing resolution of module 'pkg0' from '/src/project/aFileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 92 [00:03:18.000] Reusing resolution of module './aRandomFileForImport' from '/src/project/aFileWithImports.ts' of old program, it was successfully resolved to '/src/project/aRandomFileForImport.ts'. -Info 93 [00:03:19.000] Reusing resolution of module './aRandomFileForImport2' from '/src/project/aFileWithImports.ts' of old program, it was successfully resolved to '/src/project/aRandomFileForImport2.ts'. -Info 94 [00:03:20.000] ======== Resolving module 'pkg0' from '/src/project/bRandomFileForImport.ts'. ======== -Info 95 [00:03:21.000] Using compiler options of project reference redirect '/src/project/tsconfig.b.json'. -Info 96 [00:03:22.000] Resolution for module 'pkg0' was found in cache from location '/src/project'. -Info 97 [00:03:23.000] ======== Module name 'pkg0' was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. ======== -Info 98 [00:03:24.000] Finishing updateGraphWorker: Project: /src/project/tsconfig.json Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 99 [00:03:25.000] Different program with same set of files \ No newline at end of file +Info 74 [00:03:00.000] Starting updateGraphWorker: Project: /src/project/tsconfig.b.json +Info 75 [00:03:01.000] Reusing resolution of module './aFileWithImports' from '/src/project/bFileWithImports.ts' of old program, it was successfully resolved to '/src/project/aFileWithImports.ts'. +Info 76 [00:03:02.000] Reusing resolution of module './bRandomFileForImport' from '/src/project/bFileWithImports.ts' of old program, it was successfully resolved to '/src/project/bRandomFileForImport.ts'. +Info 77 [00:03:03.000] Reusing resolution of module 'pkg0' from '/src/project/bFileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 78 [00:03:04.000] Reusing resolution of module 'pkg0' from '/src/project/aFileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 79 [00:03:05.000] Reusing resolution of module './aRandomFileForImport' from '/src/project/aFileWithImports.ts' of old program, it was successfully resolved to '/src/project/aRandomFileForImport.ts'. +Info 80 [00:03:06.000] Reusing resolution of module './aRandomFileForImport2' from '/src/project/aFileWithImports.ts' of old program, it was successfully resolved to '/src/project/aRandomFileForImport2.ts'. +Info 81 [00:03:07.000] ======== Resolving module 'pkg0' from '/src/project/bRandomFileForImport.ts'. ======== +Info 82 [00:03:08.000] Resolution for module 'pkg0' was found in cache from location '/src/project'. +Info 83 [00:03:09.000] ======== Module name 'pkg0' was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. ======== +Info 84 [00:03:10.000] Finishing updateGraphWorker: Project: /src/project/tsconfig.b.json Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 85 [00:03:11.000] Different program with same set of files +Info 86 [00:03:12.000] Starting updateGraphWorker: Project: /src/project/tsconfig.json +Info 87 [00:03:13.000] Reusing resolution of module './bFileWithImports' from '/src/project/cFileWithImports.ts' of old program, it was successfully resolved to '/src/project/bFileWithImports.ts'. +Info 88 [00:03:14.000] Reusing resolution of module 'pkg0' from '/src/project/cFileWithImports.ts' of old program, it was successfully resolved to '/src/project/pkg0.d.ts'. +Info 89 [00:03:15.000] Reusing resolution of module './aFileWithImports' from '/src/project/bFileWithImports.ts' of old program, it was successfully resolved to '/src/project/aFileWithImports.ts'. +Info 90 [00:03:16.000] Reusing resolution of module './bRandomFileForImport' from '/src/project/bFileWithImports.ts' of old program, it was successfully resolved to '/src/project/bRandomFileForImport.ts'. +Info 91 [00:03:17.000] Reusing resolution of module 'pkg0' from '/src/project/bFileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 92 [00:03:18.000] Reusing resolution of module 'pkg0' from '/src/project/aFileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 93 [00:03:19.000] Reusing resolution of module './aRandomFileForImport' from '/src/project/aFileWithImports.ts' of old program, it was successfully resolved to '/src/project/aRandomFileForImport.ts'. +Info 94 [00:03:20.000] Reusing resolution of module './aRandomFileForImport2' from '/src/project/aFileWithImports.ts' of old program, it was successfully resolved to '/src/project/aRandomFileForImport2.ts'. +Info 95 [00:03:21.000] ======== Resolving module 'pkg0' from '/src/project/bRandomFileForImport.ts'. ======== +Info 96 [00:03:22.000] Using compiler options of project reference redirect '/src/project/tsconfig.b.json'. +Info 97 [00:03:23.000] Resolution for module 'pkg0' was found in cache from location '/src/project'. +Info 98 [00:03:24.000] ======== Module name 'pkg0' was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. ======== +Info 99 [00:03:25.000] Finishing updateGraphWorker: Project: /src/project/tsconfig.json Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 100 [00:03:26.000] Different program with same set of files \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/cacheResolutions/multiple-places-first-pass.js b/tests/baselines/reference/tsserver/cacheResolutions/multiple-places-first-pass.js index 5372112abdc8f..74b674a21d089 100644 --- a/tests/baselines/reference/tsserver/cacheResolutions/multiple-places-first-pass.js +++ b/tests/baselines/reference/tsserver/cacheResolutions/multiple-places-first-pass.js @@ -793,144 +793,145 @@ Info 22 [00:02:27.000] FileWatcher:: Added:: WatchInfo: /src/project/e/ea/eaa/ Info 23 [00:02:28.000] FileWatcher:: Added:: WatchInfo: /src/project/f/fa/faa/x/y/z/randomFileForImport.ts 500 undefined WatchType: Closed Script info Info 24 [00:02:29.000] FileWatcher:: Added:: WatchInfo: /src/project/f/fa/faa/faaa/fileWithImports.ts 500 undefined WatchType: Closed Script info Info 25 [00:02:30.000] Starting updateGraphWorker: Project: /src/project/tsconfig.json -Info 26 [00:02:31.000] Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 27 [00:02:32.000] ======== Resolving module 'pkg1' from '/src/project/fileWithImports.ts'. ======== -Info 28 [00:02:33.000] Module resolution kind is not specified, using 'NodeJs'. -Info 29 [00:02:34.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. -Info 30 [00:02:35.000] File '/src/project/node_modules/pkg1.ts' does not exist. -Info 31 [00:02:36.000] File '/src/project/node_modules/pkg1.tsx' does not exist. -Info 32 [00:02:37.000] File '/src/project/node_modules/pkg1.d.ts' does not exist. -Info 33 [00:02:38.000] Directory '/src/project/node_modules/@types' does not exist, skipping all lookups in it. -Info 34 [00:02:39.000] Directory '/src/node_modules' does not exist, skipping all lookups in it. -Info 35 [00:02:40.000] Directory '/node_modules' does not exist, skipping all lookups in it. -Info 36 [00:02:41.000] Loading module 'pkg1' from 'node_modules' folder, target file types: JavaScript. -Info 37 [00:02:42.000] File '/src/project/node_modules/pkg1.js' does not exist. -Info 38 [00:02:43.000] File '/src/project/node_modules/pkg1.jsx' does not exist. -Info 39 [00:02:44.000] Directory '/src/node_modules' does not exist, skipping all lookups in it. -Info 40 [00:02:45.000] Directory '/node_modules' does not exist, skipping all lookups in it. -Info 41 [00:02:46.000] ======== Module name 'pkg1' was not resolved. ======== -Info 42 [00:02:47.000] DirectoryWatcher:: Added:: WatchInfo: /src/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 43 [00:02:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /src/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 44 [00:02:49.000] Reusing resolution of module 'pkg0' from '/src/project/a/fileWithImports.ts' found in cache from location '/src/project/a', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 45 [00:02:50.000] ======== Resolving module 'pkg1' from '/src/project/a/fileWithImports.ts'. ======== -Info 46 [00:02:51.000] Module resolution kind is not specified, using 'NodeJs'. -Info 47 [00:02:52.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. -Info 48 [00:02:53.000] Directory '/src/project/a/node_modules' does not exist, skipping all lookups in it. -Info 49 [00:02:54.000] Resolution for module 'pkg1' was found in cache from location '/src/project'. -Info 50 [00:02:55.000] ======== Module name 'pkg1' was not resolved. ======== -Info 51 [00:02:56.000] Reusing resolution of module 'pkg0' from '/src/project/b/ba/fileWithImports.ts' found in cache from location '/src/project/b/ba', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 52 [00:02:57.000] ======== Resolving module 'pkg1' from '/src/project/b/ba/fileWithImports.ts'. ======== -Info 53 [00:02:58.000] Module resolution kind is not specified, using 'NodeJs'. -Info 54 [00:02:59.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. -Info 55 [00:03:00.000] Directory '/src/project/b/ba/node_modules' does not exist, skipping all lookups in it. -Info 56 [00:03:01.000] Directory '/src/project/b/node_modules' does not exist, skipping all lookups in it. -Info 57 [00:03:02.000] Resolution for module 'pkg1' was found in cache from location '/src/project'. -Info 58 [00:03:03.000] ======== Module name 'pkg1' was not resolved. ======== -Info 59 [00:03:04.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/fileWithImports.ts' found in cache from location '/src/project/c/ca', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 60 [00:03:05.000] ======== Resolving module 'pkg1' from '/src/project/c/ca/fileWithImports.ts'. ======== -Info 61 [00:03:06.000] Module resolution kind is not specified, using 'NodeJs'. -Info 62 [00:03:07.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. -Info 63 [00:03:08.000] Directory '/src/project/c/ca/node_modules' does not exist, skipping all lookups in it. -Info 64 [00:03:09.000] Directory '/src/project/c/node_modules' does not exist, skipping all lookups in it. -Info 65 [00:03:10.000] Resolution for module 'pkg1' was found in cache from location '/src/project'. -Info 66 [00:03:11.000] ======== Module name 'pkg1' was not resolved. ======== -Info 67 [00:03:12.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/caa/caaa/fileWithImports.ts' found in cache from location '/src/project/c/ca/caa/caaa', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 68 [00:03:13.000] ======== Resolving module 'pkg1' from '/src/project/c/ca/caa/caaa/fileWithImports.ts'. ======== -Info 69 [00:03:14.000] Module resolution kind is not specified, using 'NodeJs'. -Info 70 [00:03:15.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. -Info 71 [00:03:16.000] Directory '/src/project/c/ca/caa/caaa/node_modules' does not exist, skipping all lookups in it. -Info 72 [00:03:17.000] Directory '/src/project/c/ca/caa/node_modules' does not exist, skipping all lookups in it. -Info 73 [00:03:18.000] Resolution for module 'pkg1' was found in cache from location '/src/project/c/ca'. -Info 74 [00:03:19.000] ======== Module name 'pkg1' was not resolved. ======== -Info 75 [00:03:20.000] Reusing resolution of module 'pkg0' from '/src/project/c/cb/fileWithImports.ts' found in cache from location '/src/project/c/cb', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 76 [00:03:21.000] ======== Resolving module 'pkg1' from '/src/project/c/cb/fileWithImports.ts'. ======== -Info 77 [00:03:22.000] Module resolution kind is not specified, using 'NodeJs'. -Info 78 [00:03:23.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. -Info 79 [00:03:24.000] Directory '/src/project/c/cb/node_modules' does not exist, skipping all lookups in it. -Info 80 [00:03:25.000] Resolution for module 'pkg1' was found in cache from location '/src/project/c'. -Info 81 [00:03:26.000] ======== Module name 'pkg1' was not resolved. ======== -Info 82 [00:03:27.000] ======== Resolving module 'pkg0' from '/src/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts'. ======== -Info 83 [00:03:28.000] Module resolution kind is not specified, using 'NodeJs'. -Info 84 [00:03:29.000] Loading module 'pkg0' from 'node_modules' folder, target file types: TypeScript, Declaration. -Info 85 [00:03:30.000] Directory '/src/project/d/da/daa/daaa/x/y/z/node_modules' does not exist, skipping all lookups in it. -Info 86 [00:03:31.000] Directory '/src/project/d/da/daa/daaa/x/y/node_modules' does not exist, skipping all lookups in it. -Info 87 [00:03:32.000] Directory '/src/project/d/da/daa/daaa/x/node_modules' does not exist, skipping all lookups in it. -Info 88 [00:03:33.000] Resolution for module 'pkg0' was found in cache from location '/src/project/d/da/daa/daaa'. -Info 89 [00:03:34.000] ======== Module name 'pkg0' was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. ======== -Info 90 [00:03:35.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/daaa/fileWithImports.ts' found in cache from location '/src/project/d/da/daa/daaa', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 91 [00:03:36.000] ======== Resolving module 'pkg1' from '/src/project/d/da/daa/daaa/fileWithImports.ts'. ======== -Info 92 [00:03:37.000] Module resolution kind is not specified, using 'NodeJs'. -Info 93 [00:03:38.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. -Info 94 [00:03:39.000] Directory '/src/project/d/da/daa/daaa/node_modules' does not exist, skipping all lookups in it. -Info 95 [00:03:40.000] Directory '/src/project/d/da/daa/node_modules' does not exist, skipping all lookups in it. -Info 96 [00:03:41.000] Directory '/src/project/d/da/node_modules' does not exist, skipping all lookups in it. -Info 97 [00:03:42.000] Directory '/src/project/d/node_modules' does not exist, skipping all lookups in it. -Info 98 [00:03:43.000] Resolution for module 'pkg1' was found in cache from location '/src/project'. -Info 99 [00:03:44.000] ======== Module name 'pkg1' was not resolved. ======== -Info 100 [00:03:45.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/fileWithImports.ts' found in cache from location '/src/project/d/da/daa', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 101 [00:03:46.000] ======== Resolving module 'pkg1' from '/src/project/d/da/daa/fileWithImports.ts'. ======== -Info 102 [00:03:47.000] Module resolution kind is not specified, using 'NodeJs'. -Info 103 [00:03:48.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. -Info 104 [00:03:49.000] Resolution for module 'pkg1' was found in cache from location '/src/project/d/da/daa'. -Info 105 [00:03:50.000] ======== Module name 'pkg1' was not resolved. ======== -Info 106 [00:03:51.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/fileWithImports.ts' found in cache from location '/src/project/d/da', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 107 [00:03:52.000] ======== Resolving module 'pkg1' from '/src/project/d/da/fileWithImports.ts'. ======== -Info 108 [00:03:53.000] Module resolution kind is not specified, using 'NodeJs'. -Info 109 [00:03:54.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. -Info 110 [00:03:55.000] Resolution for module 'pkg1' was found in cache from location '/src/project/d/da'. -Info 111 [00:03:56.000] ======== Module name 'pkg1' was not resolved. ======== -Info 112 [00:03:57.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/fileWithImports.ts' found in cache from location '/src/project/e/ea', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 113 [00:03:58.000] ======== Resolving module 'pkg1' from '/src/project/e/ea/fileWithImports.ts'. ======== -Info 114 [00:03:59.000] Module resolution kind is not specified, using 'NodeJs'. -Info 115 [00:04:00.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. -Info 116 [00:04:01.000] Directory '/src/project/e/ea/node_modules' does not exist, skipping all lookups in it. -Info 117 [00:04:02.000] Directory '/src/project/e/node_modules' does not exist, skipping all lookups in it. -Info 118 [00:04:03.000] Resolution for module 'pkg1' was found in cache from location '/src/project'. -Info 119 [00:04:04.000] ======== Module name 'pkg1' was not resolved. ======== -Info 120 [00:04:05.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/fileWithImports.ts' found in cache from location '/src/project/e/ea/eaa', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 121 [00:04:06.000] ======== Resolving module 'pkg1' from '/src/project/e/ea/eaa/fileWithImports.ts'. ======== -Info 122 [00:04:07.000] Module resolution kind is not specified, using 'NodeJs'. -Info 123 [00:04:08.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. -Info 124 [00:04:09.000] Directory '/src/project/e/ea/eaa/node_modules' does not exist, skipping all lookups in it. -Info 125 [00:04:10.000] Resolution for module 'pkg1' was found in cache from location '/src/project/e/ea'. -Info 126 [00:04:11.000] ======== Module name 'pkg1' was not resolved. ======== -Info 127 [00:04:12.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/eaaa/fileWithImports.ts' found in cache from location '/src/project/e/ea/eaa/eaaa', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 128 [00:04:13.000] ======== Resolving module 'pkg1' from '/src/project/e/ea/eaa/eaaa/fileWithImports.ts'. ======== -Info 129 [00:04:14.000] Module resolution kind is not specified, using 'NodeJs'. -Info 130 [00:04:15.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. -Info 131 [00:04:16.000] Directory '/src/project/e/ea/eaa/eaaa/node_modules' does not exist, skipping all lookups in it. -Info 132 [00:04:17.000] Resolution for module 'pkg1' was found in cache from location '/src/project/e/ea/eaa'. -Info 133 [00:04:18.000] ======== Module name 'pkg1' was not resolved. ======== -Info 134 [00:04:19.000] Reusing resolution of module 'pkg0' from '/src/project/f/fa/faa/faaa/fileWithImports.ts' found in cache from location '/src/project/f/fa/faa/faaa', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 135 [00:04:20.000] ======== Resolving module 'pkg1' from '/src/project/f/fa/faa/faaa/fileWithImports.ts'. ======== -Info 136 [00:04:21.000] Module resolution kind is not specified, using 'NodeJs'. -Info 137 [00:04:22.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. -Info 138 [00:04:23.000] Directory '/src/project/f/fa/faa/faaa/node_modules' does not exist, skipping all lookups in it. -Info 139 [00:04:24.000] Directory '/src/project/f/fa/faa/node_modules' does not exist, skipping all lookups in it. -Info 140 [00:04:25.000] Directory '/src/project/f/fa/node_modules' does not exist, skipping all lookups in it. -Info 141 [00:04:26.000] Directory '/src/project/f/node_modules' does not exist, skipping all lookups in it. -Info 142 [00:04:27.000] Resolution for module 'pkg1' was found in cache from location '/src/project'. -Info 143 [00:04:28.000] ======== Module name 'pkg1' was not resolved. ======== -Info 144 [00:04:29.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 145 [00:04:30.000] DirectoryWatcher:: Added:: WatchInfo: /src/project/node_modules 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations -Info 146 [00:04:31.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /src/project/node_modules 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations -Info 147 [00:04:32.000] DirectoryWatcher:: Added:: WatchInfo: /src/project/a 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations -Info 148 [00:04:33.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /src/project/a 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations -Info 149 [00:04:34.000] DirectoryWatcher:: Added:: WatchInfo: /src/project/b 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations -Info 150 [00:04:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /src/project/b 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations -Info 151 [00:04:36.000] DirectoryWatcher:: Added:: WatchInfo: /src/project/c 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations -Info 152 [00:04:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /src/project/c 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations -Info 153 [00:04:38.000] DirectoryWatcher:: Added:: WatchInfo: /src/project/d 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations -Info 154 [00:04:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /src/project/d 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations -Info 155 [00:04:40.000] DirectoryWatcher:: Added:: WatchInfo: /src/project/e 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations -Info 156 [00:04:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /src/project/e 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations -Info 157 [00:04:42.000] DirectoryWatcher:: Added:: WatchInfo: /src/project/f 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations -Info 158 [00:04:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /src/project/f 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations -Info 159 [00:04:44.000] DirectoryWatcher:: Added:: WatchInfo: /src/project/node_modules/@types 1 undefined Project: /src/project/tsconfig.json WatchType: Type roots -Info 160 [00:04:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /src/project/node_modules/@types 1 undefined Project: /src/project/tsconfig.json WatchType: Type roots -Info 161 [00:04:46.000] Finishing updateGraphWorker: Project: /src/project/tsconfig.json Version: 1 structureChanged: true structureIsReused:: SafeModuleCache Elapsed:: *ms -Info 162 [00:04:47.000] Project '/src/project/tsconfig.json' (Configured) -Info 163 [00:04:48.000] Files (21) +Info 26 [00:02:31.000] Resolving real path for '/src/project/node_modules/pkg0/index.d.ts', result '/src/project/node_modules/pkg0/index.d.ts'. +Info 27 [00:02:32.000] Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 28 [00:02:33.000] ======== Resolving module 'pkg1' from '/src/project/fileWithImports.ts'. ======== +Info 29 [00:02:34.000] Module resolution kind is not specified, using 'NodeJs'. +Info 30 [00:02:35.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info 31 [00:02:36.000] File '/src/project/node_modules/pkg1.ts' does not exist. +Info 32 [00:02:37.000] File '/src/project/node_modules/pkg1.tsx' does not exist. +Info 33 [00:02:38.000] File '/src/project/node_modules/pkg1.d.ts' does not exist. +Info 34 [00:02:39.000] Directory '/src/project/node_modules/@types' does not exist, skipping all lookups in it. +Info 35 [00:02:40.000] Directory '/src/node_modules' does not exist, skipping all lookups in it. +Info 36 [00:02:41.000] Directory '/node_modules' does not exist, skipping all lookups in it. +Info 37 [00:02:42.000] Loading module 'pkg1' from 'node_modules' folder, target file types: JavaScript. +Info 38 [00:02:43.000] File '/src/project/node_modules/pkg1.js' does not exist. +Info 39 [00:02:44.000] File '/src/project/node_modules/pkg1.jsx' does not exist. +Info 40 [00:02:45.000] Directory '/src/node_modules' does not exist, skipping all lookups in it. +Info 41 [00:02:46.000] Directory '/node_modules' does not exist, skipping all lookups in it. +Info 42 [00:02:47.000] ======== Module name 'pkg1' was not resolved. ======== +Info 43 [00:02:48.000] DirectoryWatcher:: Added:: WatchInfo: /src/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 44 [00:02:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /src/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 45 [00:02:50.000] Reusing resolution of module 'pkg0' from '/src/project/a/fileWithImports.ts' found in cache from location '/src/project/a', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 46 [00:02:51.000] ======== Resolving module 'pkg1' from '/src/project/a/fileWithImports.ts'. ======== +Info 47 [00:02:52.000] Module resolution kind is not specified, using 'NodeJs'. +Info 48 [00:02:53.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info 49 [00:02:54.000] Directory '/src/project/a/node_modules' does not exist, skipping all lookups in it. +Info 50 [00:02:55.000] Resolution for module 'pkg1' was found in cache from location '/src/project'. +Info 51 [00:02:56.000] ======== Module name 'pkg1' was not resolved. ======== +Info 52 [00:02:57.000] Reusing resolution of module 'pkg0' from '/src/project/b/ba/fileWithImports.ts' found in cache from location '/src/project/b/ba', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 53 [00:02:58.000] ======== Resolving module 'pkg1' from '/src/project/b/ba/fileWithImports.ts'. ======== +Info 54 [00:02:59.000] Module resolution kind is not specified, using 'NodeJs'. +Info 55 [00:03:00.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info 56 [00:03:01.000] Directory '/src/project/b/ba/node_modules' does not exist, skipping all lookups in it. +Info 57 [00:03:02.000] Directory '/src/project/b/node_modules' does not exist, skipping all lookups in it. +Info 58 [00:03:03.000] Resolution for module 'pkg1' was found in cache from location '/src/project'. +Info 59 [00:03:04.000] ======== Module name 'pkg1' was not resolved. ======== +Info 60 [00:03:05.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/fileWithImports.ts' found in cache from location '/src/project/c/ca', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 61 [00:03:06.000] ======== Resolving module 'pkg1' from '/src/project/c/ca/fileWithImports.ts'. ======== +Info 62 [00:03:07.000] Module resolution kind is not specified, using 'NodeJs'. +Info 63 [00:03:08.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info 64 [00:03:09.000] Directory '/src/project/c/ca/node_modules' does not exist, skipping all lookups in it. +Info 65 [00:03:10.000] Directory '/src/project/c/node_modules' does not exist, skipping all lookups in it. +Info 66 [00:03:11.000] Resolution for module 'pkg1' was found in cache from location '/src/project'. +Info 67 [00:03:12.000] ======== Module name 'pkg1' was not resolved. ======== +Info 68 [00:03:13.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/caa/caaa/fileWithImports.ts' found in cache from location '/src/project/c/ca/caa/caaa', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 69 [00:03:14.000] ======== Resolving module 'pkg1' from '/src/project/c/ca/caa/caaa/fileWithImports.ts'. ======== +Info 70 [00:03:15.000] Module resolution kind is not specified, using 'NodeJs'. +Info 71 [00:03:16.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info 72 [00:03:17.000] Directory '/src/project/c/ca/caa/caaa/node_modules' does not exist, skipping all lookups in it. +Info 73 [00:03:18.000] Directory '/src/project/c/ca/caa/node_modules' does not exist, skipping all lookups in it. +Info 74 [00:03:19.000] Resolution for module 'pkg1' was found in cache from location '/src/project/c/ca'. +Info 75 [00:03:20.000] ======== Module name 'pkg1' was not resolved. ======== +Info 76 [00:03:21.000] Reusing resolution of module 'pkg0' from '/src/project/c/cb/fileWithImports.ts' found in cache from location '/src/project/c/cb', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 77 [00:03:22.000] ======== Resolving module 'pkg1' from '/src/project/c/cb/fileWithImports.ts'. ======== +Info 78 [00:03:23.000] Module resolution kind is not specified, using 'NodeJs'. +Info 79 [00:03:24.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info 80 [00:03:25.000] Directory '/src/project/c/cb/node_modules' does not exist, skipping all lookups in it. +Info 81 [00:03:26.000] Resolution for module 'pkg1' was found in cache from location '/src/project/c'. +Info 82 [00:03:27.000] ======== Module name 'pkg1' was not resolved. ======== +Info 83 [00:03:28.000] ======== Resolving module 'pkg0' from '/src/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts'. ======== +Info 84 [00:03:29.000] Module resolution kind is not specified, using 'NodeJs'. +Info 85 [00:03:30.000] Loading module 'pkg0' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info 86 [00:03:31.000] Directory '/src/project/d/da/daa/daaa/x/y/z/node_modules' does not exist, skipping all lookups in it. +Info 87 [00:03:32.000] Directory '/src/project/d/da/daa/daaa/x/y/node_modules' does not exist, skipping all lookups in it. +Info 88 [00:03:33.000] Directory '/src/project/d/da/daa/daaa/x/node_modules' does not exist, skipping all lookups in it. +Info 89 [00:03:34.000] Resolution for module 'pkg0' was found in cache from location '/src/project/d/da/daa/daaa'. +Info 90 [00:03:35.000] ======== Module name 'pkg0' was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. ======== +Info 91 [00:03:36.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/daaa/fileWithImports.ts' found in cache from location '/src/project/d/da/daa/daaa', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 92 [00:03:37.000] ======== Resolving module 'pkg1' from '/src/project/d/da/daa/daaa/fileWithImports.ts'. ======== +Info 93 [00:03:38.000] Module resolution kind is not specified, using 'NodeJs'. +Info 94 [00:03:39.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info 95 [00:03:40.000] Directory '/src/project/d/da/daa/daaa/node_modules' does not exist, skipping all lookups in it. +Info 96 [00:03:41.000] Directory '/src/project/d/da/daa/node_modules' does not exist, skipping all lookups in it. +Info 97 [00:03:42.000] Directory '/src/project/d/da/node_modules' does not exist, skipping all lookups in it. +Info 98 [00:03:43.000] Directory '/src/project/d/node_modules' does not exist, skipping all lookups in it. +Info 99 [00:03:44.000] Resolution for module 'pkg1' was found in cache from location '/src/project'. +Info 100 [00:03:45.000] ======== Module name 'pkg1' was not resolved. ======== +Info 101 [00:03:46.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/fileWithImports.ts' found in cache from location '/src/project/d/da/daa', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 102 [00:03:47.000] ======== Resolving module 'pkg1' from '/src/project/d/da/daa/fileWithImports.ts'. ======== +Info 103 [00:03:48.000] Module resolution kind is not specified, using 'NodeJs'. +Info 104 [00:03:49.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info 105 [00:03:50.000] Resolution for module 'pkg1' was found in cache from location '/src/project/d/da/daa'. +Info 106 [00:03:51.000] ======== Module name 'pkg1' was not resolved. ======== +Info 107 [00:03:52.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/fileWithImports.ts' found in cache from location '/src/project/d/da', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 108 [00:03:53.000] ======== Resolving module 'pkg1' from '/src/project/d/da/fileWithImports.ts'. ======== +Info 109 [00:03:54.000] Module resolution kind is not specified, using 'NodeJs'. +Info 110 [00:03:55.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info 111 [00:03:56.000] Resolution for module 'pkg1' was found in cache from location '/src/project/d/da'. +Info 112 [00:03:57.000] ======== Module name 'pkg1' was not resolved. ======== +Info 113 [00:03:58.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/fileWithImports.ts' found in cache from location '/src/project/e/ea', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 114 [00:03:59.000] ======== Resolving module 'pkg1' from '/src/project/e/ea/fileWithImports.ts'. ======== +Info 115 [00:04:00.000] Module resolution kind is not specified, using 'NodeJs'. +Info 116 [00:04:01.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info 117 [00:04:02.000] Directory '/src/project/e/ea/node_modules' does not exist, skipping all lookups in it. +Info 118 [00:04:03.000] Directory '/src/project/e/node_modules' does not exist, skipping all lookups in it. +Info 119 [00:04:04.000] Resolution for module 'pkg1' was found in cache from location '/src/project'. +Info 120 [00:04:05.000] ======== Module name 'pkg1' was not resolved. ======== +Info 121 [00:04:06.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/fileWithImports.ts' found in cache from location '/src/project/e/ea/eaa', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 122 [00:04:07.000] ======== Resolving module 'pkg1' from '/src/project/e/ea/eaa/fileWithImports.ts'. ======== +Info 123 [00:04:08.000] Module resolution kind is not specified, using 'NodeJs'. +Info 124 [00:04:09.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info 125 [00:04:10.000] Directory '/src/project/e/ea/eaa/node_modules' does not exist, skipping all lookups in it. +Info 126 [00:04:11.000] Resolution for module 'pkg1' was found in cache from location '/src/project/e/ea'. +Info 127 [00:04:12.000] ======== Module name 'pkg1' was not resolved. ======== +Info 128 [00:04:13.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/eaaa/fileWithImports.ts' found in cache from location '/src/project/e/ea/eaa/eaaa', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 129 [00:04:14.000] ======== Resolving module 'pkg1' from '/src/project/e/ea/eaa/eaaa/fileWithImports.ts'. ======== +Info 130 [00:04:15.000] Module resolution kind is not specified, using 'NodeJs'. +Info 131 [00:04:16.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info 132 [00:04:17.000] Directory '/src/project/e/ea/eaa/eaaa/node_modules' does not exist, skipping all lookups in it. +Info 133 [00:04:18.000] Resolution for module 'pkg1' was found in cache from location '/src/project/e/ea/eaa'. +Info 134 [00:04:19.000] ======== Module name 'pkg1' was not resolved. ======== +Info 135 [00:04:20.000] Reusing resolution of module 'pkg0' from '/src/project/f/fa/faa/faaa/fileWithImports.ts' found in cache from location '/src/project/f/fa/faa/faaa', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 136 [00:04:21.000] ======== Resolving module 'pkg1' from '/src/project/f/fa/faa/faaa/fileWithImports.ts'. ======== +Info 137 [00:04:22.000] Module resolution kind is not specified, using 'NodeJs'. +Info 138 [00:04:23.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info 139 [00:04:24.000] Directory '/src/project/f/fa/faa/faaa/node_modules' does not exist, skipping all lookups in it. +Info 140 [00:04:25.000] Directory '/src/project/f/fa/faa/node_modules' does not exist, skipping all lookups in it. +Info 141 [00:04:26.000] Directory '/src/project/f/fa/node_modules' does not exist, skipping all lookups in it. +Info 142 [00:04:27.000] Directory '/src/project/f/node_modules' does not exist, skipping all lookups in it. +Info 143 [00:04:28.000] Resolution for module 'pkg1' was found in cache from location '/src/project'. +Info 144 [00:04:29.000] ======== Module name 'pkg1' was not resolved. ======== +Info 145 [00:04:30.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 146 [00:04:31.000] DirectoryWatcher:: Added:: WatchInfo: /src/project/node_modules 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations +Info 147 [00:04:32.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /src/project/node_modules 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations +Info 148 [00:04:33.000] DirectoryWatcher:: Added:: WatchInfo: /src/project/a 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations +Info 149 [00:04:34.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /src/project/a 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations +Info 150 [00:04:35.000] DirectoryWatcher:: Added:: WatchInfo: /src/project/b 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations +Info 151 [00:04:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /src/project/b 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations +Info 152 [00:04:37.000] DirectoryWatcher:: Added:: WatchInfo: /src/project/c 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations +Info 153 [00:04:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /src/project/c 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations +Info 154 [00:04:39.000] DirectoryWatcher:: Added:: WatchInfo: /src/project/d 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations +Info 155 [00:04:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /src/project/d 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations +Info 156 [00:04:41.000] DirectoryWatcher:: Added:: WatchInfo: /src/project/e 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations +Info 157 [00:04:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /src/project/e 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations +Info 158 [00:04:43.000] DirectoryWatcher:: Added:: WatchInfo: /src/project/f 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations +Info 159 [00:04:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /src/project/f 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations +Info 160 [00:04:45.000] DirectoryWatcher:: Added:: WatchInfo: /src/project/node_modules/@types 1 undefined Project: /src/project/tsconfig.json WatchType: Type roots +Info 161 [00:04:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /src/project/node_modules/@types 1 undefined Project: /src/project/tsconfig.json WatchType: Type roots +Info 162 [00:04:47.000] Finishing updateGraphWorker: Project: /src/project/tsconfig.json Version: 1 structureChanged: true structureIsReused:: SafeModuleCache Elapsed:: *ms +Info 163 [00:04:48.000] Project '/src/project/tsconfig.json' (Configured) +Info 164 [00:04:49.000] Files (21) /a/lib/lib.d.ts /src/project/node_modules/pkg0/index.d.ts /src/project/fileWithImports.ts @@ -1010,16 +1011,16 @@ Info 163 [00:04:48.000] Files (21) f/fa/faa/faaa/fileWithImports.ts Part of 'files' list in tsconfig.json -Info 164 [00:04:49.000] ----------------------------------------------- -Info 165 [00:04:50.000] Search path: /src/project -Info 166 [00:04:51.000] For info: /src/project/tsconfig.json :: No config files found. -Info 167 [00:04:52.000] Project '/src/project/tsconfig.json' (Configured) -Info 167 [00:04:53.000] Files (21) +Info 165 [00:04:50.000] ----------------------------------------------- +Info 166 [00:04:51.000] Search path: /src/project +Info 167 [00:04:52.000] For info: /src/project/tsconfig.json :: No config files found. +Info 168 [00:04:53.000] Project '/src/project/tsconfig.json' (Configured) +Info 168 [00:04:54.000] Files (21) -Info 167 [00:04:54.000] ----------------------------------------------- -Info 167 [00:04:55.000] Open files: -Info 167 [00:04:56.000] FileName: /src/project/randomFileForImport.ts ProjectRootPath: undefined -Info 167 [00:04:57.000] Projects: /src/project/tsconfig.json +Info 168 [00:04:55.000] ----------------------------------------------- +Info 168 [00:04:56.000] Open files: +Info 168 [00:04:57.000] FileName: /src/project/randomFileForImport.ts ProjectRootPath: undefined +Info 168 [00:04:58.000] Projects: /src/project/tsconfig.json After request PolledWatches:: @@ -1084,7 +1085,7 @@ FsWatchesRecursive:: /src/project/f: {} -Info 167 [00:04:58.000] response: +Info 168 [00:04:59.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/cacheResolutions/multiple-places.js b/tests/baselines/reference/tsserver/cacheResolutions/multiple-places.js index 675dd49bbe706..be1046d792968 100644 --- a/tests/baselines/reference/tsserver/cacheResolutions/multiple-places.js +++ b/tests/baselines/reference/tsserver/cacheResolutions/multiple-places.js @@ -792,136 +792,137 @@ Info 22 [00:02:25.000] FileWatcher:: Added:: WatchInfo: /src/project/e/ea/eaa/ Info 23 [00:02:26.000] FileWatcher:: Added:: WatchInfo: /src/project/f/fa/faa/x/y/z/randomFileForImport.ts 500 undefined WatchType: Closed Script info Info 24 [00:02:27.000] FileWatcher:: Added:: WatchInfo: /src/project/f/fa/faa/faaa/fileWithImports.ts 500 undefined WatchType: Closed Script info Info 25 [00:02:28.000] Starting updateGraphWorker: Project: /src/project/tsconfig.json -Info 26 [00:02:29.000] Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 27 [00:02:30.000] ======== Resolving module 'pkg1' from '/src/project/fileWithImports.ts'. ======== -Info 28 [00:02:31.000] Module resolution kind is not specified, using 'NodeJs'. -Info 29 [00:02:32.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. -Info 30 [00:02:33.000] File '/src/project/node_modules/pkg1.ts' does not exist. -Info 31 [00:02:34.000] File '/src/project/node_modules/pkg1.tsx' does not exist. -Info 32 [00:02:35.000] File '/src/project/node_modules/pkg1.d.ts' does not exist. -Info 33 [00:02:36.000] Directory '/src/project/node_modules/@types' does not exist, skipping all lookups in it. -Info 34 [00:02:37.000] Directory '/src/node_modules' does not exist, skipping all lookups in it. -Info 35 [00:02:38.000] Directory '/node_modules' does not exist, skipping all lookups in it. -Info 36 [00:02:39.000] Loading module 'pkg1' from 'node_modules' folder, target file types: JavaScript. -Info 37 [00:02:40.000] File '/src/project/node_modules/pkg1.js' does not exist. -Info 38 [00:02:41.000] File '/src/project/node_modules/pkg1.jsx' does not exist. -Info 39 [00:02:42.000] Directory '/src/node_modules' does not exist, skipping all lookups in it. -Info 40 [00:02:43.000] Directory '/node_modules' does not exist, skipping all lookups in it. -Info 41 [00:02:44.000] ======== Module name 'pkg1' was not resolved. ======== -Info 42 [00:02:45.000] DirectoryWatcher:: Added:: WatchInfo: /src/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 43 [00:02:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /src/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 44 [00:02:47.000] Reusing resolution of module 'pkg0' from '/src/project/a/fileWithImports.ts' found in cache from location '/src/project/a', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 45 [00:02:48.000] ======== Resolving module 'pkg1' from '/src/project/a/fileWithImports.ts'. ======== -Info 46 [00:02:49.000] Module resolution kind is not specified, using 'NodeJs'. -Info 47 [00:02:50.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. -Info 48 [00:02:51.000] Directory '/src/project/a/node_modules' does not exist, skipping all lookups in it. -Info 49 [00:02:52.000] Resolution for module 'pkg1' was found in cache from location '/src/project'. -Info 50 [00:02:53.000] ======== Module name 'pkg1' was not resolved. ======== -Info 51 [00:02:54.000] Reusing resolution of module 'pkg0' from '/src/project/b/ba/fileWithImports.ts' found in cache from location '/src/project/b/ba', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 52 [00:02:55.000] ======== Resolving module 'pkg1' from '/src/project/b/ba/fileWithImports.ts'. ======== -Info 53 [00:02:56.000] Module resolution kind is not specified, using 'NodeJs'. -Info 54 [00:02:57.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. -Info 55 [00:02:58.000] Directory '/src/project/b/ba/node_modules' does not exist, skipping all lookups in it. -Info 56 [00:02:59.000] Directory '/src/project/b/node_modules' does not exist, skipping all lookups in it. -Info 57 [00:03:00.000] Resolution for module 'pkg1' was found in cache from location '/src/project'. -Info 58 [00:03:01.000] ======== Module name 'pkg1' was not resolved. ======== -Info 59 [00:03:02.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/fileWithImports.ts' found in cache from location '/src/project/c/ca', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 60 [00:03:03.000] ======== Resolving module 'pkg1' from '/src/project/c/ca/fileWithImports.ts'. ======== -Info 61 [00:03:04.000] Module resolution kind is not specified, using 'NodeJs'. -Info 62 [00:03:05.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. -Info 63 [00:03:06.000] Directory '/src/project/c/ca/node_modules' does not exist, skipping all lookups in it. -Info 64 [00:03:07.000] Directory '/src/project/c/node_modules' does not exist, skipping all lookups in it. -Info 65 [00:03:08.000] Resolution for module 'pkg1' was found in cache from location '/src/project'. -Info 66 [00:03:09.000] ======== Module name 'pkg1' was not resolved. ======== -Info 67 [00:03:10.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/caa/caaa/fileWithImports.ts' found in cache from location '/src/project/c/ca/caa/caaa', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 68 [00:03:11.000] ======== Resolving module 'pkg1' from '/src/project/c/ca/caa/caaa/fileWithImports.ts'. ======== -Info 69 [00:03:12.000] Module resolution kind is not specified, using 'NodeJs'. -Info 70 [00:03:13.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. -Info 71 [00:03:14.000] Directory '/src/project/c/ca/caa/caaa/node_modules' does not exist, skipping all lookups in it. -Info 72 [00:03:15.000] Directory '/src/project/c/ca/caa/node_modules' does not exist, skipping all lookups in it. -Info 73 [00:03:16.000] Resolution for module 'pkg1' was found in cache from location '/src/project/c/ca'. -Info 74 [00:03:17.000] ======== Module name 'pkg1' was not resolved. ======== -Info 75 [00:03:18.000] Reusing resolution of module 'pkg0' from '/src/project/c/cb/fileWithImports.ts' found in cache from location '/src/project/c/cb', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 76 [00:03:19.000] ======== Resolving module 'pkg1' from '/src/project/c/cb/fileWithImports.ts'. ======== -Info 77 [00:03:20.000] Module resolution kind is not specified, using 'NodeJs'. -Info 78 [00:03:21.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. -Info 79 [00:03:22.000] Directory '/src/project/c/cb/node_modules' does not exist, skipping all lookups in it. -Info 80 [00:03:23.000] Resolution for module 'pkg1' was found in cache from location '/src/project/c'. -Info 81 [00:03:24.000] ======== Module name 'pkg1' was not resolved. ======== -Info 82 [00:03:25.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/daaa/fileWithImports.ts' found in cache from location '/src/project/d/da/daa/daaa', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 83 [00:03:26.000] ======== Resolving module 'pkg1' from '/src/project/d/da/daa/daaa/fileWithImports.ts'. ======== -Info 84 [00:03:27.000] Module resolution kind is not specified, using 'NodeJs'. -Info 85 [00:03:28.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. -Info 86 [00:03:29.000] Directory '/src/project/d/da/daa/daaa/node_modules' does not exist, skipping all lookups in it. -Info 87 [00:03:30.000] Directory '/src/project/d/da/daa/node_modules' does not exist, skipping all lookups in it. -Info 88 [00:03:31.000] Directory '/src/project/d/da/node_modules' does not exist, skipping all lookups in it. -Info 89 [00:03:32.000] Directory '/src/project/d/node_modules' does not exist, skipping all lookups in it. -Info 90 [00:03:33.000] Resolution for module 'pkg1' was found in cache from location '/src/project'. -Info 91 [00:03:34.000] ======== Module name 'pkg1' was not resolved. ======== -Info 92 [00:03:35.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/fileWithImports.ts' found in cache from location '/src/project/d/da/daa', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 93 [00:03:36.000] ======== Resolving module 'pkg1' from '/src/project/d/da/daa/fileWithImports.ts'. ======== -Info 94 [00:03:37.000] Module resolution kind is not specified, using 'NodeJs'. -Info 95 [00:03:38.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. -Info 96 [00:03:39.000] Resolution for module 'pkg1' was found in cache from location '/src/project/d/da/daa'. -Info 97 [00:03:40.000] ======== Module name 'pkg1' was not resolved. ======== -Info 98 [00:03:41.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/fileWithImports.ts' found in cache from location '/src/project/d/da', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 99 [00:03:42.000] ======== Resolving module 'pkg1' from '/src/project/d/da/fileWithImports.ts'. ======== -Info 100 [00:03:43.000] Module resolution kind is not specified, using 'NodeJs'. -Info 101 [00:03:44.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. -Info 102 [00:03:45.000] Resolution for module 'pkg1' was found in cache from location '/src/project/d/da'. -Info 103 [00:03:46.000] ======== Module name 'pkg1' was not resolved. ======== -Info 104 [00:03:47.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/fileWithImports.ts' found in cache from location '/src/project/e/ea', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 105 [00:03:48.000] ======== Resolving module 'pkg1' from '/src/project/e/ea/fileWithImports.ts'. ======== -Info 106 [00:03:49.000] Module resolution kind is not specified, using 'NodeJs'. -Info 107 [00:03:50.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. -Info 108 [00:03:51.000] Directory '/src/project/e/ea/node_modules' does not exist, skipping all lookups in it. -Info 109 [00:03:52.000] Directory '/src/project/e/node_modules' does not exist, skipping all lookups in it. -Info 110 [00:03:53.000] Resolution for module 'pkg1' was found in cache from location '/src/project'. -Info 111 [00:03:54.000] ======== Module name 'pkg1' was not resolved. ======== -Info 112 [00:03:55.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/fileWithImports.ts' found in cache from location '/src/project/e/ea/eaa', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 113 [00:03:56.000] ======== Resolving module 'pkg1' from '/src/project/e/ea/eaa/fileWithImports.ts'. ======== -Info 114 [00:03:57.000] Module resolution kind is not specified, using 'NodeJs'. -Info 115 [00:03:58.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. -Info 116 [00:03:59.000] Directory '/src/project/e/ea/eaa/node_modules' does not exist, skipping all lookups in it. -Info 117 [00:04:00.000] Resolution for module 'pkg1' was found in cache from location '/src/project/e/ea'. -Info 118 [00:04:01.000] ======== Module name 'pkg1' was not resolved. ======== -Info 119 [00:04:02.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/eaaa/fileWithImports.ts' found in cache from location '/src/project/e/ea/eaa/eaaa', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 120 [00:04:03.000] ======== Resolving module 'pkg1' from '/src/project/e/ea/eaa/eaaa/fileWithImports.ts'. ======== -Info 121 [00:04:04.000] Module resolution kind is not specified, using 'NodeJs'. -Info 122 [00:04:05.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. -Info 123 [00:04:06.000] Directory '/src/project/e/ea/eaa/eaaa/node_modules' does not exist, skipping all lookups in it. -Info 124 [00:04:07.000] Resolution for module 'pkg1' was found in cache from location '/src/project/e/ea/eaa'. -Info 125 [00:04:08.000] ======== Module name 'pkg1' was not resolved. ======== -Info 126 [00:04:09.000] Reusing resolution of module 'pkg0' from '/src/project/f/fa/faa/faaa/fileWithImports.ts' found in cache from location '/src/project/f/fa/faa/faaa', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 127 [00:04:10.000] ======== Resolving module 'pkg1' from '/src/project/f/fa/faa/faaa/fileWithImports.ts'. ======== -Info 128 [00:04:11.000] Module resolution kind is not specified, using 'NodeJs'. -Info 129 [00:04:12.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. -Info 130 [00:04:13.000] Directory '/src/project/f/fa/faa/faaa/node_modules' does not exist, skipping all lookups in it. -Info 131 [00:04:14.000] Directory '/src/project/f/fa/faa/node_modules' does not exist, skipping all lookups in it. -Info 132 [00:04:15.000] Directory '/src/project/f/fa/node_modules' does not exist, skipping all lookups in it. -Info 133 [00:04:16.000] Directory '/src/project/f/node_modules' does not exist, skipping all lookups in it. -Info 134 [00:04:17.000] Resolution for module 'pkg1' was found in cache from location '/src/project'. -Info 135 [00:04:18.000] ======== Module name 'pkg1' was not resolved. ======== -Info 136 [00:04:19.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 137 [00:04:20.000] DirectoryWatcher:: Added:: WatchInfo: /src/project/node_modules 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations -Info 138 [00:04:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /src/project/node_modules 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations -Info 139 [00:04:22.000] DirectoryWatcher:: Added:: WatchInfo: /src/project/a 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations -Info 140 [00:04:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /src/project/a 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations -Info 141 [00:04:24.000] DirectoryWatcher:: Added:: WatchInfo: /src/project/b 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations -Info 142 [00:04:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /src/project/b 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations -Info 143 [00:04:26.000] DirectoryWatcher:: Added:: WatchInfo: /src/project/c 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations -Info 144 [00:04:27.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /src/project/c 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations -Info 145 [00:04:28.000] DirectoryWatcher:: Added:: WatchInfo: /src/project/d 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations -Info 146 [00:04:29.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /src/project/d 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations -Info 147 [00:04:30.000] DirectoryWatcher:: Added:: WatchInfo: /src/project/e 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations -Info 148 [00:04:31.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /src/project/e 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations -Info 149 [00:04:32.000] DirectoryWatcher:: Added:: WatchInfo: /src/project/f 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations -Info 150 [00:04:33.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /src/project/f 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations -Info 151 [00:04:34.000] DirectoryWatcher:: Added:: WatchInfo: /src/project/node_modules/@types 1 undefined Project: /src/project/tsconfig.json WatchType: Type roots -Info 152 [00:04:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /src/project/node_modules/@types 1 undefined Project: /src/project/tsconfig.json WatchType: Type roots -Info 153 [00:04:36.000] Finishing updateGraphWorker: Project: /src/project/tsconfig.json Version: 1 structureChanged: true structureIsReused:: SafeModuleCache Elapsed:: *ms -Info 154 [00:04:37.000] Project '/src/project/tsconfig.json' (Configured) -Info 155 [00:04:38.000] Files (21) +Info 26 [00:02:29.000] Resolving real path for '/src/project/node_modules/pkg0/index.d.ts', result '/src/project/node_modules/pkg0/index.d.ts'. +Info 27 [00:02:30.000] Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' found in cache from location '/src/project', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 28 [00:02:31.000] ======== Resolving module 'pkg1' from '/src/project/fileWithImports.ts'. ======== +Info 29 [00:02:32.000] Module resolution kind is not specified, using 'NodeJs'. +Info 30 [00:02:33.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info 31 [00:02:34.000] File '/src/project/node_modules/pkg1.ts' does not exist. +Info 32 [00:02:35.000] File '/src/project/node_modules/pkg1.tsx' does not exist. +Info 33 [00:02:36.000] File '/src/project/node_modules/pkg1.d.ts' does not exist. +Info 34 [00:02:37.000] Directory '/src/project/node_modules/@types' does not exist, skipping all lookups in it. +Info 35 [00:02:38.000] Directory '/src/node_modules' does not exist, skipping all lookups in it. +Info 36 [00:02:39.000] Directory '/node_modules' does not exist, skipping all lookups in it. +Info 37 [00:02:40.000] Loading module 'pkg1' from 'node_modules' folder, target file types: JavaScript. +Info 38 [00:02:41.000] File '/src/project/node_modules/pkg1.js' does not exist. +Info 39 [00:02:42.000] File '/src/project/node_modules/pkg1.jsx' does not exist. +Info 40 [00:02:43.000] Directory '/src/node_modules' does not exist, skipping all lookups in it. +Info 41 [00:02:44.000] Directory '/node_modules' does not exist, skipping all lookups in it. +Info 42 [00:02:45.000] ======== Module name 'pkg1' was not resolved. ======== +Info 43 [00:02:46.000] DirectoryWatcher:: Added:: WatchInfo: /src/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 44 [00:02:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /src/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 45 [00:02:48.000] Reusing resolution of module 'pkg0' from '/src/project/a/fileWithImports.ts' found in cache from location '/src/project/a', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 46 [00:02:49.000] ======== Resolving module 'pkg1' from '/src/project/a/fileWithImports.ts'. ======== +Info 47 [00:02:50.000] Module resolution kind is not specified, using 'NodeJs'. +Info 48 [00:02:51.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info 49 [00:02:52.000] Directory '/src/project/a/node_modules' does not exist, skipping all lookups in it. +Info 50 [00:02:53.000] Resolution for module 'pkg1' was found in cache from location '/src/project'. +Info 51 [00:02:54.000] ======== Module name 'pkg1' was not resolved. ======== +Info 52 [00:02:55.000] Reusing resolution of module 'pkg0' from '/src/project/b/ba/fileWithImports.ts' found in cache from location '/src/project/b/ba', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 53 [00:02:56.000] ======== Resolving module 'pkg1' from '/src/project/b/ba/fileWithImports.ts'. ======== +Info 54 [00:02:57.000] Module resolution kind is not specified, using 'NodeJs'. +Info 55 [00:02:58.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info 56 [00:02:59.000] Directory '/src/project/b/ba/node_modules' does not exist, skipping all lookups in it. +Info 57 [00:03:00.000] Directory '/src/project/b/node_modules' does not exist, skipping all lookups in it. +Info 58 [00:03:01.000] Resolution for module 'pkg1' was found in cache from location '/src/project'. +Info 59 [00:03:02.000] ======== Module name 'pkg1' was not resolved. ======== +Info 60 [00:03:03.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/fileWithImports.ts' found in cache from location '/src/project/c/ca', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 61 [00:03:04.000] ======== Resolving module 'pkg1' from '/src/project/c/ca/fileWithImports.ts'. ======== +Info 62 [00:03:05.000] Module resolution kind is not specified, using 'NodeJs'. +Info 63 [00:03:06.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info 64 [00:03:07.000] Directory '/src/project/c/ca/node_modules' does not exist, skipping all lookups in it. +Info 65 [00:03:08.000] Directory '/src/project/c/node_modules' does not exist, skipping all lookups in it. +Info 66 [00:03:09.000] Resolution for module 'pkg1' was found in cache from location '/src/project'. +Info 67 [00:03:10.000] ======== Module name 'pkg1' was not resolved. ======== +Info 68 [00:03:11.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/caa/caaa/fileWithImports.ts' found in cache from location '/src/project/c/ca/caa/caaa', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 69 [00:03:12.000] ======== Resolving module 'pkg1' from '/src/project/c/ca/caa/caaa/fileWithImports.ts'. ======== +Info 70 [00:03:13.000] Module resolution kind is not specified, using 'NodeJs'. +Info 71 [00:03:14.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info 72 [00:03:15.000] Directory '/src/project/c/ca/caa/caaa/node_modules' does not exist, skipping all lookups in it. +Info 73 [00:03:16.000] Directory '/src/project/c/ca/caa/node_modules' does not exist, skipping all lookups in it. +Info 74 [00:03:17.000] Resolution for module 'pkg1' was found in cache from location '/src/project/c/ca'. +Info 75 [00:03:18.000] ======== Module name 'pkg1' was not resolved. ======== +Info 76 [00:03:19.000] Reusing resolution of module 'pkg0' from '/src/project/c/cb/fileWithImports.ts' found in cache from location '/src/project/c/cb', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 77 [00:03:20.000] ======== Resolving module 'pkg1' from '/src/project/c/cb/fileWithImports.ts'. ======== +Info 78 [00:03:21.000] Module resolution kind is not specified, using 'NodeJs'. +Info 79 [00:03:22.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info 80 [00:03:23.000] Directory '/src/project/c/cb/node_modules' does not exist, skipping all lookups in it. +Info 81 [00:03:24.000] Resolution for module 'pkg1' was found in cache from location '/src/project/c'. +Info 82 [00:03:25.000] ======== Module name 'pkg1' was not resolved. ======== +Info 83 [00:03:26.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/daaa/fileWithImports.ts' found in cache from location '/src/project/d/da/daa/daaa', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 84 [00:03:27.000] ======== Resolving module 'pkg1' from '/src/project/d/da/daa/daaa/fileWithImports.ts'. ======== +Info 85 [00:03:28.000] Module resolution kind is not specified, using 'NodeJs'. +Info 86 [00:03:29.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info 87 [00:03:30.000] Directory '/src/project/d/da/daa/daaa/node_modules' does not exist, skipping all lookups in it. +Info 88 [00:03:31.000] Directory '/src/project/d/da/daa/node_modules' does not exist, skipping all lookups in it. +Info 89 [00:03:32.000] Directory '/src/project/d/da/node_modules' does not exist, skipping all lookups in it. +Info 90 [00:03:33.000] Directory '/src/project/d/node_modules' does not exist, skipping all lookups in it. +Info 91 [00:03:34.000] Resolution for module 'pkg1' was found in cache from location '/src/project'. +Info 92 [00:03:35.000] ======== Module name 'pkg1' was not resolved. ======== +Info 93 [00:03:36.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/fileWithImports.ts' found in cache from location '/src/project/d/da/daa', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 94 [00:03:37.000] ======== Resolving module 'pkg1' from '/src/project/d/da/daa/fileWithImports.ts'. ======== +Info 95 [00:03:38.000] Module resolution kind is not specified, using 'NodeJs'. +Info 96 [00:03:39.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info 97 [00:03:40.000] Resolution for module 'pkg1' was found in cache from location '/src/project/d/da/daa'. +Info 98 [00:03:41.000] ======== Module name 'pkg1' was not resolved. ======== +Info 99 [00:03:42.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/fileWithImports.ts' found in cache from location '/src/project/d/da', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 100 [00:03:43.000] ======== Resolving module 'pkg1' from '/src/project/d/da/fileWithImports.ts'. ======== +Info 101 [00:03:44.000] Module resolution kind is not specified, using 'NodeJs'. +Info 102 [00:03:45.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info 103 [00:03:46.000] Resolution for module 'pkg1' was found in cache from location '/src/project/d/da'. +Info 104 [00:03:47.000] ======== Module name 'pkg1' was not resolved. ======== +Info 105 [00:03:48.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/fileWithImports.ts' found in cache from location '/src/project/e/ea', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 106 [00:03:49.000] ======== Resolving module 'pkg1' from '/src/project/e/ea/fileWithImports.ts'. ======== +Info 107 [00:03:50.000] Module resolution kind is not specified, using 'NodeJs'. +Info 108 [00:03:51.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info 109 [00:03:52.000] Directory '/src/project/e/ea/node_modules' does not exist, skipping all lookups in it. +Info 110 [00:03:53.000] Directory '/src/project/e/node_modules' does not exist, skipping all lookups in it. +Info 111 [00:03:54.000] Resolution for module 'pkg1' was found in cache from location '/src/project'. +Info 112 [00:03:55.000] ======== Module name 'pkg1' was not resolved. ======== +Info 113 [00:03:56.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/fileWithImports.ts' found in cache from location '/src/project/e/ea/eaa', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 114 [00:03:57.000] ======== Resolving module 'pkg1' from '/src/project/e/ea/eaa/fileWithImports.ts'. ======== +Info 115 [00:03:58.000] Module resolution kind is not specified, using 'NodeJs'. +Info 116 [00:03:59.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info 117 [00:04:00.000] Directory '/src/project/e/ea/eaa/node_modules' does not exist, skipping all lookups in it. +Info 118 [00:04:01.000] Resolution for module 'pkg1' was found in cache from location '/src/project/e/ea'. +Info 119 [00:04:02.000] ======== Module name 'pkg1' was not resolved. ======== +Info 120 [00:04:03.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/eaaa/fileWithImports.ts' found in cache from location '/src/project/e/ea/eaa/eaaa', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 121 [00:04:04.000] ======== Resolving module 'pkg1' from '/src/project/e/ea/eaa/eaaa/fileWithImports.ts'. ======== +Info 122 [00:04:05.000] Module resolution kind is not specified, using 'NodeJs'. +Info 123 [00:04:06.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info 124 [00:04:07.000] Directory '/src/project/e/ea/eaa/eaaa/node_modules' does not exist, skipping all lookups in it. +Info 125 [00:04:08.000] Resolution for module 'pkg1' was found in cache from location '/src/project/e/ea/eaa'. +Info 126 [00:04:09.000] ======== Module name 'pkg1' was not resolved. ======== +Info 127 [00:04:10.000] Reusing resolution of module 'pkg0' from '/src/project/f/fa/faa/faaa/fileWithImports.ts' found in cache from location '/src/project/f/fa/faa/faaa', it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 128 [00:04:11.000] ======== Resolving module 'pkg1' from '/src/project/f/fa/faa/faaa/fileWithImports.ts'. ======== +Info 129 [00:04:12.000] Module resolution kind is not specified, using 'NodeJs'. +Info 130 [00:04:13.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info 131 [00:04:14.000] Directory '/src/project/f/fa/faa/faaa/node_modules' does not exist, skipping all lookups in it. +Info 132 [00:04:15.000] Directory '/src/project/f/fa/faa/node_modules' does not exist, skipping all lookups in it. +Info 133 [00:04:16.000] Directory '/src/project/f/fa/node_modules' does not exist, skipping all lookups in it. +Info 134 [00:04:17.000] Directory '/src/project/f/node_modules' does not exist, skipping all lookups in it. +Info 135 [00:04:18.000] Resolution for module 'pkg1' was found in cache from location '/src/project'. +Info 136 [00:04:19.000] ======== Module name 'pkg1' was not resolved. ======== +Info 137 [00:04:20.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 138 [00:04:21.000] DirectoryWatcher:: Added:: WatchInfo: /src/project/node_modules 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations +Info 139 [00:04:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /src/project/node_modules 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations +Info 140 [00:04:23.000] DirectoryWatcher:: Added:: WatchInfo: /src/project/a 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations +Info 141 [00:04:24.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /src/project/a 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations +Info 142 [00:04:25.000] DirectoryWatcher:: Added:: WatchInfo: /src/project/b 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations +Info 143 [00:04:26.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /src/project/b 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations +Info 144 [00:04:27.000] DirectoryWatcher:: Added:: WatchInfo: /src/project/c 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations +Info 145 [00:04:28.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /src/project/c 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations +Info 146 [00:04:29.000] DirectoryWatcher:: Added:: WatchInfo: /src/project/d 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations +Info 147 [00:04:30.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /src/project/d 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations +Info 148 [00:04:31.000] DirectoryWatcher:: Added:: WatchInfo: /src/project/e 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations +Info 149 [00:04:32.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /src/project/e 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations +Info 150 [00:04:33.000] DirectoryWatcher:: Added:: WatchInfo: /src/project/f 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations +Info 151 [00:04:34.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /src/project/f 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations +Info 152 [00:04:35.000] DirectoryWatcher:: Added:: WatchInfo: /src/project/node_modules/@types 1 undefined Project: /src/project/tsconfig.json WatchType: Type roots +Info 153 [00:04:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /src/project/node_modules/@types 1 undefined Project: /src/project/tsconfig.json WatchType: Type roots +Info 154 [00:04:37.000] Finishing updateGraphWorker: Project: /src/project/tsconfig.json Version: 1 structureChanged: true structureIsReused:: SafeModuleCache Elapsed:: *ms +Info 155 [00:04:38.000] Project '/src/project/tsconfig.json' (Configured) +Info 156 [00:04:39.000] Files (21) /a/lib/lib.d.ts /src/project/node_modules/pkg0/index.d.ts /src/project/fileWithImports.ts @@ -1000,16 +1001,16 @@ Info 155 [00:04:38.000] Files (21) f/fa/faa/faaa/fileWithImports.ts Part of 'files' list in tsconfig.json -Info 156 [00:04:39.000] ----------------------------------------------- -Info 157 [00:04:40.000] Search path: /src/project -Info 158 [00:04:41.000] For info: /src/project/tsconfig.json :: No config files found. -Info 159 [00:04:42.000] Project '/src/project/tsconfig.json' (Configured) -Info 159 [00:04:43.000] Files (21) +Info 157 [00:04:40.000] ----------------------------------------------- +Info 158 [00:04:41.000] Search path: /src/project +Info 159 [00:04:42.000] For info: /src/project/tsconfig.json :: No config files found. +Info 160 [00:04:43.000] Project '/src/project/tsconfig.json' (Configured) +Info 160 [00:04:44.000] Files (21) -Info 159 [00:04:44.000] ----------------------------------------------- -Info 159 [00:04:45.000] Open files: -Info 159 [00:04:46.000] FileName: /src/project/randomFileForImport.ts ProjectRootPath: undefined -Info 159 [00:04:47.000] Projects: /src/project/tsconfig.json +Info 160 [00:04:45.000] ----------------------------------------------- +Info 160 [00:04:46.000] Open files: +Info 160 [00:04:47.000] FileName: /src/project/randomFileForImport.ts ProjectRootPath: undefined +Info 160 [00:04:48.000] Projects: /src/project/tsconfig.json After request PolledWatches:: @@ -1074,11 +1075,11 @@ FsWatchesRecursive:: /src/project/f: {} -Info 159 [00:04:48.000] response: +Info 160 [00:04:49.000] response: { "responseRequired": false } -Info 160 [00:04:49.000] request: +Info 161 [00:04:50.000] request: { "command": "open", "arguments": { @@ -1151,20 +1152,20 @@ FsWatchesRecursive:: /src/project/f: {} -Info 161 [00:04:50.000] FileWatcher:: Close:: WatchInfo: /src/project/b/randomFileForImport.ts 500 undefined WatchType: Closed Script info -Info 162 [00:04:51.000] Search path: /src/project/b -Info 163 [00:04:52.000] For info: /src/project/b/randomFileForImport.ts :: Config file name: /src/project/tsconfig.json -Info 164 [00:04:53.000] Search path: /src/project -Info 165 [00:04:54.000] For info: /src/project/tsconfig.json :: No config files found. -Info 166 [00:04:55.000] Project '/src/project/tsconfig.json' (Configured) -Info 166 [00:04:56.000] Files (21) - -Info 166 [00:04:57.000] ----------------------------------------------- -Info 166 [00:04:58.000] Open files: -Info 166 [00:04:59.000] FileName: /src/project/randomFileForImport.ts ProjectRootPath: undefined -Info 166 [00:05:00.000] Projects: /src/project/tsconfig.json -Info 166 [00:05:01.000] FileName: /src/project/b/randomFileForImport.ts ProjectRootPath: undefined -Info 166 [00:05:02.000] Projects: /src/project/tsconfig.json +Info 162 [00:04:51.000] FileWatcher:: Close:: WatchInfo: /src/project/b/randomFileForImport.ts 500 undefined WatchType: Closed Script info +Info 163 [00:04:52.000] Search path: /src/project/b +Info 164 [00:04:53.000] For info: /src/project/b/randomFileForImport.ts :: Config file name: /src/project/tsconfig.json +Info 165 [00:04:54.000] Search path: /src/project +Info 166 [00:04:55.000] For info: /src/project/tsconfig.json :: No config files found. +Info 167 [00:04:56.000] Project '/src/project/tsconfig.json' (Configured) +Info 167 [00:04:57.000] Files (21) + +Info 167 [00:04:58.000] ----------------------------------------------- +Info 167 [00:04:59.000] Open files: +Info 167 [00:05:00.000] FileName: /src/project/randomFileForImport.ts ProjectRootPath: undefined +Info 167 [00:05:01.000] Projects: /src/project/tsconfig.json +Info 167 [00:05:02.000] FileName: /src/project/b/randomFileForImport.ts ProjectRootPath: undefined +Info 167 [00:05:03.000] Projects: /src/project/tsconfig.json After request PolledWatches:: @@ -1227,11 +1228,11 @@ FsWatchesRecursive:: /src/project/f: {} -Info 166 [00:05:03.000] response: +Info 167 [00:05:04.000] response: { "responseRequired": false } -Info 167 [00:05:04.000] request: +Info 168 [00:05:05.000] request: { "command": "open", "arguments": { @@ -1302,22 +1303,22 @@ FsWatchesRecursive:: /src/project/f: {} -Info 168 [00:05:05.000] FileWatcher:: Close:: WatchInfo: /src/project/c/ca/caa/randomFileForImport.ts 500 undefined WatchType: Closed Script info -Info 169 [00:05:06.000] Search path: /src/project/c/ca/caa -Info 170 [00:05:07.000] For info: /src/project/c/ca/caa/randomFileForImport.ts :: Config file name: /src/project/tsconfig.json -Info 171 [00:05:08.000] Search path: /src/project -Info 172 [00:05:09.000] For info: /src/project/tsconfig.json :: No config files found. -Info 173 [00:05:10.000] Project '/src/project/tsconfig.json' (Configured) -Info 173 [00:05:11.000] Files (21) - -Info 173 [00:05:12.000] ----------------------------------------------- -Info 173 [00:05:13.000] Open files: -Info 173 [00:05:14.000] FileName: /src/project/randomFileForImport.ts ProjectRootPath: undefined -Info 173 [00:05:15.000] Projects: /src/project/tsconfig.json -Info 173 [00:05:16.000] FileName: /src/project/b/randomFileForImport.ts ProjectRootPath: undefined -Info 173 [00:05:17.000] Projects: /src/project/tsconfig.json -Info 173 [00:05:18.000] FileName: /src/project/c/ca/caa/randomFileForImport.ts ProjectRootPath: undefined -Info 173 [00:05:19.000] Projects: /src/project/tsconfig.json +Info 169 [00:05:06.000] FileWatcher:: Close:: WatchInfo: /src/project/c/ca/caa/randomFileForImport.ts 500 undefined WatchType: Closed Script info +Info 170 [00:05:07.000] Search path: /src/project/c/ca/caa +Info 171 [00:05:08.000] For info: /src/project/c/ca/caa/randomFileForImport.ts :: Config file name: /src/project/tsconfig.json +Info 172 [00:05:09.000] Search path: /src/project +Info 173 [00:05:10.000] For info: /src/project/tsconfig.json :: No config files found. +Info 174 [00:05:11.000] Project '/src/project/tsconfig.json' (Configured) +Info 174 [00:05:12.000] Files (21) + +Info 174 [00:05:13.000] ----------------------------------------------- +Info 174 [00:05:14.000] Open files: +Info 174 [00:05:15.000] FileName: /src/project/randomFileForImport.ts ProjectRootPath: undefined +Info 174 [00:05:16.000] Projects: /src/project/tsconfig.json +Info 174 [00:05:17.000] FileName: /src/project/b/randomFileForImport.ts ProjectRootPath: undefined +Info 174 [00:05:18.000] Projects: /src/project/tsconfig.json +Info 174 [00:05:19.000] FileName: /src/project/c/ca/caa/randomFileForImport.ts ProjectRootPath: undefined +Info 174 [00:05:20.000] Projects: /src/project/tsconfig.json After request PolledWatches:: @@ -1378,11 +1379,11 @@ FsWatchesRecursive:: /src/project/f: {} -Info 173 [00:05:20.000] response: +Info 174 [00:05:21.000] response: { "responseRequired": false } -Info 174 [00:05:21.000] request: +Info 175 [00:05:22.000] request: { "command": "open", "arguments": { @@ -1451,24 +1452,24 @@ FsWatchesRecursive:: /src/project/f: {} -Info 175 [00:05:22.000] FileWatcher:: Close:: WatchInfo: /src/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts 500 undefined WatchType: Closed Script info -Info 176 [00:05:23.000] Search path: /src/project/d/da/daa/daaa/x/y/z -Info 177 [00:05:24.000] For info: /src/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts :: Config file name: /src/project/tsconfig.json -Info 178 [00:05:25.000] Search path: /src/project -Info 179 [00:05:26.000] For info: /src/project/tsconfig.json :: No config files found. -Info 180 [00:05:27.000] Project '/src/project/tsconfig.json' (Configured) -Info 180 [00:05:28.000] Files (21) - -Info 180 [00:05:29.000] ----------------------------------------------- -Info 180 [00:05:30.000] Open files: -Info 180 [00:05:31.000] FileName: /src/project/randomFileForImport.ts ProjectRootPath: undefined -Info 180 [00:05:32.000] Projects: /src/project/tsconfig.json -Info 180 [00:05:33.000] FileName: /src/project/b/randomFileForImport.ts ProjectRootPath: undefined -Info 180 [00:05:34.000] Projects: /src/project/tsconfig.json -Info 180 [00:05:35.000] FileName: /src/project/c/ca/caa/randomFileForImport.ts ProjectRootPath: undefined -Info 180 [00:05:36.000] Projects: /src/project/tsconfig.json -Info 180 [00:05:37.000] FileName: /src/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts ProjectRootPath: undefined -Info 180 [00:05:38.000] Projects: /src/project/tsconfig.json +Info 176 [00:05:23.000] FileWatcher:: Close:: WatchInfo: /src/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts 500 undefined WatchType: Closed Script info +Info 177 [00:05:24.000] Search path: /src/project/d/da/daa/daaa/x/y/z +Info 178 [00:05:25.000] For info: /src/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts :: Config file name: /src/project/tsconfig.json +Info 179 [00:05:26.000] Search path: /src/project +Info 180 [00:05:27.000] For info: /src/project/tsconfig.json :: No config files found. +Info 181 [00:05:28.000] Project '/src/project/tsconfig.json' (Configured) +Info 181 [00:05:29.000] Files (21) + +Info 181 [00:05:30.000] ----------------------------------------------- +Info 181 [00:05:31.000] Open files: +Info 181 [00:05:32.000] FileName: /src/project/randomFileForImport.ts ProjectRootPath: undefined +Info 181 [00:05:33.000] Projects: /src/project/tsconfig.json +Info 181 [00:05:34.000] FileName: /src/project/b/randomFileForImport.ts ProjectRootPath: undefined +Info 181 [00:05:35.000] Projects: /src/project/tsconfig.json +Info 181 [00:05:36.000] FileName: /src/project/c/ca/caa/randomFileForImport.ts ProjectRootPath: undefined +Info 181 [00:05:37.000] Projects: /src/project/tsconfig.json +Info 181 [00:05:38.000] FileName: /src/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts ProjectRootPath: undefined +Info 181 [00:05:39.000] Projects: /src/project/tsconfig.json After request PolledWatches:: @@ -1527,11 +1528,11 @@ FsWatchesRecursive:: /src/project/f: {} -Info 180 [00:05:39.000] response: +Info 181 [00:05:40.000] response: { "responseRequired": false } -Info 181 [00:05:40.000] request: +Info 182 [00:05:41.000] request: { "command": "open", "arguments": { @@ -1598,26 +1599,26 @@ FsWatchesRecursive:: /src/project/f: {} -Info 182 [00:05:41.000] FileWatcher:: Close:: WatchInfo: /src/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts 500 undefined WatchType: Closed Script info -Info 183 [00:05:42.000] Search path: /src/project/e/ea/eaa/eaaa/x/y/z -Info 184 [00:05:43.000] For info: /src/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts :: Config file name: /src/project/tsconfig.json -Info 185 [00:05:44.000] Search path: /src/project -Info 186 [00:05:45.000] For info: /src/project/tsconfig.json :: No config files found. -Info 187 [00:05:46.000] Project '/src/project/tsconfig.json' (Configured) -Info 187 [00:05:47.000] Files (21) - -Info 187 [00:05:48.000] ----------------------------------------------- -Info 187 [00:05:49.000] Open files: -Info 187 [00:05:50.000] FileName: /src/project/randomFileForImport.ts ProjectRootPath: undefined -Info 187 [00:05:51.000] Projects: /src/project/tsconfig.json -Info 187 [00:05:52.000] FileName: /src/project/b/randomFileForImport.ts ProjectRootPath: undefined -Info 187 [00:05:53.000] Projects: /src/project/tsconfig.json -Info 187 [00:05:54.000] FileName: /src/project/c/ca/caa/randomFileForImport.ts ProjectRootPath: undefined -Info 187 [00:05:55.000] Projects: /src/project/tsconfig.json -Info 187 [00:05:56.000] FileName: /src/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts ProjectRootPath: undefined -Info 187 [00:05:57.000] Projects: /src/project/tsconfig.json -Info 187 [00:05:58.000] FileName: /src/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts ProjectRootPath: undefined -Info 187 [00:05:59.000] Projects: /src/project/tsconfig.json +Info 183 [00:05:42.000] FileWatcher:: Close:: WatchInfo: /src/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts 500 undefined WatchType: Closed Script info +Info 184 [00:05:43.000] Search path: /src/project/e/ea/eaa/eaaa/x/y/z +Info 185 [00:05:44.000] For info: /src/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts :: Config file name: /src/project/tsconfig.json +Info 186 [00:05:45.000] Search path: /src/project +Info 187 [00:05:46.000] For info: /src/project/tsconfig.json :: No config files found. +Info 188 [00:05:47.000] Project '/src/project/tsconfig.json' (Configured) +Info 188 [00:05:48.000] Files (21) + +Info 188 [00:05:49.000] ----------------------------------------------- +Info 188 [00:05:50.000] Open files: +Info 188 [00:05:51.000] FileName: /src/project/randomFileForImport.ts ProjectRootPath: undefined +Info 188 [00:05:52.000] Projects: /src/project/tsconfig.json +Info 188 [00:05:53.000] FileName: /src/project/b/randomFileForImport.ts ProjectRootPath: undefined +Info 188 [00:05:54.000] Projects: /src/project/tsconfig.json +Info 188 [00:05:55.000] FileName: /src/project/c/ca/caa/randomFileForImport.ts ProjectRootPath: undefined +Info 188 [00:05:56.000] Projects: /src/project/tsconfig.json +Info 188 [00:05:57.000] FileName: /src/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts ProjectRootPath: undefined +Info 188 [00:05:58.000] Projects: /src/project/tsconfig.json +Info 188 [00:05:59.000] FileName: /src/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts ProjectRootPath: undefined +Info 188 [00:06:00.000] Projects: /src/project/tsconfig.json After request PolledWatches:: @@ -1674,12 +1675,12 @@ FsWatchesRecursive:: /src/project/f: {} -Info 187 [00:06:00.000] response: +Info 188 [00:06:01.000] response: { "responseRequired": false } -Info 188 [00:06:01.000] modify randomFileForImport by adding import -Info 189 [00:06:02.000] request: +Info 189 [00:06:02.000] modify randomFileForImport by adding import +Info 190 [00:06:03.000] request: { "command": "change", "arguments": { @@ -1805,44 +1806,44 @@ FsWatchesRecursive:: /src/project/f: {} -Info 190 [00:06:03.000] response: +Info 191 [00:06:04.000] response: { "responseRequired": false } -Info 191 [00:06:04.000] Starting updateGraphWorker: Project: /src/project/tsconfig.json -Info 192 [00:06:05.000] Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 193 [00:06:06.000] Reusing resolution of module 'pkg1' from '/src/project/fileWithImports.ts' of old program, it was not resolved. -Info 194 [00:06:07.000] ======== Resolving module 'pkg0' from '/src/project/randomFileForImport.ts'. ======== -Info 195 [00:06:08.000] Resolution for module 'pkg0' was found in cache from location '/src/project'. -Info 196 [00:06:09.000] ======== Module name 'pkg0' was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. ======== -Info 197 [00:06:10.000] Reusing resolution of module 'pkg0' from '/src/project/a/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 198 [00:06:11.000] Reusing resolution of module 'pkg1' from '/src/project/a/fileWithImports.ts' of old program, it was not resolved. -Info 199 [00:06:12.000] Reusing resolution of module 'pkg0' from '/src/project/b/ba/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 200 [00:06:13.000] Reusing resolution of module 'pkg1' from '/src/project/b/ba/fileWithImports.ts' of old program, it was not resolved. -Info 201 [00:06:14.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 202 [00:06:15.000] Reusing resolution of module 'pkg1' from '/src/project/c/ca/fileWithImports.ts' of old program, it was not resolved. -Info 203 [00:06:16.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 204 [00:06:17.000] Reusing resolution of module 'pkg1' from '/src/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was not resolved. -Info 205 [00:06:18.000] Reusing resolution of module 'pkg0' from '/src/project/c/cb/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 206 [00:06:19.000] Reusing resolution of module 'pkg1' from '/src/project/c/cb/fileWithImports.ts' of old program, it was not resolved. -Info 207 [00:06:20.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 208 [00:06:21.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was not resolved. -Info 209 [00:06:22.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 210 [00:06:23.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/daa/fileWithImports.ts' of old program, it was not resolved. -Info 211 [00:06:24.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 212 [00:06:25.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/fileWithImports.ts' of old program, it was not resolved. -Info 213 [00:06:26.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 214 [00:06:27.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/fileWithImports.ts' of old program, it was not resolved. -Info 215 [00:06:28.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 216 [00:06:29.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/eaa/fileWithImports.ts' of old program, it was not resolved. -Info 217 [00:06:30.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 218 [00:06:31.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was not resolved. -Info 219 [00:06:32.000] Reusing resolution of module 'pkg0' from '/src/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 220 [00:06:33.000] Reusing resolution of module 'pkg1' from '/src/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was not resolved. -Info 221 [00:06:34.000] Finishing updateGraphWorker: Project: /src/project/tsconfig.json Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 222 [00:06:35.000] Different program with same set of files -Info 223 [00:06:36.000] modify b/randomFileForImport by adding import -Info 224 [00:06:37.000] request: +Info 192 [00:06:05.000] Starting updateGraphWorker: Project: /src/project/tsconfig.json +Info 193 [00:06:06.000] Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 194 [00:06:07.000] Reusing resolution of module 'pkg1' from '/src/project/fileWithImports.ts' of old program, it was not resolved. +Info 195 [00:06:08.000] ======== Resolving module 'pkg0' from '/src/project/randomFileForImport.ts'. ======== +Info 196 [00:06:09.000] Resolution for module 'pkg0' was found in cache from location '/src/project'. +Info 197 [00:06:10.000] ======== Module name 'pkg0' was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. ======== +Info 198 [00:06:11.000] Reusing resolution of module 'pkg0' from '/src/project/a/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 199 [00:06:12.000] Reusing resolution of module 'pkg1' from '/src/project/a/fileWithImports.ts' of old program, it was not resolved. +Info 200 [00:06:13.000] Reusing resolution of module 'pkg0' from '/src/project/b/ba/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 201 [00:06:14.000] Reusing resolution of module 'pkg1' from '/src/project/b/ba/fileWithImports.ts' of old program, it was not resolved. +Info 202 [00:06:15.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 203 [00:06:16.000] Reusing resolution of module 'pkg1' from '/src/project/c/ca/fileWithImports.ts' of old program, it was not resolved. +Info 204 [00:06:17.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 205 [00:06:18.000] Reusing resolution of module 'pkg1' from '/src/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was not resolved. +Info 206 [00:06:19.000] Reusing resolution of module 'pkg0' from '/src/project/c/cb/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 207 [00:06:20.000] Reusing resolution of module 'pkg1' from '/src/project/c/cb/fileWithImports.ts' of old program, it was not resolved. +Info 208 [00:06:21.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 209 [00:06:22.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was not resolved. +Info 210 [00:06:23.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 211 [00:06:24.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/daa/fileWithImports.ts' of old program, it was not resolved. +Info 212 [00:06:25.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 213 [00:06:26.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/fileWithImports.ts' of old program, it was not resolved. +Info 214 [00:06:27.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 215 [00:06:28.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/fileWithImports.ts' of old program, it was not resolved. +Info 216 [00:06:29.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 217 [00:06:30.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/eaa/fileWithImports.ts' of old program, it was not resolved. +Info 218 [00:06:31.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 219 [00:06:32.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was not resolved. +Info 220 [00:06:33.000] Reusing resolution of module 'pkg0' from '/src/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 221 [00:06:34.000] Reusing resolution of module 'pkg1' from '/src/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was not resolved. +Info 222 [00:06:35.000] Finishing updateGraphWorker: Project: /src/project/tsconfig.json Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 223 [00:06:36.000] Different program with same set of files +Info 224 [00:06:37.000] modify b/randomFileForImport by adding import +Info 225 [00:06:38.000] request: { "command": "change", "arguments": { @@ -1968,45 +1969,45 @@ FsWatchesRecursive:: /src/project/f: {} -Info 225 [00:06:38.000] response: +Info 226 [00:06:39.000] response: { "responseRequired": false } -Info 226 [00:06:39.000] Starting updateGraphWorker: Project: /src/project/tsconfig.json -Info 227 [00:06:40.000] Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 228 [00:06:41.000] Reusing resolution of module 'pkg1' from '/src/project/fileWithImports.ts' of old program, it was not resolved. -Info 229 [00:06:42.000] Reusing resolution of module 'pkg0' from '/src/project/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 230 [00:06:43.000] Reusing resolution of module 'pkg0' from '/src/project/a/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 231 [00:06:44.000] Reusing resolution of module 'pkg1' from '/src/project/a/fileWithImports.ts' of old program, it was not resolved. -Info 232 [00:06:45.000] Reusing resolution of module 'pkg0' from '/src/project/b/ba/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 233 [00:06:46.000] Reusing resolution of module 'pkg1' from '/src/project/b/ba/fileWithImports.ts' of old program, it was not resolved. -Info 234 [00:06:47.000] ======== Resolving module 'pkg0' from '/src/project/b/randomFileForImport.ts'. ======== -Info 235 [00:06:48.000] Resolution for module 'pkg0' was found in cache from location '/src/project/b'. -Info 236 [00:06:49.000] ======== Module name 'pkg0' was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. ======== -Info 237 [00:06:50.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 238 [00:06:51.000] Reusing resolution of module 'pkg1' from '/src/project/c/ca/fileWithImports.ts' of old program, it was not resolved. -Info 239 [00:06:52.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 240 [00:06:53.000] Reusing resolution of module 'pkg1' from '/src/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was not resolved. -Info 241 [00:06:54.000] Reusing resolution of module 'pkg0' from '/src/project/c/cb/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 242 [00:06:55.000] Reusing resolution of module 'pkg1' from '/src/project/c/cb/fileWithImports.ts' of old program, it was not resolved. -Info 243 [00:06:56.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 244 [00:06:57.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was not resolved. -Info 245 [00:06:58.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 246 [00:06:59.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/daa/fileWithImports.ts' of old program, it was not resolved. -Info 247 [00:07:00.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 248 [00:07:01.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/fileWithImports.ts' of old program, it was not resolved. -Info 249 [00:07:02.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 250 [00:07:03.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/fileWithImports.ts' of old program, it was not resolved. -Info 251 [00:07:04.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 252 [00:07:05.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/eaa/fileWithImports.ts' of old program, it was not resolved. -Info 253 [00:07:06.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 254 [00:07:07.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was not resolved. -Info 255 [00:07:08.000] Reusing resolution of module 'pkg0' from '/src/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 256 [00:07:09.000] Reusing resolution of module 'pkg1' from '/src/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was not resolved. -Info 257 [00:07:10.000] Finishing updateGraphWorker: Project: /src/project/tsconfig.json Version: 3 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 258 [00:07:11.000] Different program with same set of files -Info 259 [00:07:12.000] modify c/ca/caa/randomFileForImport by adding import -Info 260 [00:07:13.000] request: +Info 227 [00:06:40.000] Starting updateGraphWorker: Project: /src/project/tsconfig.json +Info 228 [00:06:41.000] Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 229 [00:06:42.000] Reusing resolution of module 'pkg1' from '/src/project/fileWithImports.ts' of old program, it was not resolved. +Info 230 [00:06:43.000] Reusing resolution of module 'pkg0' from '/src/project/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 231 [00:06:44.000] Reusing resolution of module 'pkg0' from '/src/project/a/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 232 [00:06:45.000] Reusing resolution of module 'pkg1' from '/src/project/a/fileWithImports.ts' of old program, it was not resolved. +Info 233 [00:06:46.000] Reusing resolution of module 'pkg0' from '/src/project/b/ba/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 234 [00:06:47.000] Reusing resolution of module 'pkg1' from '/src/project/b/ba/fileWithImports.ts' of old program, it was not resolved. +Info 235 [00:06:48.000] ======== Resolving module 'pkg0' from '/src/project/b/randomFileForImport.ts'. ======== +Info 236 [00:06:49.000] Resolution for module 'pkg0' was found in cache from location '/src/project/b'. +Info 237 [00:06:50.000] ======== Module name 'pkg0' was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. ======== +Info 238 [00:06:51.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 239 [00:06:52.000] Reusing resolution of module 'pkg1' from '/src/project/c/ca/fileWithImports.ts' of old program, it was not resolved. +Info 240 [00:06:53.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 241 [00:06:54.000] Reusing resolution of module 'pkg1' from '/src/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was not resolved. +Info 242 [00:06:55.000] Reusing resolution of module 'pkg0' from '/src/project/c/cb/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 243 [00:06:56.000] Reusing resolution of module 'pkg1' from '/src/project/c/cb/fileWithImports.ts' of old program, it was not resolved. +Info 244 [00:06:57.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 245 [00:06:58.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was not resolved. +Info 246 [00:06:59.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 247 [00:07:00.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/daa/fileWithImports.ts' of old program, it was not resolved. +Info 248 [00:07:01.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 249 [00:07:02.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/fileWithImports.ts' of old program, it was not resolved. +Info 250 [00:07:03.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 251 [00:07:04.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/fileWithImports.ts' of old program, it was not resolved. +Info 252 [00:07:05.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 253 [00:07:06.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/eaa/fileWithImports.ts' of old program, it was not resolved. +Info 254 [00:07:07.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 255 [00:07:08.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was not resolved. +Info 256 [00:07:09.000] Reusing resolution of module 'pkg0' from '/src/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 257 [00:07:10.000] Reusing resolution of module 'pkg1' from '/src/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was not resolved. +Info 258 [00:07:11.000] Finishing updateGraphWorker: Project: /src/project/tsconfig.json Version: 3 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 259 [00:07:12.000] Different program with same set of files +Info 260 [00:07:13.000] modify c/ca/caa/randomFileForImport by adding import +Info 261 [00:07:14.000] request: { "command": "change", "arguments": { @@ -2132,46 +2133,46 @@ FsWatchesRecursive:: /src/project/f: {} -Info 261 [00:07:14.000] response: +Info 262 [00:07:15.000] response: { "responseRequired": false } -Info 262 [00:07:15.000] Starting updateGraphWorker: Project: /src/project/tsconfig.json -Info 263 [00:07:16.000] Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 264 [00:07:17.000] Reusing resolution of module 'pkg1' from '/src/project/fileWithImports.ts' of old program, it was not resolved. -Info 265 [00:07:18.000] Reusing resolution of module 'pkg0' from '/src/project/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 266 [00:07:19.000] Reusing resolution of module 'pkg0' from '/src/project/a/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 267 [00:07:20.000] Reusing resolution of module 'pkg1' from '/src/project/a/fileWithImports.ts' of old program, it was not resolved. -Info 268 [00:07:21.000] Reusing resolution of module 'pkg0' from '/src/project/b/ba/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 269 [00:07:22.000] Reusing resolution of module 'pkg1' from '/src/project/b/ba/fileWithImports.ts' of old program, it was not resolved. -Info 270 [00:07:23.000] Reusing resolution of module 'pkg0' from '/src/project/b/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 271 [00:07:24.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 272 [00:07:25.000] Reusing resolution of module 'pkg1' from '/src/project/c/ca/fileWithImports.ts' of old program, it was not resolved. -Info 273 [00:07:26.000] ======== Resolving module 'pkg0' from '/src/project/c/ca/caa/randomFileForImport.ts'. ======== -Info 274 [00:07:27.000] Resolution for module 'pkg0' was found in cache from location '/src/project/c/ca/caa'. -Info 275 [00:07:28.000] ======== Module name 'pkg0' was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. ======== -Info 276 [00:07:29.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 277 [00:07:30.000] Reusing resolution of module 'pkg1' from '/src/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was not resolved. -Info 278 [00:07:31.000] Reusing resolution of module 'pkg0' from '/src/project/c/cb/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 279 [00:07:32.000] Reusing resolution of module 'pkg1' from '/src/project/c/cb/fileWithImports.ts' of old program, it was not resolved. -Info 280 [00:07:33.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 281 [00:07:34.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was not resolved. -Info 282 [00:07:35.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 283 [00:07:36.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/daa/fileWithImports.ts' of old program, it was not resolved. -Info 284 [00:07:37.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 285 [00:07:38.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/fileWithImports.ts' of old program, it was not resolved. -Info 286 [00:07:39.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 287 [00:07:40.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/fileWithImports.ts' of old program, it was not resolved. -Info 288 [00:07:41.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 289 [00:07:42.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/eaa/fileWithImports.ts' of old program, it was not resolved. -Info 290 [00:07:43.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 291 [00:07:44.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was not resolved. -Info 292 [00:07:45.000] Reusing resolution of module 'pkg0' from '/src/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 293 [00:07:46.000] Reusing resolution of module 'pkg1' from '/src/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was not resolved. -Info 294 [00:07:47.000] Finishing updateGraphWorker: Project: /src/project/tsconfig.json Version: 4 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 295 [00:07:48.000] Different program with same set of files -Info 296 [00:07:49.000] modify d/da/daa/daaa/x/y/z/randomFileForImport by adding import -Info 297 [00:07:50.000] request: +Info 263 [00:07:16.000] Starting updateGraphWorker: Project: /src/project/tsconfig.json +Info 264 [00:07:17.000] Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 265 [00:07:18.000] Reusing resolution of module 'pkg1' from '/src/project/fileWithImports.ts' of old program, it was not resolved. +Info 266 [00:07:19.000] Reusing resolution of module 'pkg0' from '/src/project/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 267 [00:07:20.000] Reusing resolution of module 'pkg0' from '/src/project/a/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 268 [00:07:21.000] Reusing resolution of module 'pkg1' from '/src/project/a/fileWithImports.ts' of old program, it was not resolved. +Info 269 [00:07:22.000] Reusing resolution of module 'pkg0' from '/src/project/b/ba/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 270 [00:07:23.000] Reusing resolution of module 'pkg1' from '/src/project/b/ba/fileWithImports.ts' of old program, it was not resolved. +Info 271 [00:07:24.000] Reusing resolution of module 'pkg0' from '/src/project/b/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 272 [00:07:25.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 273 [00:07:26.000] Reusing resolution of module 'pkg1' from '/src/project/c/ca/fileWithImports.ts' of old program, it was not resolved. +Info 274 [00:07:27.000] ======== Resolving module 'pkg0' from '/src/project/c/ca/caa/randomFileForImport.ts'. ======== +Info 275 [00:07:28.000] Resolution for module 'pkg0' was found in cache from location '/src/project/c/ca/caa'. +Info 276 [00:07:29.000] ======== Module name 'pkg0' was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. ======== +Info 277 [00:07:30.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 278 [00:07:31.000] Reusing resolution of module 'pkg1' from '/src/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was not resolved. +Info 279 [00:07:32.000] Reusing resolution of module 'pkg0' from '/src/project/c/cb/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 280 [00:07:33.000] Reusing resolution of module 'pkg1' from '/src/project/c/cb/fileWithImports.ts' of old program, it was not resolved. +Info 281 [00:07:34.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 282 [00:07:35.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was not resolved. +Info 283 [00:07:36.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 284 [00:07:37.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/daa/fileWithImports.ts' of old program, it was not resolved. +Info 285 [00:07:38.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 286 [00:07:39.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/fileWithImports.ts' of old program, it was not resolved. +Info 287 [00:07:40.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 288 [00:07:41.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/fileWithImports.ts' of old program, it was not resolved. +Info 289 [00:07:42.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 290 [00:07:43.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/eaa/fileWithImports.ts' of old program, it was not resolved. +Info 291 [00:07:44.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 292 [00:07:45.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was not resolved. +Info 293 [00:07:46.000] Reusing resolution of module 'pkg0' from '/src/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 294 [00:07:47.000] Reusing resolution of module 'pkg1' from '/src/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was not resolved. +Info 295 [00:07:48.000] Finishing updateGraphWorker: Project: /src/project/tsconfig.json Version: 4 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 296 [00:07:49.000] Different program with same set of files +Info 297 [00:07:50.000] modify d/da/daa/daaa/x/y/z/randomFileForImport by adding import +Info 298 [00:07:51.000] request: { "command": "change", "arguments": { @@ -2297,52 +2298,52 @@ FsWatchesRecursive:: /src/project/f: {} -Info 298 [00:07:51.000] response: +Info 299 [00:07:52.000] response: { "responseRequired": false } -Info 299 [00:07:52.000] Starting updateGraphWorker: Project: /src/project/tsconfig.json -Info 300 [00:07:53.000] Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 301 [00:07:54.000] Reusing resolution of module 'pkg1' from '/src/project/fileWithImports.ts' of old program, it was not resolved. -Info 302 [00:07:55.000] Reusing resolution of module 'pkg0' from '/src/project/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 303 [00:07:56.000] Reusing resolution of module 'pkg0' from '/src/project/a/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 304 [00:07:57.000] Reusing resolution of module 'pkg1' from '/src/project/a/fileWithImports.ts' of old program, it was not resolved. -Info 305 [00:07:58.000] Reusing resolution of module 'pkg0' from '/src/project/b/ba/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 306 [00:07:59.000] Reusing resolution of module 'pkg1' from '/src/project/b/ba/fileWithImports.ts' of old program, it was not resolved. -Info 307 [00:08:00.000] Reusing resolution of module 'pkg0' from '/src/project/b/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 308 [00:08:01.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 309 [00:08:02.000] Reusing resolution of module 'pkg1' from '/src/project/c/ca/fileWithImports.ts' of old program, it was not resolved. -Info 310 [00:08:03.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/caa/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 311 [00:08:04.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 312 [00:08:05.000] Reusing resolution of module 'pkg1' from '/src/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was not resolved. -Info 313 [00:08:06.000] Reusing resolution of module 'pkg0' from '/src/project/c/cb/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 314 [00:08:07.000] Reusing resolution of module 'pkg1' from '/src/project/c/cb/fileWithImports.ts' of old program, it was not resolved. -Info 315 [00:08:08.000] ======== Resolving module 'pkg0' from '/src/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts'. ======== -Info 316 [00:08:09.000] Module resolution kind is not specified, using 'NodeJs'. -Info 317 [00:08:10.000] Loading module 'pkg0' from 'node_modules' folder, target file types: TypeScript, Declaration. -Info 318 [00:08:11.000] Directory '/src/project/d/da/daa/daaa/x/y/z/node_modules' does not exist, skipping all lookups in it. -Info 319 [00:08:12.000] Directory '/src/project/d/da/daa/daaa/x/y/node_modules' does not exist, skipping all lookups in it. -Info 320 [00:08:13.000] Directory '/src/project/d/da/daa/daaa/x/node_modules' does not exist, skipping all lookups in it. -Info 321 [00:08:14.000] Resolution for module 'pkg0' was found in cache from location '/src/project/d/da/daa/daaa'. -Info 322 [00:08:15.000] ======== Module name 'pkg0' was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. ======== -Info 323 [00:08:16.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 324 [00:08:17.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was not resolved. -Info 325 [00:08:18.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 326 [00:08:19.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/daa/fileWithImports.ts' of old program, it was not resolved. -Info 327 [00:08:20.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 328 [00:08:21.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/fileWithImports.ts' of old program, it was not resolved. -Info 329 [00:08:22.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 330 [00:08:23.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/fileWithImports.ts' of old program, it was not resolved. -Info 331 [00:08:24.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 332 [00:08:25.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/eaa/fileWithImports.ts' of old program, it was not resolved. -Info 333 [00:08:26.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 334 [00:08:27.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was not resolved. -Info 335 [00:08:28.000] Reusing resolution of module 'pkg0' from '/src/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 336 [00:08:29.000] Reusing resolution of module 'pkg1' from '/src/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was not resolved. -Info 337 [00:08:30.000] Finishing updateGraphWorker: Project: /src/project/tsconfig.json Version: 5 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 338 [00:08:31.000] Different program with same set of files -Info 339 [00:08:32.000] modify e/ea/eaa/eaaa/x/y/z/randomFileForImport by adding import -Info 340 [00:08:33.000] request: +Info 300 [00:07:53.000] Starting updateGraphWorker: Project: /src/project/tsconfig.json +Info 301 [00:07:54.000] Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 302 [00:07:55.000] Reusing resolution of module 'pkg1' from '/src/project/fileWithImports.ts' of old program, it was not resolved. +Info 303 [00:07:56.000] Reusing resolution of module 'pkg0' from '/src/project/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 304 [00:07:57.000] Reusing resolution of module 'pkg0' from '/src/project/a/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 305 [00:07:58.000] Reusing resolution of module 'pkg1' from '/src/project/a/fileWithImports.ts' of old program, it was not resolved. +Info 306 [00:07:59.000] Reusing resolution of module 'pkg0' from '/src/project/b/ba/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 307 [00:08:00.000] Reusing resolution of module 'pkg1' from '/src/project/b/ba/fileWithImports.ts' of old program, it was not resolved. +Info 308 [00:08:01.000] Reusing resolution of module 'pkg0' from '/src/project/b/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 309 [00:08:02.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 310 [00:08:03.000] Reusing resolution of module 'pkg1' from '/src/project/c/ca/fileWithImports.ts' of old program, it was not resolved. +Info 311 [00:08:04.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/caa/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 312 [00:08:05.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 313 [00:08:06.000] Reusing resolution of module 'pkg1' from '/src/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was not resolved. +Info 314 [00:08:07.000] Reusing resolution of module 'pkg0' from '/src/project/c/cb/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 315 [00:08:08.000] Reusing resolution of module 'pkg1' from '/src/project/c/cb/fileWithImports.ts' of old program, it was not resolved. +Info 316 [00:08:09.000] ======== Resolving module 'pkg0' from '/src/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts'. ======== +Info 317 [00:08:10.000] Module resolution kind is not specified, using 'NodeJs'. +Info 318 [00:08:11.000] Loading module 'pkg0' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info 319 [00:08:12.000] Directory '/src/project/d/da/daa/daaa/x/y/z/node_modules' does not exist, skipping all lookups in it. +Info 320 [00:08:13.000] Directory '/src/project/d/da/daa/daaa/x/y/node_modules' does not exist, skipping all lookups in it. +Info 321 [00:08:14.000] Directory '/src/project/d/da/daa/daaa/x/node_modules' does not exist, skipping all lookups in it. +Info 322 [00:08:15.000] Resolution for module 'pkg0' was found in cache from location '/src/project/d/da/daa/daaa'. +Info 323 [00:08:16.000] ======== Module name 'pkg0' was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. ======== +Info 324 [00:08:17.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 325 [00:08:18.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was not resolved. +Info 326 [00:08:19.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 327 [00:08:20.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/daa/fileWithImports.ts' of old program, it was not resolved. +Info 328 [00:08:21.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 329 [00:08:22.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/fileWithImports.ts' of old program, it was not resolved. +Info 330 [00:08:23.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 331 [00:08:24.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/fileWithImports.ts' of old program, it was not resolved. +Info 332 [00:08:25.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 333 [00:08:26.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/eaa/fileWithImports.ts' of old program, it was not resolved. +Info 334 [00:08:27.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 335 [00:08:28.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was not resolved. +Info 336 [00:08:29.000] Reusing resolution of module 'pkg0' from '/src/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 337 [00:08:30.000] Reusing resolution of module 'pkg1' from '/src/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was not resolved. +Info 338 [00:08:31.000] Finishing updateGraphWorker: Project: /src/project/tsconfig.json Version: 5 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 339 [00:08:32.000] Different program with same set of files +Info 340 [00:08:33.000] modify e/ea/eaa/eaaa/x/y/z/randomFileForImport by adding import +Info 341 [00:08:34.000] request: { "command": "change", "arguments": { @@ -2468,53 +2469,53 @@ FsWatchesRecursive:: /src/project/f: {} -Info 341 [00:08:34.000] response: +Info 342 [00:08:35.000] response: { "responseRequired": false } -Info 342 [00:08:35.000] Starting updateGraphWorker: Project: /src/project/tsconfig.json -Info 343 [00:08:36.000] Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 344 [00:08:37.000] Reusing resolution of module 'pkg1' from '/src/project/fileWithImports.ts' of old program, it was not resolved. -Info 345 [00:08:38.000] Reusing resolution of module 'pkg0' from '/src/project/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 346 [00:08:39.000] Reusing resolution of module 'pkg0' from '/src/project/a/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 347 [00:08:40.000] Reusing resolution of module 'pkg1' from '/src/project/a/fileWithImports.ts' of old program, it was not resolved. -Info 348 [00:08:41.000] Reusing resolution of module 'pkg0' from '/src/project/b/ba/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 349 [00:08:42.000] Reusing resolution of module 'pkg1' from '/src/project/b/ba/fileWithImports.ts' of old program, it was not resolved. -Info 350 [00:08:43.000] Reusing resolution of module 'pkg0' from '/src/project/b/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 351 [00:08:44.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 352 [00:08:45.000] Reusing resolution of module 'pkg1' from '/src/project/c/ca/fileWithImports.ts' of old program, it was not resolved. -Info 353 [00:08:46.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/caa/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 354 [00:08:47.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 355 [00:08:48.000] Reusing resolution of module 'pkg1' from '/src/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was not resolved. -Info 356 [00:08:49.000] Reusing resolution of module 'pkg0' from '/src/project/c/cb/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 357 [00:08:50.000] Reusing resolution of module 'pkg1' from '/src/project/c/cb/fileWithImports.ts' of old program, it was not resolved. -Info 358 [00:08:51.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 359 [00:08:52.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 360 [00:08:53.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was not resolved. -Info 361 [00:08:54.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 362 [00:08:55.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/daa/fileWithImports.ts' of old program, it was not resolved. -Info 363 [00:08:56.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 364 [00:08:57.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/fileWithImports.ts' of old program, it was not resolved. -Info 365 [00:08:58.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 366 [00:08:59.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/fileWithImports.ts' of old program, it was not resolved. -Info 367 [00:09:00.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 368 [00:09:01.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/eaa/fileWithImports.ts' of old program, it was not resolved. -Info 369 [00:09:02.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 370 [00:09:03.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was not resolved. -Info 371 [00:09:04.000] ======== Resolving module 'pkg0' from '/src/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts'. ======== -Info 372 [00:09:05.000] Module resolution kind is not specified, using 'NodeJs'. -Info 373 [00:09:06.000] Loading module 'pkg0' from 'node_modules' folder, target file types: TypeScript, Declaration. -Info 374 [00:09:07.000] Directory '/src/project/e/ea/eaa/eaaa/x/y/z/node_modules' does not exist, skipping all lookups in it. -Info 375 [00:09:08.000] Directory '/src/project/e/ea/eaa/eaaa/x/y/node_modules' does not exist, skipping all lookups in it. -Info 376 [00:09:09.000] Directory '/src/project/e/ea/eaa/eaaa/x/node_modules' does not exist, skipping all lookups in it. -Info 377 [00:09:10.000] Resolution for module 'pkg0' was found in cache from location '/src/project/e/ea/eaa/eaaa'. -Info 378 [00:09:11.000] ======== Module name 'pkg0' was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. ======== -Info 379 [00:09:12.000] Reusing resolution of module 'pkg0' from '/src/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 380 [00:09:13.000] Reusing resolution of module 'pkg1' from '/src/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was not resolved. -Info 381 [00:09:14.000] Finishing updateGraphWorker: Project: /src/project/tsconfig.json Version: 6 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 382 [00:09:15.000] Different program with same set of files -Info 383 [00:09:16.000] modify randomFileForImport by adding unresolved import -Info 384 [00:09:17.000] request: +Info 343 [00:08:36.000] Starting updateGraphWorker: Project: /src/project/tsconfig.json +Info 344 [00:08:37.000] Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 345 [00:08:38.000] Reusing resolution of module 'pkg1' from '/src/project/fileWithImports.ts' of old program, it was not resolved. +Info 346 [00:08:39.000] Reusing resolution of module 'pkg0' from '/src/project/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 347 [00:08:40.000] Reusing resolution of module 'pkg0' from '/src/project/a/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 348 [00:08:41.000] Reusing resolution of module 'pkg1' from '/src/project/a/fileWithImports.ts' of old program, it was not resolved. +Info 349 [00:08:42.000] Reusing resolution of module 'pkg0' from '/src/project/b/ba/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 350 [00:08:43.000] Reusing resolution of module 'pkg1' from '/src/project/b/ba/fileWithImports.ts' of old program, it was not resolved. +Info 351 [00:08:44.000] Reusing resolution of module 'pkg0' from '/src/project/b/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 352 [00:08:45.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 353 [00:08:46.000] Reusing resolution of module 'pkg1' from '/src/project/c/ca/fileWithImports.ts' of old program, it was not resolved. +Info 354 [00:08:47.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/caa/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 355 [00:08:48.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 356 [00:08:49.000] Reusing resolution of module 'pkg1' from '/src/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was not resolved. +Info 357 [00:08:50.000] Reusing resolution of module 'pkg0' from '/src/project/c/cb/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 358 [00:08:51.000] Reusing resolution of module 'pkg1' from '/src/project/c/cb/fileWithImports.ts' of old program, it was not resolved. +Info 359 [00:08:52.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 360 [00:08:53.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 361 [00:08:54.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was not resolved. +Info 362 [00:08:55.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 363 [00:08:56.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/daa/fileWithImports.ts' of old program, it was not resolved. +Info 364 [00:08:57.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 365 [00:08:58.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/fileWithImports.ts' of old program, it was not resolved. +Info 366 [00:08:59.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 367 [00:09:00.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/fileWithImports.ts' of old program, it was not resolved. +Info 368 [00:09:01.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 369 [00:09:02.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/eaa/fileWithImports.ts' of old program, it was not resolved. +Info 370 [00:09:03.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 371 [00:09:04.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was not resolved. +Info 372 [00:09:05.000] ======== Resolving module 'pkg0' from '/src/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts'. ======== +Info 373 [00:09:06.000] Module resolution kind is not specified, using 'NodeJs'. +Info 374 [00:09:07.000] Loading module 'pkg0' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info 375 [00:09:08.000] Directory '/src/project/e/ea/eaa/eaaa/x/y/z/node_modules' does not exist, skipping all lookups in it. +Info 376 [00:09:09.000] Directory '/src/project/e/ea/eaa/eaaa/x/y/node_modules' does not exist, skipping all lookups in it. +Info 377 [00:09:10.000] Directory '/src/project/e/ea/eaa/eaaa/x/node_modules' does not exist, skipping all lookups in it. +Info 378 [00:09:11.000] Resolution for module 'pkg0' was found in cache from location '/src/project/e/ea/eaa/eaaa'. +Info 379 [00:09:12.000] ======== Module name 'pkg0' was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. ======== +Info 380 [00:09:13.000] Reusing resolution of module 'pkg0' from '/src/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 381 [00:09:14.000] Reusing resolution of module 'pkg1' from '/src/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was not resolved. +Info 382 [00:09:15.000] Finishing updateGraphWorker: Project: /src/project/tsconfig.json Version: 6 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 383 [00:09:16.000] Different program with same set of files +Info 384 [00:09:17.000] modify randomFileForImport by adding unresolved import +Info 385 [00:09:18.000] request: { "command": "change", "arguments": { @@ -2640,49 +2641,49 @@ FsWatchesRecursive:: /src/project/f: {} -Info 385 [00:09:18.000] response: +Info 386 [00:09:19.000] response: { "responseRequired": false } -Info 386 [00:09:19.000] Starting updateGraphWorker: Project: /src/project/tsconfig.json -Info 387 [00:09:20.000] Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 388 [00:09:21.000] Reusing resolution of module 'pkg1' from '/src/project/fileWithImports.ts' of old program, it was not resolved. -Info 389 [00:09:22.000] ======== Resolving module 'pkg1' from '/src/project/randomFileForImport.ts'. ======== -Info 390 [00:09:23.000] Resolution for module 'pkg1' was found in cache from location '/src/project'. -Info 391 [00:09:24.000] ======== Module name 'pkg1' was not resolved. ======== -Info 392 [00:09:25.000] Reusing resolution of module 'pkg0' from '/src/project/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 393 [00:09:26.000] Reusing resolution of module 'pkg0' from '/src/project/a/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 394 [00:09:27.000] Reusing resolution of module 'pkg1' from '/src/project/a/fileWithImports.ts' of old program, it was not resolved. -Info 395 [00:09:28.000] Reusing resolution of module 'pkg0' from '/src/project/b/ba/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 396 [00:09:29.000] Reusing resolution of module 'pkg1' from '/src/project/b/ba/fileWithImports.ts' of old program, it was not resolved. -Info 397 [00:09:30.000] Reusing resolution of module 'pkg0' from '/src/project/b/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 398 [00:09:31.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 399 [00:09:32.000] Reusing resolution of module 'pkg1' from '/src/project/c/ca/fileWithImports.ts' of old program, it was not resolved. -Info 400 [00:09:33.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/caa/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 401 [00:09:34.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 402 [00:09:35.000] Reusing resolution of module 'pkg1' from '/src/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was not resolved. -Info 403 [00:09:36.000] Reusing resolution of module 'pkg0' from '/src/project/c/cb/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 404 [00:09:37.000] Reusing resolution of module 'pkg1' from '/src/project/c/cb/fileWithImports.ts' of old program, it was not resolved. -Info 405 [00:09:38.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 406 [00:09:39.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 407 [00:09:40.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was not resolved. -Info 408 [00:09:41.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 409 [00:09:42.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/daa/fileWithImports.ts' of old program, it was not resolved. -Info 410 [00:09:43.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 411 [00:09:44.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/fileWithImports.ts' of old program, it was not resolved. -Info 412 [00:09:45.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 413 [00:09:46.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/fileWithImports.ts' of old program, it was not resolved. -Info 414 [00:09:47.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 415 [00:09:48.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/eaa/fileWithImports.ts' of old program, it was not resolved. -Info 416 [00:09:49.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 417 [00:09:50.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was not resolved. -Info 418 [00:09:51.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 419 [00:09:52.000] Reusing resolution of module 'pkg0' from '/src/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 420 [00:09:53.000] Reusing resolution of module 'pkg1' from '/src/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was not resolved. -Info 421 [00:09:54.000] Finishing updateGraphWorker: Project: /src/project/tsconfig.json Version: 7 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 422 [00:09:55.000] Different program with same set of files -Info 423 [00:09:56.000] modify b/randomFileForImport by adding unresolved import -Info 424 [00:09:57.000] request: +Info 387 [00:09:20.000] Starting updateGraphWorker: Project: /src/project/tsconfig.json +Info 388 [00:09:21.000] Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 389 [00:09:22.000] Reusing resolution of module 'pkg1' from '/src/project/fileWithImports.ts' of old program, it was not resolved. +Info 390 [00:09:23.000] ======== Resolving module 'pkg1' from '/src/project/randomFileForImport.ts'. ======== +Info 391 [00:09:24.000] Resolution for module 'pkg1' was found in cache from location '/src/project'. +Info 392 [00:09:25.000] ======== Module name 'pkg1' was not resolved. ======== +Info 393 [00:09:26.000] Reusing resolution of module 'pkg0' from '/src/project/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 394 [00:09:27.000] Reusing resolution of module 'pkg0' from '/src/project/a/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 395 [00:09:28.000] Reusing resolution of module 'pkg1' from '/src/project/a/fileWithImports.ts' of old program, it was not resolved. +Info 396 [00:09:29.000] Reusing resolution of module 'pkg0' from '/src/project/b/ba/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 397 [00:09:30.000] Reusing resolution of module 'pkg1' from '/src/project/b/ba/fileWithImports.ts' of old program, it was not resolved. +Info 398 [00:09:31.000] Reusing resolution of module 'pkg0' from '/src/project/b/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 399 [00:09:32.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 400 [00:09:33.000] Reusing resolution of module 'pkg1' from '/src/project/c/ca/fileWithImports.ts' of old program, it was not resolved. +Info 401 [00:09:34.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/caa/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 402 [00:09:35.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 403 [00:09:36.000] Reusing resolution of module 'pkg1' from '/src/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was not resolved. +Info 404 [00:09:37.000] Reusing resolution of module 'pkg0' from '/src/project/c/cb/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 405 [00:09:38.000] Reusing resolution of module 'pkg1' from '/src/project/c/cb/fileWithImports.ts' of old program, it was not resolved. +Info 406 [00:09:39.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 407 [00:09:40.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 408 [00:09:41.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was not resolved. +Info 409 [00:09:42.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 410 [00:09:43.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/daa/fileWithImports.ts' of old program, it was not resolved. +Info 411 [00:09:44.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 412 [00:09:45.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/fileWithImports.ts' of old program, it was not resolved. +Info 413 [00:09:46.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 414 [00:09:47.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/fileWithImports.ts' of old program, it was not resolved. +Info 415 [00:09:48.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 416 [00:09:49.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/eaa/fileWithImports.ts' of old program, it was not resolved. +Info 417 [00:09:50.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 418 [00:09:51.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was not resolved. +Info 419 [00:09:52.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 420 [00:09:53.000] Reusing resolution of module 'pkg0' from '/src/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 421 [00:09:54.000] Reusing resolution of module 'pkg1' from '/src/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was not resolved. +Info 422 [00:09:55.000] Finishing updateGraphWorker: Project: /src/project/tsconfig.json Version: 7 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 423 [00:09:56.000] Different program with same set of files +Info 424 [00:09:57.000] modify b/randomFileForImport by adding unresolved import +Info 425 [00:09:58.000] request: { "command": "change", "arguments": { @@ -2808,50 +2809,50 @@ FsWatchesRecursive:: /src/project/f: {} -Info 425 [00:09:58.000] response: +Info 426 [00:09:59.000] response: { "responseRequired": false } -Info 426 [00:09:59.000] Starting updateGraphWorker: Project: /src/project/tsconfig.json -Info 427 [00:10:00.000] Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 428 [00:10:01.000] Reusing resolution of module 'pkg1' from '/src/project/fileWithImports.ts' of old program, it was not resolved. -Info 429 [00:10:02.000] Reusing resolution of module 'pkg0' from '/src/project/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 430 [00:10:03.000] Reusing resolution of module 'pkg1' from '/src/project/randomFileForImport.ts' of old program, it was not resolved. -Info 431 [00:10:04.000] Reusing resolution of module 'pkg0' from '/src/project/a/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 432 [00:10:05.000] Reusing resolution of module 'pkg1' from '/src/project/a/fileWithImports.ts' of old program, it was not resolved. -Info 433 [00:10:06.000] Reusing resolution of module 'pkg0' from '/src/project/b/ba/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 434 [00:10:07.000] Reusing resolution of module 'pkg1' from '/src/project/b/ba/fileWithImports.ts' of old program, it was not resolved. -Info 435 [00:10:08.000] ======== Resolving module 'pkg1' from '/src/project/b/randomFileForImport.ts'. ======== -Info 436 [00:10:09.000] Resolution for module 'pkg1' was found in cache from location '/src/project/b'. -Info 437 [00:10:10.000] ======== Module name 'pkg1' was not resolved. ======== -Info 438 [00:10:11.000] Reusing resolution of module 'pkg0' from '/src/project/b/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 439 [00:10:12.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 440 [00:10:13.000] Reusing resolution of module 'pkg1' from '/src/project/c/ca/fileWithImports.ts' of old program, it was not resolved. -Info 441 [00:10:14.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/caa/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 442 [00:10:15.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 443 [00:10:16.000] Reusing resolution of module 'pkg1' from '/src/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was not resolved. -Info 444 [00:10:17.000] Reusing resolution of module 'pkg0' from '/src/project/c/cb/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 445 [00:10:18.000] Reusing resolution of module 'pkg1' from '/src/project/c/cb/fileWithImports.ts' of old program, it was not resolved. -Info 446 [00:10:19.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 447 [00:10:20.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 448 [00:10:21.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was not resolved. -Info 449 [00:10:22.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 450 [00:10:23.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/daa/fileWithImports.ts' of old program, it was not resolved. -Info 451 [00:10:24.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 452 [00:10:25.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/fileWithImports.ts' of old program, it was not resolved. -Info 453 [00:10:26.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 454 [00:10:27.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/fileWithImports.ts' of old program, it was not resolved. -Info 455 [00:10:28.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 456 [00:10:29.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/eaa/fileWithImports.ts' of old program, it was not resolved. -Info 457 [00:10:30.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 458 [00:10:31.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was not resolved. -Info 459 [00:10:32.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 460 [00:10:33.000] Reusing resolution of module 'pkg0' from '/src/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 461 [00:10:34.000] Reusing resolution of module 'pkg1' from '/src/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was not resolved. -Info 462 [00:10:35.000] Finishing updateGraphWorker: Project: /src/project/tsconfig.json Version: 8 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 463 [00:10:36.000] Different program with same set of files -Info 464 [00:10:37.000] modify c/ca/caa/randomFileForImport by adding unresolved import -Info 465 [00:10:38.000] request: +Info 427 [00:10:00.000] Starting updateGraphWorker: Project: /src/project/tsconfig.json +Info 428 [00:10:01.000] Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 429 [00:10:02.000] Reusing resolution of module 'pkg1' from '/src/project/fileWithImports.ts' of old program, it was not resolved. +Info 430 [00:10:03.000] Reusing resolution of module 'pkg0' from '/src/project/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 431 [00:10:04.000] Reusing resolution of module 'pkg1' from '/src/project/randomFileForImport.ts' of old program, it was not resolved. +Info 432 [00:10:05.000] Reusing resolution of module 'pkg0' from '/src/project/a/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 433 [00:10:06.000] Reusing resolution of module 'pkg1' from '/src/project/a/fileWithImports.ts' of old program, it was not resolved. +Info 434 [00:10:07.000] Reusing resolution of module 'pkg0' from '/src/project/b/ba/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 435 [00:10:08.000] Reusing resolution of module 'pkg1' from '/src/project/b/ba/fileWithImports.ts' of old program, it was not resolved. +Info 436 [00:10:09.000] ======== Resolving module 'pkg1' from '/src/project/b/randomFileForImport.ts'. ======== +Info 437 [00:10:10.000] Resolution for module 'pkg1' was found in cache from location '/src/project/b'. +Info 438 [00:10:11.000] ======== Module name 'pkg1' was not resolved. ======== +Info 439 [00:10:12.000] Reusing resolution of module 'pkg0' from '/src/project/b/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 440 [00:10:13.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 441 [00:10:14.000] Reusing resolution of module 'pkg1' from '/src/project/c/ca/fileWithImports.ts' of old program, it was not resolved. +Info 442 [00:10:15.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/caa/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 443 [00:10:16.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 444 [00:10:17.000] Reusing resolution of module 'pkg1' from '/src/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was not resolved. +Info 445 [00:10:18.000] Reusing resolution of module 'pkg0' from '/src/project/c/cb/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 446 [00:10:19.000] Reusing resolution of module 'pkg1' from '/src/project/c/cb/fileWithImports.ts' of old program, it was not resolved. +Info 447 [00:10:20.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 448 [00:10:21.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 449 [00:10:22.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was not resolved. +Info 450 [00:10:23.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 451 [00:10:24.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/daa/fileWithImports.ts' of old program, it was not resolved. +Info 452 [00:10:25.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 453 [00:10:26.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/fileWithImports.ts' of old program, it was not resolved. +Info 454 [00:10:27.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 455 [00:10:28.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/fileWithImports.ts' of old program, it was not resolved. +Info 456 [00:10:29.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 457 [00:10:30.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/eaa/fileWithImports.ts' of old program, it was not resolved. +Info 458 [00:10:31.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 459 [00:10:32.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was not resolved. +Info 460 [00:10:33.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 461 [00:10:34.000] Reusing resolution of module 'pkg0' from '/src/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 462 [00:10:35.000] Reusing resolution of module 'pkg1' from '/src/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was not resolved. +Info 463 [00:10:36.000] Finishing updateGraphWorker: Project: /src/project/tsconfig.json Version: 8 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 464 [00:10:37.000] Different program with same set of files +Info 465 [00:10:38.000] modify c/ca/caa/randomFileForImport by adding unresolved import +Info 466 [00:10:39.000] request: { "command": "change", "arguments": { @@ -2977,51 +2978,51 @@ FsWatchesRecursive:: /src/project/f: {} -Info 466 [00:10:39.000] response: +Info 467 [00:10:40.000] response: { "responseRequired": false } -Info 467 [00:10:40.000] Starting updateGraphWorker: Project: /src/project/tsconfig.json -Info 468 [00:10:41.000] Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 469 [00:10:42.000] Reusing resolution of module 'pkg1' from '/src/project/fileWithImports.ts' of old program, it was not resolved. -Info 470 [00:10:43.000] Reusing resolution of module 'pkg0' from '/src/project/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 471 [00:10:44.000] Reusing resolution of module 'pkg1' from '/src/project/randomFileForImport.ts' of old program, it was not resolved. -Info 472 [00:10:45.000] Reusing resolution of module 'pkg0' from '/src/project/a/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 473 [00:10:46.000] Reusing resolution of module 'pkg1' from '/src/project/a/fileWithImports.ts' of old program, it was not resolved. -Info 474 [00:10:47.000] Reusing resolution of module 'pkg0' from '/src/project/b/ba/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 475 [00:10:48.000] Reusing resolution of module 'pkg1' from '/src/project/b/ba/fileWithImports.ts' of old program, it was not resolved. -Info 476 [00:10:49.000] Reusing resolution of module 'pkg0' from '/src/project/b/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 477 [00:10:50.000] Reusing resolution of module 'pkg1' from '/src/project/b/randomFileForImport.ts' of old program, it was not resolved. -Info 478 [00:10:51.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 479 [00:10:52.000] Reusing resolution of module 'pkg1' from '/src/project/c/ca/fileWithImports.ts' of old program, it was not resolved. -Info 480 [00:10:53.000] ======== Resolving module 'pkg1' from '/src/project/c/ca/caa/randomFileForImport.ts'. ======== -Info 481 [00:10:54.000] Resolution for module 'pkg1' was found in cache from location '/src/project/c/ca/caa'. -Info 482 [00:10:55.000] ======== Module name 'pkg1' was not resolved. ======== -Info 483 [00:10:56.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/caa/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 484 [00:10:57.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 485 [00:10:58.000] Reusing resolution of module 'pkg1' from '/src/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was not resolved. -Info 486 [00:10:59.000] Reusing resolution of module 'pkg0' from '/src/project/c/cb/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 487 [00:11:00.000] Reusing resolution of module 'pkg1' from '/src/project/c/cb/fileWithImports.ts' of old program, it was not resolved. -Info 488 [00:11:01.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 489 [00:11:02.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 490 [00:11:03.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was not resolved. -Info 491 [00:11:04.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 492 [00:11:05.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/daa/fileWithImports.ts' of old program, it was not resolved. -Info 493 [00:11:06.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 494 [00:11:07.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/fileWithImports.ts' of old program, it was not resolved. -Info 495 [00:11:08.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 496 [00:11:09.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/fileWithImports.ts' of old program, it was not resolved. -Info 497 [00:11:10.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 498 [00:11:11.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/eaa/fileWithImports.ts' of old program, it was not resolved. -Info 499 [00:11:12.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 500 [00:11:13.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was not resolved. -Info 501 [00:11:14.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 502 [00:11:15.000] Reusing resolution of module 'pkg0' from '/src/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 503 [00:11:16.000] Reusing resolution of module 'pkg1' from '/src/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was not resolved. -Info 504 [00:11:17.000] Finishing updateGraphWorker: Project: /src/project/tsconfig.json Version: 9 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 505 [00:11:18.000] Different program with same set of files -Info 506 [00:11:19.000] modify d/da/daa/daaa/x/y/z/randomFileForImport by adding unresolved import -Info 507 [00:11:20.000] request: +Info 468 [00:10:41.000] Starting updateGraphWorker: Project: /src/project/tsconfig.json +Info 469 [00:10:42.000] Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 470 [00:10:43.000] Reusing resolution of module 'pkg1' from '/src/project/fileWithImports.ts' of old program, it was not resolved. +Info 471 [00:10:44.000] Reusing resolution of module 'pkg0' from '/src/project/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 472 [00:10:45.000] Reusing resolution of module 'pkg1' from '/src/project/randomFileForImport.ts' of old program, it was not resolved. +Info 473 [00:10:46.000] Reusing resolution of module 'pkg0' from '/src/project/a/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 474 [00:10:47.000] Reusing resolution of module 'pkg1' from '/src/project/a/fileWithImports.ts' of old program, it was not resolved. +Info 475 [00:10:48.000] Reusing resolution of module 'pkg0' from '/src/project/b/ba/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 476 [00:10:49.000] Reusing resolution of module 'pkg1' from '/src/project/b/ba/fileWithImports.ts' of old program, it was not resolved. +Info 477 [00:10:50.000] Reusing resolution of module 'pkg0' from '/src/project/b/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 478 [00:10:51.000] Reusing resolution of module 'pkg1' from '/src/project/b/randomFileForImport.ts' of old program, it was not resolved. +Info 479 [00:10:52.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 480 [00:10:53.000] Reusing resolution of module 'pkg1' from '/src/project/c/ca/fileWithImports.ts' of old program, it was not resolved. +Info 481 [00:10:54.000] ======== Resolving module 'pkg1' from '/src/project/c/ca/caa/randomFileForImport.ts'. ======== +Info 482 [00:10:55.000] Resolution for module 'pkg1' was found in cache from location '/src/project/c/ca/caa'. +Info 483 [00:10:56.000] ======== Module name 'pkg1' was not resolved. ======== +Info 484 [00:10:57.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/caa/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 485 [00:10:58.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 486 [00:10:59.000] Reusing resolution of module 'pkg1' from '/src/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was not resolved. +Info 487 [00:11:00.000] Reusing resolution of module 'pkg0' from '/src/project/c/cb/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 488 [00:11:01.000] Reusing resolution of module 'pkg1' from '/src/project/c/cb/fileWithImports.ts' of old program, it was not resolved. +Info 489 [00:11:02.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 490 [00:11:03.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 491 [00:11:04.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was not resolved. +Info 492 [00:11:05.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 493 [00:11:06.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/daa/fileWithImports.ts' of old program, it was not resolved. +Info 494 [00:11:07.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 495 [00:11:08.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/fileWithImports.ts' of old program, it was not resolved. +Info 496 [00:11:09.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 497 [00:11:10.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/fileWithImports.ts' of old program, it was not resolved. +Info 498 [00:11:11.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 499 [00:11:12.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/eaa/fileWithImports.ts' of old program, it was not resolved. +Info 500 [00:11:13.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 501 [00:11:14.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was not resolved. +Info 502 [00:11:15.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 503 [00:11:16.000] Reusing resolution of module 'pkg0' from '/src/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 504 [00:11:17.000] Reusing resolution of module 'pkg1' from '/src/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was not resolved. +Info 505 [00:11:18.000] Finishing updateGraphWorker: Project: /src/project/tsconfig.json Version: 9 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 506 [00:11:19.000] Different program with same set of files +Info 507 [00:11:20.000] modify d/da/daa/daaa/x/y/z/randomFileForImport by adding unresolved import +Info 508 [00:11:21.000] request: { "command": "change", "arguments": { @@ -3147,57 +3148,57 @@ FsWatchesRecursive:: /src/project/f: {} -Info 508 [00:11:21.000] response: +Info 509 [00:11:22.000] response: { "responseRequired": false } -Info 509 [00:11:22.000] Starting updateGraphWorker: Project: /src/project/tsconfig.json -Info 510 [00:11:23.000] Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 511 [00:11:24.000] Reusing resolution of module 'pkg1' from '/src/project/fileWithImports.ts' of old program, it was not resolved. -Info 512 [00:11:25.000] Reusing resolution of module 'pkg0' from '/src/project/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 513 [00:11:26.000] Reusing resolution of module 'pkg1' from '/src/project/randomFileForImport.ts' of old program, it was not resolved. -Info 514 [00:11:27.000] Reusing resolution of module 'pkg0' from '/src/project/a/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 515 [00:11:28.000] Reusing resolution of module 'pkg1' from '/src/project/a/fileWithImports.ts' of old program, it was not resolved. -Info 516 [00:11:29.000] Reusing resolution of module 'pkg0' from '/src/project/b/ba/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 517 [00:11:30.000] Reusing resolution of module 'pkg1' from '/src/project/b/ba/fileWithImports.ts' of old program, it was not resolved. -Info 518 [00:11:31.000] Reusing resolution of module 'pkg0' from '/src/project/b/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 519 [00:11:32.000] Reusing resolution of module 'pkg1' from '/src/project/b/randomFileForImport.ts' of old program, it was not resolved. -Info 520 [00:11:33.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 521 [00:11:34.000] Reusing resolution of module 'pkg1' from '/src/project/c/ca/fileWithImports.ts' of old program, it was not resolved. -Info 522 [00:11:35.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/caa/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 523 [00:11:36.000] Reusing resolution of module 'pkg1' from '/src/project/c/ca/caa/randomFileForImport.ts' of old program, it was not resolved. -Info 524 [00:11:37.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 525 [00:11:38.000] Reusing resolution of module 'pkg1' from '/src/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was not resolved. -Info 526 [00:11:39.000] Reusing resolution of module 'pkg0' from '/src/project/c/cb/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 527 [00:11:40.000] Reusing resolution of module 'pkg1' from '/src/project/c/cb/fileWithImports.ts' of old program, it was not resolved. -Info 528 [00:11:41.000] ======== Resolving module 'pkg1' from '/src/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts'. ======== -Info 529 [00:11:42.000] Module resolution kind is not specified, using 'NodeJs'. -Info 530 [00:11:43.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. -Info 531 [00:11:44.000] Directory '/src/project/d/da/daa/daaa/x/y/z/node_modules' does not exist, skipping all lookups in it. -Info 532 [00:11:45.000] Directory '/src/project/d/da/daa/daaa/x/y/node_modules' does not exist, skipping all lookups in it. -Info 533 [00:11:46.000] Directory '/src/project/d/da/daa/daaa/x/node_modules' does not exist, skipping all lookups in it. -Info 534 [00:11:47.000] Resolution for module 'pkg1' was found in cache from location '/src/project/d/da/daa/daaa'. -Info 535 [00:11:48.000] ======== Module name 'pkg1' was not resolved. ======== -Info 536 [00:11:49.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 537 [00:11:50.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 538 [00:11:51.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was not resolved. -Info 539 [00:11:52.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 540 [00:11:53.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/daa/fileWithImports.ts' of old program, it was not resolved. -Info 541 [00:11:54.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 542 [00:11:55.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/fileWithImports.ts' of old program, it was not resolved. -Info 543 [00:11:56.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 544 [00:11:57.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/fileWithImports.ts' of old program, it was not resolved. -Info 545 [00:11:58.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 546 [00:11:59.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/eaa/fileWithImports.ts' of old program, it was not resolved. -Info 547 [00:12:00.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 548 [00:12:01.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was not resolved. -Info 549 [00:12:02.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 550 [00:12:03.000] Reusing resolution of module 'pkg0' from '/src/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 551 [00:12:04.000] Reusing resolution of module 'pkg1' from '/src/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was not resolved. -Info 552 [00:12:05.000] Finishing updateGraphWorker: Project: /src/project/tsconfig.json Version: 10 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 553 [00:12:06.000] Different program with same set of files -Info 554 [00:12:07.000] modify e/ea/eaa/eaaa/x/y/z/randomFileForImport by adding unresolved import -Info 555 [00:12:08.000] request: +Info 510 [00:11:23.000] Starting updateGraphWorker: Project: /src/project/tsconfig.json +Info 511 [00:11:24.000] Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 512 [00:11:25.000] Reusing resolution of module 'pkg1' from '/src/project/fileWithImports.ts' of old program, it was not resolved. +Info 513 [00:11:26.000] Reusing resolution of module 'pkg0' from '/src/project/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 514 [00:11:27.000] Reusing resolution of module 'pkg1' from '/src/project/randomFileForImport.ts' of old program, it was not resolved. +Info 515 [00:11:28.000] Reusing resolution of module 'pkg0' from '/src/project/a/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 516 [00:11:29.000] Reusing resolution of module 'pkg1' from '/src/project/a/fileWithImports.ts' of old program, it was not resolved. +Info 517 [00:11:30.000] Reusing resolution of module 'pkg0' from '/src/project/b/ba/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 518 [00:11:31.000] Reusing resolution of module 'pkg1' from '/src/project/b/ba/fileWithImports.ts' of old program, it was not resolved. +Info 519 [00:11:32.000] Reusing resolution of module 'pkg0' from '/src/project/b/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 520 [00:11:33.000] Reusing resolution of module 'pkg1' from '/src/project/b/randomFileForImport.ts' of old program, it was not resolved. +Info 521 [00:11:34.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 522 [00:11:35.000] Reusing resolution of module 'pkg1' from '/src/project/c/ca/fileWithImports.ts' of old program, it was not resolved. +Info 523 [00:11:36.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/caa/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 524 [00:11:37.000] Reusing resolution of module 'pkg1' from '/src/project/c/ca/caa/randomFileForImport.ts' of old program, it was not resolved. +Info 525 [00:11:38.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 526 [00:11:39.000] Reusing resolution of module 'pkg1' from '/src/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was not resolved. +Info 527 [00:11:40.000] Reusing resolution of module 'pkg0' from '/src/project/c/cb/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 528 [00:11:41.000] Reusing resolution of module 'pkg1' from '/src/project/c/cb/fileWithImports.ts' of old program, it was not resolved. +Info 529 [00:11:42.000] ======== Resolving module 'pkg1' from '/src/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts'. ======== +Info 530 [00:11:43.000] Module resolution kind is not specified, using 'NodeJs'. +Info 531 [00:11:44.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info 532 [00:11:45.000] Directory '/src/project/d/da/daa/daaa/x/y/z/node_modules' does not exist, skipping all lookups in it. +Info 533 [00:11:46.000] Directory '/src/project/d/da/daa/daaa/x/y/node_modules' does not exist, skipping all lookups in it. +Info 534 [00:11:47.000] Directory '/src/project/d/da/daa/daaa/x/node_modules' does not exist, skipping all lookups in it. +Info 535 [00:11:48.000] Resolution for module 'pkg1' was found in cache from location '/src/project/d/da/daa/daaa'. +Info 536 [00:11:49.000] ======== Module name 'pkg1' was not resolved. ======== +Info 537 [00:11:50.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 538 [00:11:51.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 539 [00:11:52.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was not resolved. +Info 540 [00:11:53.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 541 [00:11:54.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/daa/fileWithImports.ts' of old program, it was not resolved. +Info 542 [00:11:55.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 543 [00:11:56.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/fileWithImports.ts' of old program, it was not resolved. +Info 544 [00:11:57.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 545 [00:11:58.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/fileWithImports.ts' of old program, it was not resolved. +Info 546 [00:11:59.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 547 [00:12:00.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/eaa/fileWithImports.ts' of old program, it was not resolved. +Info 548 [00:12:01.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 549 [00:12:02.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was not resolved. +Info 550 [00:12:03.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 551 [00:12:04.000] Reusing resolution of module 'pkg0' from '/src/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 552 [00:12:05.000] Reusing resolution of module 'pkg1' from '/src/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was not resolved. +Info 553 [00:12:06.000] Finishing updateGraphWorker: Project: /src/project/tsconfig.json Version: 10 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 554 [00:12:07.000] Different program with same set of files +Info 555 [00:12:08.000] modify e/ea/eaa/eaaa/x/y/z/randomFileForImport by adding unresolved import +Info 556 [00:12:09.000] request: { "command": "change", "arguments": { @@ -3323,58 +3324,58 @@ FsWatchesRecursive:: /src/project/f: {} -Info 556 [00:12:09.000] response: +Info 557 [00:12:10.000] response: { "responseRequired": false } -Info 557 [00:12:10.000] Starting updateGraphWorker: Project: /src/project/tsconfig.json -Info 558 [00:12:11.000] Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 559 [00:12:12.000] Reusing resolution of module 'pkg1' from '/src/project/fileWithImports.ts' of old program, it was not resolved. -Info 560 [00:12:13.000] Reusing resolution of module 'pkg0' from '/src/project/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 561 [00:12:14.000] Reusing resolution of module 'pkg1' from '/src/project/randomFileForImport.ts' of old program, it was not resolved. -Info 562 [00:12:15.000] Reusing resolution of module 'pkg0' from '/src/project/a/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 563 [00:12:16.000] Reusing resolution of module 'pkg1' from '/src/project/a/fileWithImports.ts' of old program, it was not resolved. -Info 564 [00:12:17.000] Reusing resolution of module 'pkg0' from '/src/project/b/ba/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 565 [00:12:18.000] Reusing resolution of module 'pkg1' from '/src/project/b/ba/fileWithImports.ts' of old program, it was not resolved. -Info 566 [00:12:19.000] Reusing resolution of module 'pkg0' from '/src/project/b/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 567 [00:12:20.000] Reusing resolution of module 'pkg1' from '/src/project/b/randomFileForImport.ts' of old program, it was not resolved. -Info 568 [00:12:21.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 569 [00:12:22.000] Reusing resolution of module 'pkg1' from '/src/project/c/ca/fileWithImports.ts' of old program, it was not resolved. -Info 570 [00:12:23.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/caa/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 571 [00:12:24.000] Reusing resolution of module 'pkg1' from '/src/project/c/ca/caa/randomFileForImport.ts' of old program, it was not resolved. -Info 572 [00:12:25.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 573 [00:12:26.000] Reusing resolution of module 'pkg1' from '/src/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was not resolved. -Info 574 [00:12:27.000] Reusing resolution of module 'pkg0' from '/src/project/c/cb/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 575 [00:12:28.000] Reusing resolution of module 'pkg1' from '/src/project/c/cb/fileWithImports.ts' of old program, it was not resolved. -Info 576 [00:12:29.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 577 [00:12:30.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts' of old program, it was not resolved. -Info 578 [00:12:31.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 579 [00:12:32.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was not resolved. -Info 580 [00:12:33.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 581 [00:12:34.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/daa/fileWithImports.ts' of old program, it was not resolved. -Info 582 [00:12:35.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 583 [00:12:36.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/fileWithImports.ts' of old program, it was not resolved. -Info 584 [00:12:37.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 585 [00:12:38.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/fileWithImports.ts' of old program, it was not resolved. -Info 586 [00:12:39.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 587 [00:12:40.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/eaa/fileWithImports.ts' of old program, it was not resolved. -Info 588 [00:12:41.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 589 [00:12:42.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was not resolved. -Info 590 [00:12:43.000] ======== Resolving module 'pkg1' from '/src/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts'. ======== -Info 591 [00:12:44.000] Module resolution kind is not specified, using 'NodeJs'. -Info 592 [00:12:45.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. -Info 593 [00:12:46.000] Directory '/src/project/e/ea/eaa/eaaa/x/y/z/node_modules' does not exist, skipping all lookups in it. -Info 594 [00:12:47.000] Directory '/src/project/e/ea/eaa/eaaa/x/y/node_modules' does not exist, skipping all lookups in it. -Info 595 [00:12:48.000] Directory '/src/project/e/ea/eaa/eaaa/x/node_modules' does not exist, skipping all lookups in it. -Info 596 [00:12:49.000] Resolution for module 'pkg1' was found in cache from location '/src/project/e/ea/eaa/eaaa'. -Info 597 [00:12:50.000] ======== Module name 'pkg1' was not resolved. ======== -Info 598 [00:12:51.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 599 [00:12:52.000] Reusing resolution of module 'pkg0' from '/src/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 600 [00:12:53.000] Reusing resolution of module 'pkg1' from '/src/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was not resolved. -Info 601 [00:12:54.000] Finishing updateGraphWorker: Project: /src/project/tsconfig.json Version: 11 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 602 [00:12:55.000] Different program with same set of files -Info 603 [00:12:56.000] modify f/fa/faa/x/y/z/randomFileForImport by adding import -Info 604 [00:12:57.000] request: +Info 558 [00:12:11.000] Starting updateGraphWorker: Project: /src/project/tsconfig.json +Info 559 [00:12:12.000] Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 560 [00:12:13.000] Reusing resolution of module 'pkg1' from '/src/project/fileWithImports.ts' of old program, it was not resolved. +Info 561 [00:12:14.000] Reusing resolution of module 'pkg0' from '/src/project/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 562 [00:12:15.000] Reusing resolution of module 'pkg1' from '/src/project/randomFileForImport.ts' of old program, it was not resolved. +Info 563 [00:12:16.000] Reusing resolution of module 'pkg0' from '/src/project/a/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 564 [00:12:17.000] Reusing resolution of module 'pkg1' from '/src/project/a/fileWithImports.ts' of old program, it was not resolved. +Info 565 [00:12:18.000] Reusing resolution of module 'pkg0' from '/src/project/b/ba/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 566 [00:12:19.000] Reusing resolution of module 'pkg1' from '/src/project/b/ba/fileWithImports.ts' of old program, it was not resolved. +Info 567 [00:12:20.000] Reusing resolution of module 'pkg0' from '/src/project/b/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 568 [00:12:21.000] Reusing resolution of module 'pkg1' from '/src/project/b/randomFileForImport.ts' of old program, it was not resolved. +Info 569 [00:12:22.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 570 [00:12:23.000] Reusing resolution of module 'pkg1' from '/src/project/c/ca/fileWithImports.ts' of old program, it was not resolved. +Info 571 [00:12:24.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/caa/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 572 [00:12:25.000] Reusing resolution of module 'pkg1' from '/src/project/c/ca/caa/randomFileForImport.ts' of old program, it was not resolved. +Info 573 [00:12:26.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 574 [00:12:27.000] Reusing resolution of module 'pkg1' from '/src/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was not resolved. +Info 575 [00:12:28.000] Reusing resolution of module 'pkg0' from '/src/project/c/cb/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 576 [00:12:29.000] Reusing resolution of module 'pkg1' from '/src/project/c/cb/fileWithImports.ts' of old program, it was not resolved. +Info 577 [00:12:30.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 578 [00:12:31.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts' of old program, it was not resolved. +Info 579 [00:12:32.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 580 [00:12:33.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was not resolved. +Info 581 [00:12:34.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 582 [00:12:35.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/daa/fileWithImports.ts' of old program, it was not resolved. +Info 583 [00:12:36.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 584 [00:12:37.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/fileWithImports.ts' of old program, it was not resolved. +Info 585 [00:12:38.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 586 [00:12:39.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/fileWithImports.ts' of old program, it was not resolved. +Info 587 [00:12:40.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 588 [00:12:41.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/eaa/fileWithImports.ts' of old program, it was not resolved. +Info 589 [00:12:42.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 590 [00:12:43.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was not resolved. +Info 591 [00:12:44.000] ======== Resolving module 'pkg1' from '/src/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts'. ======== +Info 592 [00:12:45.000] Module resolution kind is not specified, using 'NodeJs'. +Info 593 [00:12:46.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info 594 [00:12:47.000] Directory '/src/project/e/ea/eaa/eaaa/x/y/z/node_modules' does not exist, skipping all lookups in it. +Info 595 [00:12:48.000] Directory '/src/project/e/ea/eaa/eaaa/x/y/node_modules' does not exist, skipping all lookups in it. +Info 596 [00:12:49.000] Directory '/src/project/e/ea/eaa/eaaa/x/node_modules' does not exist, skipping all lookups in it. +Info 597 [00:12:50.000] Resolution for module 'pkg1' was found in cache from location '/src/project/e/ea/eaa/eaaa'. +Info 598 [00:12:51.000] ======== Module name 'pkg1' was not resolved. ======== +Info 599 [00:12:52.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 600 [00:12:53.000] Reusing resolution of module 'pkg0' from '/src/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 601 [00:12:54.000] Reusing resolution of module 'pkg1' from '/src/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was not resolved. +Info 602 [00:12:55.000] Finishing updateGraphWorker: Project: /src/project/tsconfig.json Version: 11 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 603 [00:12:56.000] Different program with same set of files +Info 604 [00:12:57.000] modify f/fa/faa/x/y/z/randomFileForImport by adding import +Info 605 [00:12:58.000] request: { "command": "change", "arguments": { @@ -3500,59 +3501,59 @@ FsWatchesRecursive:: /src/project/f: {} -Info 605 [00:12:58.000] response: +Info 606 [00:12:59.000] response: { "responseRequired": false } -Info 606 [00:12:59.000] Starting updateGraphWorker: Project: /src/project/tsconfig.json -Info 607 [00:13:00.000] Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 608 [00:13:01.000] Reusing resolution of module 'pkg1' from '/src/project/fileWithImports.ts' of old program, it was not resolved. -Info 609 [00:13:02.000] Reusing resolution of module 'pkg0' from '/src/project/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 610 [00:13:03.000] Reusing resolution of module 'pkg1' from '/src/project/randomFileForImport.ts' of old program, it was not resolved. -Info 611 [00:13:04.000] Reusing resolution of module 'pkg0' from '/src/project/a/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 612 [00:13:05.000] Reusing resolution of module 'pkg1' from '/src/project/a/fileWithImports.ts' of old program, it was not resolved. -Info 613 [00:13:06.000] Reusing resolution of module 'pkg0' from '/src/project/b/ba/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 614 [00:13:07.000] Reusing resolution of module 'pkg1' from '/src/project/b/ba/fileWithImports.ts' of old program, it was not resolved. -Info 615 [00:13:08.000] Reusing resolution of module 'pkg0' from '/src/project/b/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 616 [00:13:09.000] Reusing resolution of module 'pkg1' from '/src/project/b/randomFileForImport.ts' of old program, it was not resolved. -Info 617 [00:13:10.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 618 [00:13:11.000] Reusing resolution of module 'pkg1' from '/src/project/c/ca/fileWithImports.ts' of old program, it was not resolved. -Info 619 [00:13:12.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/caa/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 620 [00:13:13.000] Reusing resolution of module 'pkg1' from '/src/project/c/ca/caa/randomFileForImport.ts' of old program, it was not resolved. -Info 621 [00:13:14.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 622 [00:13:15.000] Reusing resolution of module 'pkg1' from '/src/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was not resolved. -Info 623 [00:13:16.000] Reusing resolution of module 'pkg0' from '/src/project/c/cb/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 624 [00:13:17.000] Reusing resolution of module 'pkg1' from '/src/project/c/cb/fileWithImports.ts' of old program, it was not resolved. -Info 625 [00:13:18.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 626 [00:13:19.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts' of old program, it was not resolved. -Info 627 [00:13:20.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 628 [00:13:21.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was not resolved. -Info 629 [00:13:22.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 630 [00:13:23.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/daa/fileWithImports.ts' of old program, it was not resolved. -Info 631 [00:13:24.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 632 [00:13:25.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/fileWithImports.ts' of old program, it was not resolved. -Info 633 [00:13:26.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 634 [00:13:27.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/fileWithImports.ts' of old program, it was not resolved. -Info 635 [00:13:28.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 636 [00:13:29.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/eaa/fileWithImports.ts' of old program, it was not resolved. -Info 637 [00:13:30.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 638 [00:13:31.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was not resolved. -Info 639 [00:13:32.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 640 [00:13:33.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts' of old program, it was not resolved. -Info 641 [00:13:34.000] ======== Resolving module 'pkg0' from '/src/project/f/fa/faa/x/y/z/randomFileForImport.ts'. ======== -Info 642 [00:13:35.000] Module resolution kind is not specified, using 'NodeJs'. -Info 643 [00:13:36.000] Loading module 'pkg0' from 'node_modules' folder, target file types: TypeScript, Declaration. -Info 644 [00:13:37.000] Directory '/src/project/f/fa/faa/x/y/z/node_modules' does not exist, skipping all lookups in it. -Info 645 [00:13:38.000] Directory '/src/project/f/fa/faa/x/y/node_modules' does not exist, skipping all lookups in it. -Info 646 [00:13:39.000] Directory '/src/project/f/fa/faa/x/node_modules' does not exist, skipping all lookups in it. -Info 647 [00:13:40.000] Resolution for module 'pkg0' was found in cache from location '/src/project/f/fa/faa'. -Info 648 [00:13:41.000] ======== Module name 'pkg0' was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. ======== -Info 649 [00:13:42.000] Reusing resolution of module 'pkg0' from '/src/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 650 [00:13:43.000] Reusing resolution of module 'pkg1' from '/src/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was not resolved. -Info 651 [00:13:44.000] Finishing updateGraphWorker: Project: /src/project/tsconfig.json Version: 12 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 652 [00:13:45.000] Different program with same set of files -Info 653 [00:13:46.000] modify f/fa/faa/x/y/z/randomFileForImport by adding unresolved import -Info 654 [00:13:47.000] request: +Info 607 [00:13:00.000] Starting updateGraphWorker: Project: /src/project/tsconfig.json +Info 608 [00:13:01.000] Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 609 [00:13:02.000] Reusing resolution of module 'pkg1' from '/src/project/fileWithImports.ts' of old program, it was not resolved. +Info 610 [00:13:03.000] Reusing resolution of module 'pkg0' from '/src/project/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 611 [00:13:04.000] Reusing resolution of module 'pkg1' from '/src/project/randomFileForImport.ts' of old program, it was not resolved. +Info 612 [00:13:05.000] Reusing resolution of module 'pkg0' from '/src/project/a/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 613 [00:13:06.000] Reusing resolution of module 'pkg1' from '/src/project/a/fileWithImports.ts' of old program, it was not resolved. +Info 614 [00:13:07.000] Reusing resolution of module 'pkg0' from '/src/project/b/ba/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 615 [00:13:08.000] Reusing resolution of module 'pkg1' from '/src/project/b/ba/fileWithImports.ts' of old program, it was not resolved. +Info 616 [00:13:09.000] Reusing resolution of module 'pkg0' from '/src/project/b/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 617 [00:13:10.000] Reusing resolution of module 'pkg1' from '/src/project/b/randomFileForImport.ts' of old program, it was not resolved. +Info 618 [00:13:11.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 619 [00:13:12.000] Reusing resolution of module 'pkg1' from '/src/project/c/ca/fileWithImports.ts' of old program, it was not resolved. +Info 620 [00:13:13.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/caa/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 621 [00:13:14.000] Reusing resolution of module 'pkg1' from '/src/project/c/ca/caa/randomFileForImport.ts' of old program, it was not resolved. +Info 622 [00:13:15.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 623 [00:13:16.000] Reusing resolution of module 'pkg1' from '/src/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was not resolved. +Info 624 [00:13:17.000] Reusing resolution of module 'pkg0' from '/src/project/c/cb/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 625 [00:13:18.000] Reusing resolution of module 'pkg1' from '/src/project/c/cb/fileWithImports.ts' of old program, it was not resolved. +Info 626 [00:13:19.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 627 [00:13:20.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts' of old program, it was not resolved. +Info 628 [00:13:21.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 629 [00:13:22.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was not resolved. +Info 630 [00:13:23.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 631 [00:13:24.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/daa/fileWithImports.ts' of old program, it was not resolved. +Info 632 [00:13:25.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 633 [00:13:26.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/fileWithImports.ts' of old program, it was not resolved. +Info 634 [00:13:27.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 635 [00:13:28.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/fileWithImports.ts' of old program, it was not resolved. +Info 636 [00:13:29.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 637 [00:13:30.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/eaa/fileWithImports.ts' of old program, it was not resolved. +Info 638 [00:13:31.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 639 [00:13:32.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was not resolved. +Info 640 [00:13:33.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 641 [00:13:34.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts' of old program, it was not resolved. +Info 642 [00:13:35.000] ======== Resolving module 'pkg0' from '/src/project/f/fa/faa/x/y/z/randomFileForImport.ts'. ======== +Info 643 [00:13:36.000] Module resolution kind is not specified, using 'NodeJs'. +Info 644 [00:13:37.000] Loading module 'pkg0' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info 645 [00:13:38.000] Directory '/src/project/f/fa/faa/x/y/z/node_modules' does not exist, skipping all lookups in it. +Info 646 [00:13:39.000] Directory '/src/project/f/fa/faa/x/y/node_modules' does not exist, skipping all lookups in it. +Info 647 [00:13:40.000] Directory '/src/project/f/fa/faa/x/node_modules' does not exist, skipping all lookups in it. +Info 648 [00:13:41.000] Resolution for module 'pkg0' was found in cache from location '/src/project/f/fa/faa'. +Info 649 [00:13:42.000] ======== Module name 'pkg0' was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. ======== +Info 650 [00:13:43.000] Reusing resolution of module 'pkg0' from '/src/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 651 [00:13:44.000] Reusing resolution of module 'pkg1' from '/src/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was not resolved. +Info 652 [00:13:45.000] Finishing updateGraphWorker: Project: /src/project/tsconfig.json Version: 12 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 653 [00:13:46.000] Different program with same set of files +Info 654 [00:13:47.000] modify f/fa/faa/x/y/z/randomFileForImport by adding unresolved import +Info 655 [00:13:48.000] request: { "command": "change", "arguments": { @@ -3678,69 +3679,69 @@ FsWatchesRecursive:: /src/project/f: {} -Info 655 [00:13:48.000] response: +Info 656 [00:13:49.000] response: { "responseRequired": false } -Info 656 [00:13:49.000] Starting updateGraphWorker: Project: /src/project/tsconfig.json -Info 657 [00:13:50.000] Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 658 [00:13:51.000] Reusing resolution of module 'pkg1' from '/src/project/fileWithImports.ts' of old program, it was not resolved. -Info 659 [00:13:52.000] Reusing resolution of module 'pkg0' from '/src/project/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 660 [00:13:53.000] Reusing resolution of module 'pkg1' from '/src/project/randomFileForImport.ts' of old program, it was not resolved. -Info 661 [00:13:54.000] Reusing resolution of module 'pkg0' from '/src/project/a/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 662 [00:13:55.000] Reusing resolution of module 'pkg1' from '/src/project/a/fileWithImports.ts' of old program, it was not resolved. -Info 663 [00:13:56.000] Reusing resolution of module 'pkg0' from '/src/project/b/ba/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 664 [00:13:57.000] Reusing resolution of module 'pkg1' from '/src/project/b/ba/fileWithImports.ts' of old program, it was not resolved. -Info 665 [00:13:58.000] Reusing resolution of module 'pkg0' from '/src/project/b/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 666 [00:13:59.000] Reusing resolution of module 'pkg1' from '/src/project/b/randomFileForImport.ts' of old program, it was not resolved. -Info 667 [00:14:00.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 668 [00:14:01.000] Reusing resolution of module 'pkg1' from '/src/project/c/ca/fileWithImports.ts' of old program, it was not resolved. -Info 669 [00:14:02.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/caa/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 670 [00:14:03.000] Reusing resolution of module 'pkg1' from '/src/project/c/ca/caa/randomFileForImport.ts' of old program, it was not resolved. -Info 671 [00:14:04.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 672 [00:14:05.000] Reusing resolution of module 'pkg1' from '/src/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was not resolved. -Info 673 [00:14:06.000] Reusing resolution of module 'pkg0' from '/src/project/c/cb/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 674 [00:14:07.000] Reusing resolution of module 'pkg1' from '/src/project/c/cb/fileWithImports.ts' of old program, it was not resolved. -Info 675 [00:14:08.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 676 [00:14:09.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts' of old program, it was not resolved. -Info 677 [00:14:10.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 678 [00:14:11.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was not resolved. -Info 679 [00:14:12.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 680 [00:14:13.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/daa/fileWithImports.ts' of old program, it was not resolved. -Info 681 [00:14:14.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 682 [00:14:15.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/fileWithImports.ts' of old program, it was not resolved. -Info 683 [00:14:16.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 684 [00:14:17.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/fileWithImports.ts' of old program, it was not resolved. -Info 685 [00:14:18.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 686 [00:14:19.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/eaa/fileWithImports.ts' of old program, it was not resolved. -Info 687 [00:14:20.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 688 [00:14:21.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was not resolved. -Info 689 [00:14:22.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 690 [00:14:23.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts' of old program, it was not resolved. -Info 691 [00:14:24.000] ======== Resolving module 'pkg1' from '/src/project/f/fa/faa/x/y/z/randomFileForImport.ts'. ======== -Info 692 [00:14:25.000] Module resolution kind is not specified, using 'NodeJs'. -Info 693 [00:14:26.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. -Info 694 [00:14:27.000] Directory '/src/project/f/fa/faa/x/y/z/node_modules' does not exist, skipping all lookups in it. -Info 695 [00:14:28.000] Directory '/src/project/f/fa/faa/x/y/node_modules' does not exist, skipping all lookups in it. -Info 696 [00:14:29.000] Directory '/src/project/f/fa/faa/x/node_modules' does not exist, skipping all lookups in it. -Info 697 [00:14:30.000] Resolution for module 'pkg1' was found in cache from location '/src/project/f/fa/faa'. -Info 698 [00:14:31.000] ======== Module name 'pkg1' was not resolved. ======== -Info 699 [00:14:32.000] Reusing resolution of module 'pkg0' from '/src/project/f/fa/faa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 700 [00:14:33.000] Reusing resolution of module 'pkg0' from '/src/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 701 [00:14:34.000] Reusing resolution of module 'pkg1' from '/src/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was not resolved. -Info 702 [00:14:35.000] Finishing updateGraphWorker: Project: /src/project/tsconfig.json Version: 13 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 703 [00:14:36.000] Different program with same set of files -Info 704 [00:14:37.000] add file for unresolved import and random edit -Info 705 [00:14:41.000] DirectoryWatcher:: Triggered with /src/project/node_modules/pkg1 :: WatchInfo: /src/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 706 [00:14:42.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /src/project/node_modules/pkg1 :: WatchInfo: /src/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 707 [00:14:43.000] DirectoryWatcher:: Triggered with /src/project/node_modules/pkg1 :: WatchInfo: /src/project/node_modules 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations -Info 708 [00:14:44.000] Scheduled: /src/project/tsconfig.jsonFailedLookupInvalidation -Info 709 [00:14:45.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /src/project/node_modules/pkg1 :: WatchInfo: /src/project/node_modules 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations -Info 710 [00:14:47.000] DirectoryWatcher:: Triggered with /src/project/node_modules/pkg1/index.d.ts :: WatchInfo: /src/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 711 [00:14:48.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /src/project/node_modules/pkg1/index.d.ts :: WatchInfo: /src/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 712 [00:14:49.000] DirectoryWatcher:: Triggered with /src/project/node_modules/pkg1/index.d.ts :: WatchInfo: /src/project/node_modules 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations -Info 713 [00:14:50.000] Scheduled: /src/project/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 714 [00:14:51.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /src/project/node_modules/pkg1/index.d.ts :: WatchInfo: /src/project/node_modules 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations +Info 657 [00:13:50.000] Starting updateGraphWorker: Project: /src/project/tsconfig.json +Info 658 [00:13:51.000] Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 659 [00:13:52.000] Reusing resolution of module 'pkg1' from '/src/project/fileWithImports.ts' of old program, it was not resolved. +Info 660 [00:13:53.000] Reusing resolution of module 'pkg0' from '/src/project/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 661 [00:13:54.000] Reusing resolution of module 'pkg1' from '/src/project/randomFileForImport.ts' of old program, it was not resolved. +Info 662 [00:13:55.000] Reusing resolution of module 'pkg0' from '/src/project/a/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 663 [00:13:56.000] Reusing resolution of module 'pkg1' from '/src/project/a/fileWithImports.ts' of old program, it was not resolved. +Info 664 [00:13:57.000] Reusing resolution of module 'pkg0' from '/src/project/b/ba/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 665 [00:13:58.000] Reusing resolution of module 'pkg1' from '/src/project/b/ba/fileWithImports.ts' of old program, it was not resolved. +Info 666 [00:13:59.000] Reusing resolution of module 'pkg0' from '/src/project/b/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 667 [00:14:00.000] Reusing resolution of module 'pkg1' from '/src/project/b/randomFileForImport.ts' of old program, it was not resolved. +Info 668 [00:14:01.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 669 [00:14:02.000] Reusing resolution of module 'pkg1' from '/src/project/c/ca/fileWithImports.ts' of old program, it was not resolved. +Info 670 [00:14:03.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/caa/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 671 [00:14:04.000] Reusing resolution of module 'pkg1' from '/src/project/c/ca/caa/randomFileForImport.ts' of old program, it was not resolved. +Info 672 [00:14:05.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 673 [00:14:06.000] Reusing resolution of module 'pkg1' from '/src/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was not resolved. +Info 674 [00:14:07.000] Reusing resolution of module 'pkg0' from '/src/project/c/cb/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 675 [00:14:08.000] Reusing resolution of module 'pkg1' from '/src/project/c/cb/fileWithImports.ts' of old program, it was not resolved. +Info 676 [00:14:09.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 677 [00:14:10.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts' of old program, it was not resolved. +Info 678 [00:14:11.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 679 [00:14:12.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was not resolved. +Info 680 [00:14:13.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 681 [00:14:14.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/daa/fileWithImports.ts' of old program, it was not resolved. +Info 682 [00:14:15.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 683 [00:14:16.000] Reusing resolution of module 'pkg1' from '/src/project/d/da/fileWithImports.ts' of old program, it was not resolved. +Info 684 [00:14:17.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 685 [00:14:18.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/fileWithImports.ts' of old program, it was not resolved. +Info 686 [00:14:19.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 687 [00:14:20.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/eaa/fileWithImports.ts' of old program, it was not resolved. +Info 688 [00:14:21.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 689 [00:14:22.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was not resolved. +Info 690 [00:14:23.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 691 [00:14:24.000] Reusing resolution of module 'pkg1' from '/src/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts' of old program, it was not resolved. +Info 692 [00:14:25.000] ======== Resolving module 'pkg1' from '/src/project/f/fa/faa/x/y/z/randomFileForImport.ts'. ======== +Info 693 [00:14:26.000] Module resolution kind is not specified, using 'NodeJs'. +Info 694 [00:14:27.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info 695 [00:14:28.000] Directory '/src/project/f/fa/faa/x/y/z/node_modules' does not exist, skipping all lookups in it. +Info 696 [00:14:29.000] Directory '/src/project/f/fa/faa/x/y/node_modules' does not exist, skipping all lookups in it. +Info 697 [00:14:30.000] Directory '/src/project/f/fa/faa/x/node_modules' does not exist, skipping all lookups in it. +Info 698 [00:14:31.000] Resolution for module 'pkg1' was found in cache from location '/src/project/f/fa/faa'. +Info 699 [00:14:32.000] ======== Module name 'pkg1' was not resolved. ======== +Info 700 [00:14:33.000] Reusing resolution of module 'pkg0' from '/src/project/f/fa/faa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 701 [00:14:34.000] Reusing resolution of module 'pkg0' from '/src/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 702 [00:14:35.000] Reusing resolution of module 'pkg1' from '/src/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was not resolved. +Info 703 [00:14:36.000] Finishing updateGraphWorker: Project: /src/project/tsconfig.json Version: 13 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 704 [00:14:37.000] Different program with same set of files +Info 705 [00:14:38.000] add file for unresolved import and random edit +Info 706 [00:14:42.000] DirectoryWatcher:: Triggered with /src/project/node_modules/pkg1 :: WatchInfo: /src/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 707 [00:14:43.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /src/project/node_modules/pkg1 :: WatchInfo: /src/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 708 [00:14:44.000] DirectoryWatcher:: Triggered with /src/project/node_modules/pkg1 :: WatchInfo: /src/project/node_modules 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations +Info 709 [00:14:45.000] Scheduled: /src/project/tsconfig.jsonFailedLookupInvalidation +Info 710 [00:14:46.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /src/project/node_modules/pkg1 :: WatchInfo: /src/project/node_modules 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations +Info 711 [00:14:48.000] DirectoryWatcher:: Triggered with /src/project/node_modules/pkg1/index.d.ts :: WatchInfo: /src/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 712 [00:14:49.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /src/project/node_modules/pkg1/index.d.ts :: WatchInfo: /src/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 713 [00:14:50.000] DirectoryWatcher:: Triggered with /src/project/node_modules/pkg1/index.d.ts :: WatchInfo: /src/project/node_modules 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations +Info 714 [00:14:51.000] Scheduled: /src/project/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 715 [00:14:52.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /src/project/node_modules/pkg1/index.d.ts :: WatchInfo: /src/project/node_modules 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations Before running timeout callbacks //// [/src/project/randomFileForImport.ts] export const x = 10;export const y = 10; @@ -3803,9 +3804,9 @@ FsWatchesRecursive:: /src/project/f: {} -Info 715 [00:14:54.000] Running: /src/project/tsconfig.jsonFailedLookupInvalidation -Info 716 [00:14:55.000] Scheduled: /src/project/tsconfig.json -Info 717 [00:14:56.000] Scheduled: *ensureProjectForOpenFiles* +Info 716 [00:14:55.000] Running: /src/project/tsconfig.jsonFailedLookupInvalidation +Info 717 [00:14:56.000] Scheduled: /src/project/tsconfig.json +Info 718 [00:14:57.000] Scheduled: *ensureProjectForOpenFiles* After running timeout callbacks PolledWatches:: @@ -3918,173 +3919,173 @@ FsWatchesRecursive:: /src/project/f: {} -Info 718 [00:14:57.000] Running: /src/project/tsconfig.json -Info 719 [00:14:58.000] Starting updateGraphWorker: Project: /src/project/tsconfig.json -Info 720 [00:14:59.000] Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 721 [00:15:00.000] ======== Resolving module 'pkg1' from '/src/project/fileWithImports.ts'. ======== -Info 722 [00:15:01.000] Module resolution kind is not specified, using 'NodeJs'. -Info 723 [00:15:02.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. -Info 724 [00:15:03.000] File '/src/project/node_modules/pkg1/package.json' does not exist. -Info 725 [00:15:04.000] File '/src/project/node_modules/pkg1.ts' does not exist. -Info 726 [00:15:05.000] File '/src/project/node_modules/pkg1.tsx' does not exist. -Info 727 [00:15:06.000] File '/src/project/node_modules/pkg1.d.ts' does not exist. -Info 728 [00:15:07.000] File '/src/project/node_modules/pkg1/index.ts' does not exist. -Info 729 [00:15:08.000] File '/src/project/node_modules/pkg1/index.tsx' does not exist. -Info 730 [00:15:09.000] File '/src/project/node_modules/pkg1/index.d.ts' exist - use it as a name resolution result. -Info 731 [00:15:10.000] Resolving real path for '/src/project/node_modules/pkg1/index.d.ts', result '/src/project/node_modules/pkg1/index.d.ts'. -Info 732 [00:15:11.000] ======== Module name 'pkg1' was successfully resolved to '/src/project/node_modules/pkg1/index.d.ts'. ======== -Info 733 [00:15:12.000] ======== Resolving module 'pkg1' from '/src/project/randomFileForImport.ts'. ======== -Info 734 [00:15:13.000] Resolution for module 'pkg1' was found in cache from location '/src/project'. -Info 735 [00:15:14.000] ======== Module name 'pkg1' was successfully resolved to '/src/project/node_modules/pkg1/index.d.ts'. ======== -Info 736 [00:15:15.000] Reusing resolution of module 'pkg0' from '/src/project/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 737 [00:15:16.000] Reusing resolution of module 'pkg0' from '/src/project/a/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 738 [00:15:17.000] ======== Resolving module 'pkg1' from '/src/project/a/fileWithImports.ts'. ======== -Info 739 [00:15:18.000] Module resolution kind is not specified, using 'NodeJs'. -Info 740 [00:15:19.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. -Info 741 [00:15:20.000] Directory '/src/project/a/node_modules' does not exist, skipping all lookups in it. -Info 742 [00:15:21.000] Resolution for module 'pkg1' was found in cache from location '/src/project'. -Info 743 [00:15:22.000] ======== Module name 'pkg1' was successfully resolved to '/src/project/node_modules/pkg1/index.d.ts'. ======== -Info 744 [00:15:23.000] Reusing resolution of module 'pkg0' from '/src/project/b/ba/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 745 [00:15:24.000] ======== Resolving module 'pkg1' from '/src/project/b/ba/fileWithImports.ts'. ======== -Info 746 [00:15:25.000] Module resolution kind is not specified, using 'NodeJs'. -Info 747 [00:15:26.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. -Info 748 [00:15:27.000] Directory '/src/project/b/ba/node_modules' does not exist, skipping all lookups in it. -Info 749 [00:15:28.000] Directory '/src/project/b/node_modules' does not exist, skipping all lookups in it. -Info 750 [00:15:29.000] Resolution for module 'pkg1' was found in cache from location '/src/project'. -Info 751 [00:15:30.000] ======== Module name 'pkg1' was successfully resolved to '/src/project/node_modules/pkg1/index.d.ts'. ======== -Info 752 [00:15:31.000] ======== Resolving module 'pkg1' from '/src/project/b/randomFileForImport.ts'. ======== -Info 753 [00:15:32.000] Module resolution kind is not specified, using 'NodeJs'. -Info 754 [00:15:33.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. -Info 755 [00:15:34.000] Resolution for module 'pkg1' was found in cache from location '/src/project/b'. -Info 756 [00:15:35.000] ======== Module name 'pkg1' was successfully resolved to '/src/project/node_modules/pkg1/index.d.ts'. ======== -Info 757 [00:15:36.000] Reusing resolution of module 'pkg0' from '/src/project/b/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 758 [00:15:37.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 759 [00:15:38.000] ======== Resolving module 'pkg1' from '/src/project/c/ca/fileWithImports.ts'. ======== -Info 760 [00:15:39.000] Module resolution kind is not specified, using 'NodeJs'. -Info 761 [00:15:40.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. -Info 762 [00:15:41.000] Directory '/src/project/c/ca/node_modules' does not exist, skipping all lookups in it. -Info 763 [00:15:42.000] Directory '/src/project/c/node_modules' does not exist, skipping all lookups in it. -Info 764 [00:15:43.000] Resolution for module 'pkg1' was found in cache from location '/src/project'. -Info 765 [00:15:44.000] ======== Module name 'pkg1' was successfully resolved to '/src/project/node_modules/pkg1/index.d.ts'. ======== -Info 766 [00:15:45.000] ======== Resolving module 'pkg1' from '/src/project/c/ca/caa/randomFileForImport.ts'. ======== -Info 767 [00:15:46.000] Module resolution kind is not specified, using 'NodeJs'. -Info 768 [00:15:47.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. -Info 769 [00:15:48.000] Directory '/src/project/c/ca/caa/node_modules' does not exist, skipping all lookups in it. -Info 770 [00:15:49.000] Resolution for module 'pkg1' was found in cache from location '/src/project/c/ca'. -Info 771 [00:15:50.000] ======== Module name 'pkg1' was successfully resolved to '/src/project/node_modules/pkg1/index.d.ts'. ======== -Info 772 [00:15:51.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/caa/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 773 [00:15:52.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 774 [00:15:53.000] ======== Resolving module 'pkg1' from '/src/project/c/ca/caa/caaa/fileWithImports.ts'. ======== -Info 775 [00:15:54.000] Module resolution kind is not specified, using 'NodeJs'. -Info 776 [00:15:55.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. -Info 777 [00:15:56.000] Directory '/src/project/c/ca/caa/caaa/node_modules' does not exist, skipping all lookups in it. -Info 778 [00:15:57.000] Resolution for module 'pkg1' was found in cache from location '/src/project/c/ca/caa'. -Info 779 [00:15:58.000] ======== Module name 'pkg1' was successfully resolved to '/src/project/node_modules/pkg1/index.d.ts'. ======== -Info 780 [00:15:59.000] Reusing resolution of module 'pkg0' from '/src/project/c/cb/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 781 [00:16:00.000] ======== Resolving module 'pkg1' from '/src/project/c/cb/fileWithImports.ts'. ======== -Info 782 [00:16:01.000] Module resolution kind is not specified, using 'NodeJs'. -Info 783 [00:16:02.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. -Info 784 [00:16:03.000] Directory '/src/project/c/cb/node_modules' does not exist, skipping all lookups in it. -Info 785 [00:16:04.000] Resolution for module 'pkg1' was found in cache from location '/src/project/c'. -Info 786 [00:16:05.000] ======== Module name 'pkg1' was successfully resolved to '/src/project/node_modules/pkg1/index.d.ts'. ======== -Info 787 [00:16:06.000] ======== Resolving module 'pkg1' from '/src/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts'. ======== -Info 788 [00:16:07.000] Module resolution kind is not specified, using 'NodeJs'. -Info 789 [00:16:08.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. -Info 790 [00:16:09.000] Directory '/src/project/d/da/daa/daaa/x/y/z/node_modules' does not exist, skipping all lookups in it. -Info 791 [00:16:10.000] Directory '/src/project/d/da/daa/daaa/x/y/node_modules' does not exist, skipping all lookups in it. -Info 792 [00:16:11.000] Directory '/src/project/d/da/daa/daaa/x/node_modules' does not exist, skipping all lookups in it. -Info 793 [00:16:12.000] Directory '/src/project/d/da/daa/daaa/node_modules' does not exist, skipping all lookups in it. -Info 794 [00:16:13.000] Directory '/src/project/d/da/daa/node_modules' does not exist, skipping all lookups in it. -Info 795 [00:16:14.000] Directory '/src/project/d/da/node_modules' does not exist, skipping all lookups in it. -Info 796 [00:16:15.000] Directory '/src/project/d/node_modules' does not exist, skipping all lookups in it. -Info 797 [00:16:16.000] Resolution for module 'pkg1' was found in cache from location '/src/project'. -Info 798 [00:16:17.000] ======== Module name 'pkg1' was successfully resolved to '/src/project/node_modules/pkg1/index.d.ts'. ======== -Info 799 [00:16:18.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 800 [00:16:19.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 801 [00:16:20.000] ======== Resolving module 'pkg1' from '/src/project/d/da/daa/daaa/fileWithImports.ts'. ======== -Info 802 [00:16:21.000] Module resolution kind is not specified, using 'NodeJs'. -Info 803 [00:16:22.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. -Info 804 [00:16:23.000] Resolution for module 'pkg1' was found in cache from location '/src/project/d/da/daa/daaa'. -Info 805 [00:16:24.000] ======== Module name 'pkg1' was successfully resolved to '/src/project/node_modules/pkg1/index.d.ts'. ======== -Info 806 [00:16:25.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 807 [00:16:26.000] ======== Resolving module 'pkg1' from '/src/project/d/da/daa/fileWithImports.ts'. ======== -Info 808 [00:16:27.000] Module resolution kind is not specified, using 'NodeJs'. -Info 809 [00:16:28.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. -Info 810 [00:16:29.000] Resolution for module 'pkg1' was found in cache from location '/src/project/d/da/daa'. -Info 811 [00:16:30.000] ======== Module name 'pkg1' was successfully resolved to '/src/project/node_modules/pkg1/index.d.ts'. ======== -Info 812 [00:16:31.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 813 [00:16:32.000] ======== Resolving module 'pkg1' from '/src/project/d/da/fileWithImports.ts'. ======== -Info 814 [00:16:33.000] Module resolution kind is not specified, using 'NodeJs'. -Info 815 [00:16:34.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. -Info 816 [00:16:35.000] Resolution for module 'pkg1' was found in cache from location '/src/project/d/da'. -Info 817 [00:16:36.000] ======== Module name 'pkg1' was successfully resolved to '/src/project/node_modules/pkg1/index.d.ts'. ======== -Info 818 [00:16:37.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 819 [00:16:38.000] ======== Resolving module 'pkg1' from '/src/project/e/ea/fileWithImports.ts'. ======== -Info 820 [00:16:39.000] Module resolution kind is not specified, using 'NodeJs'. -Info 821 [00:16:40.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. -Info 822 [00:16:41.000] Directory '/src/project/e/ea/node_modules' does not exist, skipping all lookups in it. -Info 823 [00:16:42.000] Directory '/src/project/e/node_modules' does not exist, skipping all lookups in it. -Info 824 [00:16:43.000] Resolution for module 'pkg1' was found in cache from location '/src/project'. -Info 825 [00:16:44.000] ======== Module name 'pkg1' was successfully resolved to '/src/project/node_modules/pkg1/index.d.ts'. ======== -Info 826 [00:16:45.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 827 [00:16:46.000] ======== Resolving module 'pkg1' from '/src/project/e/ea/eaa/fileWithImports.ts'. ======== -Info 828 [00:16:47.000] Module resolution kind is not specified, using 'NodeJs'. -Info 829 [00:16:48.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. -Info 830 [00:16:49.000] Directory '/src/project/e/ea/eaa/node_modules' does not exist, skipping all lookups in it. -Info 831 [00:16:50.000] Resolution for module 'pkg1' was found in cache from location '/src/project/e/ea'. -Info 832 [00:16:51.000] ======== Module name 'pkg1' was successfully resolved to '/src/project/node_modules/pkg1/index.d.ts'. ======== -Info 833 [00:16:52.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 834 [00:16:53.000] ======== Resolving module 'pkg1' from '/src/project/e/ea/eaa/eaaa/fileWithImports.ts'. ======== -Info 835 [00:16:54.000] Module resolution kind is not specified, using 'NodeJs'. -Info 836 [00:16:55.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. -Info 837 [00:16:56.000] Directory '/src/project/e/ea/eaa/eaaa/node_modules' does not exist, skipping all lookups in it. -Info 838 [00:16:57.000] Resolution for module 'pkg1' was found in cache from location '/src/project/e/ea/eaa'. -Info 839 [00:16:58.000] ======== Module name 'pkg1' was successfully resolved to '/src/project/node_modules/pkg1/index.d.ts'. ======== -Info 840 [00:16:59.000] ======== Resolving module 'pkg1' from '/src/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts'. ======== -Info 841 [00:17:00.000] Module resolution kind is not specified, using 'NodeJs'. -Info 842 [00:17:01.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. -Info 843 [00:17:02.000] Directory '/src/project/e/ea/eaa/eaaa/x/y/z/node_modules' does not exist, skipping all lookups in it. -Info 844 [00:17:03.000] Directory '/src/project/e/ea/eaa/eaaa/x/y/node_modules' does not exist, skipping all lookups in it. -Info 845 [00:17:04.000] Directory '/src/project/e/ea/eaa/eaaa/x/node_modules' does not exist, skipping all lookups in it. -Info 846 [00:17:05.000] Resolution for module 'pkg1' was found in cache from location '/src/project/e/ea/eaa/eaaa'. -Info 847 [00:17:06.000] ======== Module name 'pkg1' was successfully resolved to '/src/project/node_modules/pkg1/index.d.ts'. ======== -Info 848 [00:17:07.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 849 [00:17:08.000] ======== Resolving module 'pkg1' from '/src/project/f/fa/faa/x/y/z/randomFileForImport.ts'. ======== -Info 850 [00:17:09.000] Module resolution kind is not specified, using 'NodeJs'. -Info 851 [00:17:10.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. -Info 852 [00:17:11.000] Directory '/src/project/f/fa/faa/x/y/z/node_modules' does not exist, skipping all lookups in it. -Info 853 [00:17:12.000] Directory '/src/project/f/fa/faa/x/y/node_modules' does not exist, skipping all lookups in it. -Info 854 [00:17:13.000] Directory '/src/project/f/fa/faa/x/node_modules' does not exist, skipping all lookups in it. -Info 855 [00:17:14.000] Directory '/src/project/f/fa/faa/node_modules' does not exist, skipping all lookups in it. -Info 856 [00:17:15.000] Directory '/src/project/f/fa/node_modules' does not exist, skipping all lookups in it. -Info 857 [00:17:16.000] Directory '/src/project/f/node_modules' does not exist, skipping all lookups in it. -Info 858 [00:17:17.000] Resolution for module 'pkg1' was found in cache from location '/src/project'. -Info 859 [00:17:18.000] ======== Module name 'pkg1' was successfully resolved to '/src/project/node_modules/pkg1/index.d.ts'. ======== -Info 860 [00:17:19.000] Reusing resolution of module 'pkg0' from '/src/project/f/fa/faa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 861 [00:17:20.000] Reusing resolution of module 'pkg0' from '/src/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. -Info 862 [00:17:21.000] ======== Resolving module 'pkg1' from '/src/project/f/fa/faa/faaa/fileWithImports.ts'. ======== -Info 863 [00:17:22.000] Module resolution kind is not specified, using 'NodeJs'. -Info 864 [00:17:23.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. -Info 865 [00:17:24.000] Directory '/src/project/f/fa/faa/faaa/node_modules' does not exist, skipping all lookups in it. -Info 866 [00:17:25.000] Resolution for module 'pkg1' was found in cache from location '/src/project/f/fa/faa'. -Info 867 [00:17:26.000] ======== Module name 'pkg1' was successfully resolved to '/src/project/node_modules/pkg1/index.d.ts'. ======== -Info 868 [00:17:27.000] DirectoryWatcher:: Close:: WatchInfo: /src/project/node_modules 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations -Info 869 [00:17:28.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /src/project/node_modules 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations -Info 870 [00:17:29.000] DirectoryWatcher:: Close:: WatchInfo: /src/project/a 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations -Info 871 [00:17:30.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /src/project/a 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations -Info 872 [00:17:31.000] DirectoryWatcher:: Close:: WatchInfo: /src/project/b 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations -Info 873 [00:17:32.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /src/project/b 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations -Info 874 [00:17:33.000] DirectoryWatcher:: Close:: WatchInfo: /src/project/c 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations -Info 875 [00:17:34.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /src/project/c 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations -Info 876 [00:17:35.000] DirectoryWatcher:: Close:: WatchInfo: /src/project/d 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations -Info 877 [00:17:36.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /src/project/d 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations -Info 878 [00:17:37.000] DirectoryWatcher:: Close:: WatchInfo: /src/project/e 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations -Info 879 [00:17:38.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /src/project/e 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations -Info 880 [00:17:39.000] DirectoryWatcher:: Close:: WatchInfo: /src/project/f 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations -Info 881 [00:17:40.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /src/project/f 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations -Info 882 [00:17:41.000] Finishing updateGraphWorker: Project: /src/project/tsconfig.json Version: 14 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 883 [00:17:42.000] Project '/src/project/tsconfig.json' (Configured) -Info 884 [00:17:43.000] Files (22) +Info 719 [00:14:58.000] Running: /src/project/tsconfig.json +Info 720 [00:14:59.000] Starting updateGraphWorker: Project: /src/project/tsconfig.json +Info 721 [00:15:00.000] Reusing resolution of module 'pkg0' from '/src/project/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 722 [00:15:01.000] ======== Resolving module 'pkg1' from '/src/project/fileWithImports.ts'. ======== +Info 723 [00:15:02.000] Module resolution kind is not specified, using 'NodeJs'. +Info 724 [00:15:03.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info 725 [00:15:04.000] File '/src/project/node_modules/pkg1/package.json' does not exist. +Info 726 [00:15:05.000] File '/src/project/node_modules/pkg1.ts' does not exist. +Info 727 [00:15:06.000] File '/src/project/node_modules/pkg1.tsx' does not exist. +Info 728 [00:15:07.000] File '/src/project/node_modules/pkg1.d.ts' does not exist. +Info 729 [00:15:08.000] File '/src/project/node_modules/pkg1/index.ts' does not exist. +Info 730 [00:15:09.000] File '/src/project/node_modules/pkg1/index.tsx' does not exist. +Info 731 [00:15:10.000] File '/src/project/node_modules/pkg1/index.d.ts' exist - use it as a name resolution result. +Info 732 [00:15:11.000] Resolving real path for '/src/project/node_modules/pkg1/index.d.ts', result '/src/project/node_modules/pkg1/index.d.ts'. +Info 733 [00:15:12.000] ======== Module name 'pkg1' was successfully resolved to '/src/project/node_modules/pkg1/index.d.ts'. ======== +Info 734 [00:15:13.000] ======== Resolving module 'pkg1' from '/src/project/randomFileForImport.ts'. ======== +Info 735 [00:15:14.000] Resolution for module 'pkg1' was found in cache from location '/src/project'. +Info 736 [00:15:15.000] ======== Module name 'pkg1' was successfully resolved to '/src/project/node_modules/pkg1/index.d.ts'. ======== +Info 737 [00:15:16.000] Reusing resolution of module 'pkg0' from '/src/project/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 738 [00:15:17.000] Reusing resolution of module 'pkg0' from '/src/project/a/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 739 [00:15:18.000] ======== Resolving module 'pkg1' from '/src/project/a/fileWithImports.ts'. ======== +Info 740 [00:15:19.000] Module resolution kind is not specified, using 'NodeJs'. +Info 741 [00:15:20.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info 742 [00:15:21.000] Directory '/src/project/a/node_modules' does not exist, skipping all lookups in it. +Info 743 [00:15:22.000] Resolution for module 'pkg1' was found in cache from location '/src/project'. +Info 744 [00:15:23.000] ======== Module name 'pkg1' was successfully resolved to '/src/project/node_modules/pkg1/index.d.ts'. ======== +Info 745 [00:15:24.000] Reusing resolution of module 'pkg0' from '/src/project/b/ba/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 746 [00:15:25.000] ======== Resolving module 'pkg1' from '/src/project/b/ba/fileWithImports.ts'. ======== +Info 747 [00:15:26.000] Module resolution kind is not specified, using 'NodeJs'. +Info 748 [00:15:27.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info 749 [00:15:28.000] Directory '/src/project/b/ba/node_modules' does not exist, skipping all lookups in it. +Info 750 [00:15:29.000] Directory '/src/project/b/node_modules' does not exist, skipping all lookups in it. +Info 751 [00:15:30.000] Resolution for module 'pkg1' was found in cache from location '/src/project'. +Info 752 [00:15:31.000] ======== Module name 'pkg1' was successfully resolved to '/src/project/node_modules/pkg1/index.d.ts'. ======== +Info 753 [00:15:32.000] ======== Resolving module 'pkg1' from '/src/project/b/randomFileForImport.ts'. ======== +Info 754 [00:15:33.000] Module resolution kind is not specified, using 'NodeJs'. +Info 755 [00:15:34.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info 756 [00:15:35.000] Resolution for module 'pkg1' was found in cache from location '/src/project/b'. +Info 757 [00:15:36.000] ======== Module name 'pkg1' was successfully resolved to '/src/project/node_modules/pkg1/index.d.ts'. ======== +Info 758 [00:15:37.000] Reusing resolution of module 'pkg0' from '/src/project/b/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 759 [00:15:38.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 760 [00:15:39.000] ======== Resolving module 'pkg1' from '/src/project/c/ca/fileWithImports.ts'. ======== +Info 761 [00:15:40.000] Module resolution kind is not specified, using 'NodeJs'. +Info 762 [00:15:41.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info 763 [00:15:42.000] Directory '/src/project/c/ca/node_modules' does not exist, skipping all lookups in it. +Info 764 [00:15:43.000] Directory '/src/project/c/node_modules' does not exist, skipping all lookups in it. +Info 765 [00:15:44.000] Resolution for module 'pkg1' was found in cache from location '/src/project'. +Info 766 [00:15:45.000] ======== Module name 'pkg1' was successfully resolved to '/src/project/node_modules/pkg1/index.d.ts'. ======== +Info 767 [00:15:46.000] ======== Resolving module 'pkg1' from '/src/project/c/ca/caa/randomFileForImport.ts'. ======== +Info 768 [00:15:47.000] Module resolution kind is not specified, using 'NodeJs'. +Info 769 [00:15:48.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info 770 [00:15:49.000] Directory '/src/project/c/ca/caa/node_modules' does not exist, skipping all lookups in it. +Info 771 [00:15:50.000] Resolution for module 'pkg1' was found in cache from location '/src/project/c/ca'. +Info 772 [00:15:51.000] ======== Module name 'pkg1' was successfully resolved to '/src/project/node_modules/pkg1/index.d.ts'. ======== +Info 773 [00:15:52.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/caa/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 774 [00:15:53.000] Reusing resolution of module 'pkg0' from '/src/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 775 [00:15:54.000] ======== Resolving module 'pkg1' from '/src/project/c/ca/caa/caaa/fileWithImports.ts'. ======== +Info 776 [00:15:55.000] Module resolution kind is not specified, using 'NodeJs'. +Info 777 [00:15:56.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info 778 [00:15:57.000] Directory '/src/project/c/ca/caa/caaa/node_modules' does not exist, skipping all lookups in it. +Info 779 [00:15:58.000] Resolution for module 'pkg1' was found in cache from location '/src/project/c/ca/caa'. +Info 780 [00:15:59.000] ======== Module name 'pkg1' was successfully resolved to '/src/project/node_modules/pkg1/index.d.ts'. ======== +Info 781 [00:16:00.000] Reusing resolution of module 'pkg0' from '/src/project/c/cb/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 782 [00:16:01.000] ======== Resolving module 'pkg1' from '/src/project/c/cb/fileWithImports.ts'. ======== +Info 783 [00:16:02.000] Module resolution kind is not specified, using 'NodeJs'. +Info 784 [00:16:03.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info 785 [00:16:04.000] Directory '/src/project/c/cb/node_modules' does not exist, skipping all lookups in it. +Info 786 [00:16:05.000] Resolution for module 'pkg1' was found in cache from location '/src/project/c'. +Info 787 [00:16:06.000] ======== Module name 'pkg1' was successfully resolved to '/src/project/node_modules/pkg1/index.d.ts'. ======== +Info 788 [00:16:07.000] ======== Resolving module 'pkg1' from '/src/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts'. ======== +Info 789 [00:16:08.000] Module resolution kind is not specified, using 'NodeJs'. +Info 790 [00:16:09.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info 791 [00:16:10.000] Directory '/src/project/d/da/daa/daaa/x/y/z/node_modules' does not exist, skipping all lookups in it. +Info 792 [00:16:11.000] Directory '/src/project/d/da/daa/daaa/x/y/node_modules' does not exist, skipping all lookups in it. +Info 793 [00:16:12.000] Directory '/src/project/d/da/daa/daaa/x/node_modules' does not exist, skipping all lookups in it. +Info 794 [00:16:13.000] Directory '/src/project/d/da/daa/daaa/node_modules' does not exist, skipping all lookups in it. +Info 795 [00:16:14.000] Directory '/src/project/d/da/daa/node_modules' does not exist, skipping all lookups in it. +Info 796 [00:16:15.000] Directory '/src/project/d/da/node_modules' does not exist, skipping all lookups in it. +Info 797 [00:16:16.000] Directory '/src/project/d/node_modules' does not exist, skipping all lookups in it. +Info 798 [00:16:17.000] Resolution for module 'pkg1' was found in cache from location '/src/project'. +Info 799 [00:16:18.000] ======== Module name 'pkg1' was successfully resolved to '/src/project/node_modules/pkg1/index.d.ts'. ======== +Info 800 [00:16:19.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 801 [00:16:20.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 802 [00:16:21.000] ======== Resolving module 'pkg1' from '/src/project/d/da/daa/daaa/fileWithImports.ts'. ======== +Info 803 [00:16:22.000] Module resolution kind is not specified, using 'NodeJs'. +Info 804 [00:16:23.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info 805 [00:16:24.000] Resolution for module 'pkg1' was found in cache from location '/src/project/d/da/daa/daaa'. +Info 806 [00:16:25.000] ======== Module name 'pkg1' was successfully resolved to '/src/project/node_modules/pkg1/index.d.ts'. ======== +Info 807 [00:16:26.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/daa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 808 [00:16:27.000] ======== Resolving module 'pkg1' from '/src/project/d/da/daa/fileWithImports.ts'. ======== +Info 809 [00:16:28.000] Module resolution kind is not specified, using 'NodeJs'. +Info 810 [00:16:29.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info 811 [00:16:30.000] Resolution for module 'pkg1' was found in cache from location '/src/project/d/da/daa'. +Info 812 [00:16:31.000] ======== Module name 'pkg1' was successfully resolved to '/src/project/node_modules/pkg1/index.d.ts'. ======== +Info 813 [00:16:32.000] Reusing resolution of module 'pkg0' from '/src/project/d/da/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 814 [00:16:33.000] ======== Resolving module 'pkg1' from '/src/project/d/da/fileWithImports.ts'. ======== +Info 815 [00:16:34.000] Module resolution kind is not specified, using 'NodeJs'. +Info 816 [00:16:35.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info 817 [00:16:36.000] Resolution for module 'pkg1' was found in cache from location '/src/project/d/da'. +Info 818 [00:16:37.000] ======== Module name 'pkg1' was successfully resolved to '/src/project/node_modules/pkg1/index.d.ts'. ======== +Info 819 [00:16:38.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 820 [00:16:39.000] ======== Resolving module 'pkg1' from '/src/project/e/ea/fileWithImports.ts'. ======== +Info 821 [00:16:40.000] Module resolution kind is not specified, using 'NodeJs'. +Info 822 [00:16:41.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info 823 [00:16:42.000] Directory '/src/project/e/ea/node_modules' does not exist, skipping all lookups in it. +Info 824 [00:16:43.000] Directory '/src/project/e/node_modules' does not exist, skipping all lookups in it. +Info 825 [00:16:44.000] Resolution for module 'pkg1' was found in cache from location '/src/project'. +Info 826 [00:16:45.000] ======== Module name 'pkg1' was successfully resolved to '/src/project/node_modules/pkg1/index.d.ts'. ======== +Info 827 [00:16:46.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 828 [00:16:47.000] ======== Resolving module 'pkg1' from '/src/project/e/ea/eaa/fileWithImports.ts'. ======== +Info 829 [00:16:48.000] Module resolution kind is not specified, using 'NodeJs'. +Info 830 [00:16:49.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info 831 [00:16:50.000] Directory '/src/project/e/ea/eaa/node_modules' does not exist, skipping all lookups in it. +Info 832 [00:16:51.000] Resolution for module 'pkg1' was found in cache from location '/src/project/e/ea'. +Info 833 [00:16:52.000] ======== Module name 'pkg1' was successfully resolved to '/src/project/node_modules/pkg1/index.d.ts'. ======== +Info 834 [00:16:53.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 835 [00:16:54.000] ======== Resolving module 'pkg1' from '/src/project/e/ea/eaa/eaaa/fileWithImports.ts'. ======== +Info 836 [00:16:55.000] Module resolution kind is not specified, using 'NodeJs'. +Info 837 [00:16:56.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info 838 [00:16:57.000] Directory '/src/project/e/ea/eaa/eaaa/node_modules' does not exist, skipping all lookups in it. +Info 839 [00:16:58.000] Resolution for module 'pkg1' was found in cache from location '/src/project/e/ea/eaa'. +Info 840 [00:16:59.000] ======== Module name 'pkg1' was successfully resolved to '/src/project/node_modules/pkg1/index.d.ts'. ======== +Info 841 [00:17:00.000] ======== Resolving module 'pkg1' from '/src/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts'. ======== +Info 842 [00:17:01.000] Module resolution kind is not specified, using 'NodeJs'. +Info 843 [00:17:02.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info 844 [00:17:03.000] Directory '/src/project/e/ea/eaa/eaaa/x/y/z/node_modules' does not exist, skipping all lookups in it. +Info 845 [00:17:04.000] Directory '/src/project/e/ea/eaa/eaaa/x/y/node_modules' does not exist, skipping all lookups in it. +Info 846 [00:17:05.000] Directory '/src/project/e/ea/eaa/eaaa/x/node_modules' does not exist, skipping all lookups in it. +Info 847 [00:17:06.000] Resolution for module 'pkg1' was found in cache from location '/src/project/e/ea/eaa/eaaa'. +Info 848 [00:17:07.000] ======== Module name 'pkg1' was successfully resolved to '/src/project/node_modules/pkg1/index.d.ts'. ======== +Info 849 [00:17:08.000] Reusing resolution of module 'pkg0' from '/src/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 850 [00:17:09.000] ======== Resolving module 'pkg1' from '/src/project/f/fa/faa/x/y/z/randomFileForImport.ts'. ======== +Info 851 [00:17:10.000] Module resolution kind is not specified, using 'NodeJs'. +Info 852 [00:17:11.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info 853 [00:17:12.000] Directory '/src/project/f/fa/faa/x/y/z/node_modules' does not exist, skipping all lookups in it. +Info 854 [00:17:13.000] Directory '/src/project/f/fa/faa/x/y/node_modules' does not exist, skipping all lookups in it. +Info 855 [00:17:14.000] Directory '/src/project/f/fa/faa/x/node_modules' does not exist, skipping all lookups in it. +Info 856 [00:17:15.000] Directory '/src/project/f/fa/faa/node_modules' does not exist, skipping all lookups in it. +Info 857 [00:17:16.000] Directory '/src/project/f/fa/node_modules' does not exist, skipping all lookups in it. +Info 858 [00:17:17.000] Directory '/src/project/f/node_modules' does not exist, skipping all lookups in it. +Info 859 [00:17:18.000] Resolution for module 'pkg1' was found in cache from location '/src/project'. +Info 860 [00:17:19.000] ======== Module name 'pkg1' was successfully resolved to '/src/project/node_modules/pkg1/index.d.ts'. ======== +Info 861 [00:17:20.000] Reusing resolution of module 'pkg0' from '/src/project/f/fa/faa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 862 [00:17:21.000] Reusing resolution of module 'pkg0' from '/src/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was successfully resolved to '/src/project/node_modules/pkg0/index.d.ts'. +Info 863 [00:17:22.000] ======== Resolving module 'pkg1' from '/src/project/f/fa/faa/faaa/fileWithImports.ts'. ======== +Info 864 [00:17:23.000] Module resolution kind is not specified, using 'NodeJs'. +Info 865 [00:17:24.000] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info 866 [00:17:25.000] Directory '/src/project/f/fa/faa/faaa/node_modules' does not exist, skipping all lookups in it. +Info 867 [00:17:26.000] Resolution for module 'pkg1' was found in cache from location '/src/project/f/fa/faa'. +Info 868 [00:17:27.000] ======== Module name 'pkg1' was successfully resolved to '/src/project/node_modules/pkg1/index.d.ts'. ======== +Info 869 [00:17:28.000] DirectoryWatcher:: Close:: WatchInfo: /src/project/node_modules 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations +Info 870 [00:17:29.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /src/project/node_modules 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations +Info 871 [00:17:30.000] DirectoryWatcher:: Close:: WatchInfo: /src/project/a 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations +Info 872 [00:17:31.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /src/project/a 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations +Info 873 [00:17:32.000] DirectoryWatcher:: Close:: WatchInfo: /src/project/b 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations +Info 874 [00:17:33.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /src/project/b 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations +Info 875 [00:17:34.000] DirectoryWatcher:: Close:: WatchInfo: /src/project/c 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations +Info 876 [00:17:35.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /src/project/c 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations +Info 877 [00:17:36.000] DirectoryWatcher:: Close:: WatchInfo: /src/project/d 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations +Info 878 [00:17:37.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /src/project/d 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations +Info 879 [00:17:38.000] DirectoryWatcher:: Close:: WatchInfo: /src/project/e 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations +Info 880 [00:17:39.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /src/project/e 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations +Info 881 [00:17:40.000] DirectoryWatcher:: Close:: WatchInfo: /src/project/f 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations +Info 882 [00:17:41.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /src/project/f 1 undefined Project: /src/project/tsconfig.json WatchType: Failed Lookup Locations +Info 883 [00:17:42.000] Finishing updateGraphWorker: Project: /src/project/tsconfig.json Version: 14 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 884 [00:17:43.000] Project '/src/project/tsconfig.json' (Configured) +Info 885 [00:17:44.000] Files (22) /a/lib/lib.d.ts /src/project/node_modules/pkg0/index.d.ts /src/project/node_modules/pkg1/index.d.ts @@ -4190,40 +4191,40 @@ Info 884 [00:17:43.000] Files (22) f/fa/faa/faaa/fileWithImports.ts Part of 'files' list in tsconfig.json -Info 885 [00:17:44.000] ----------------------------------------------- -Info 886 [00:17:45.000] Running: *ensureProjectForOpenFiles* -Info 887 [00:17:46.000] Before ensureProjectForOpenFiles: -Info 888 [00:17:47.000] Project '/src/project/tsconfig.json' (Configured) -Info 888 [00:17:48.000] Files (22) - -Info 888 [00:17:49.000] ----------------------------------------------- -Info 888 [00:17:50.000] Open files: -Info 888 [00:17:51.000] FileName: /src/project/randomFileForImport.ts ProjectRootPath: undefined -Info 888 [00:17:52.000] Projects: /src/project/tsconfig.json -Info 888 [00:17:53.000] FileName: /src/project/b/randomFileForImport.ts ProjectRootPath: undefined -Info 888 [00:17:54.000] Projects: /src/project/tsconfig.json -Info 888 [00:17:55.000] FileName: /src/project/c/ca/caa/randomFileForImport.ts ProjectRootPath: undefined -Info 888 [00:17:56.000] Projects: /src/project/tsconfig.json -Info 888 [00:17:57.000] FileName: /src/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts ProjectRootPath: undefined -Info 888 [00:17:58.000] Projects: /src/project/tsconfig.json -Info 888 [00:17:59.000] FileName: /src/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts ProjectRootPath: undefined -Info 888 [00:18:00.000] Projects: /src/project/tsconfig.json -Info 888 [00:18:01.000] After ensureProjectForOpenFiles: -Info 889 [00:18:02.000] Project '/src/project/tsconfig.json' (Configured) -Info 889 [00:18:03.000] Files (22) - -Info 889 [00:18:04.000] ----------------------------------------------- -Info 889 [00:18:05.000] Open files: -Info 889 [00:18:06.000] FileName: /src/project/randomFileForImport.ts ProjectRootPath: undefined -Info 889 [00:18:07.000] Projects: /src/project/tsconfig.json -Info 889 [00:18:08.000] FileName: /src/project/b/randomFileForImport.ts ProjectRootPath: undefined -Info 889 [00:18:09.000] Projects: /src/project/tsconfig.json -Info 889 [00:18:10.000] FileName: /src/project/c/ca/caa/randomFileForImport.ts ProjectRootPath: undefined -Info 889 [00:18:11.000] Projects: /src/project/tsconfig.json -Info 889 [00:18:12.000] FileName: /src/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts ProjectRootPath: undefined -Info 889 [00:18:13.000] Projects: /src/project/tsconfig.json -Info 889 [00:18:14.000] FileName: /src/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts ProjectRootPath: undefined -Info 889 [00:18:15.000] Projects: /src/project/tsconfig.json +Info 886 [00:17:45.000] ----------------------------------------------- +Info 887 [00:17:46.000] Running: *ensureProjectForOpenFiles* +Info 888 [00:17:47.000] Before ensureProjectForOpenFiles: +Info 889 [00:17:48.000] Project '/src/project/tsconfig.json' (Configured) +Info 889 [00:17:49.000] Files (22) + +Info 889 [00:17:50.000] ----------------------------------------------- +Info 889 [00:17:51.000] Open files: +Info 889 [00:17:52.000] FileName: /src/project/randomFileForImport.ts ProjectRootPath: undefined +Info 889 [00:17:53.000] Projects: /src/project/tsconfig.json +Info 889 [00:17:54.000] FileName: /src/project/b/randomFileForImport.ts ProjectRootPath: undefined +Info 889 [00:17:55.000] Projects: /src/project/tsconfig.json +Info 889 [00:17:56.000] FileName: /src/project/c/ca/caa/randomFileForImport.ts ProjectRootPath: undefined +Info 889 [00:17:57.000] Projects: /src/project/tsconfig.json +Info 889 [00:17:58.000] FileName: /src/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts ProjectRootPath: undefined +Info 889 [00:17:59.000] Projects: /src/project/tsconfig.json +Info 889 [00:18:00.000] FileName: /src/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts ProjectRootPath: undefined +Info 889 [00:18:01.000] Projects: /src/project/tsconfig.json +Info 889 [00:18:02.000] After ensureProjectForOpenFiles: +Info 890 [00:18:03.000] Project '/src/project/tsconfig.json' (Configured) +Info 890 [00:18:04.000] Files (22) + +Info 890 [00:18:05.000] ----------------------------------------------- +Info 890 [00:18:06.000] Open files: +Info 890 [00:18:07.000] FileName: /src/project/randomFileForImport.ts ProjectRootPath: undefined +Info 890 [00:18:08.000] Projects: /src/project/tsconfig.json +Info 890 [00:18:09.000] FileName: /src/project/b/randomFileForImport.ts ProjectRootPath: undefined +Info 890 [00:18:10.000] Projects: /src/project/tsconfig.json +Info 890 [00:18:11.000] FileName: /src/project/c/ca/caa/randomFileForImport.ts ProjectRootPath: undefined +Info 890 [00:18:12.000] Projects: /src/project/tsconfig.json +Info 890 [00:18:13.000] FileName: /src/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts ProjectRootPath: undefined +Info 890 [00:18:14.000] Projects: /src/project/tsconfig.json +Info 890 [00:18:15.000] FileName: /src/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts ProjectRootPath: undefined +Info 890 [00:18:16.000] Projects: /src/project/tsconfig.json After running timeout callbacks PolledWatches::