Dont store originalPath as separate, instead store originalPath || resolvedFileName and resolve the symlinks on read

This commit is contained in:
Sheetal Nandi 2022-12-09 20:15:31 -08:00
Родитель 2bb56dafe7
Коммит b179c7c959
26 изменённых файлов: 2030 добавлений и 1929 удалений

Просмотреть файл

@ -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,
};

Просмотреть файл

@ -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 {

Просмотреть файл

@ -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) {

Просмотреть файл

@ -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;
}

Просмотреть файл

@ -538,9 +538,8 @@ type ReadableProgramBuildInfoFileInfo<T> = Omit<ts.BuilderState.FileInfo, "impli
impliedFormat: string | undefined;
original: T | undefined;
};
type ReadableProgramBuildInfoResolved = string | Omit<ts.ProgramBuildInfoResolved, "resolvedFileName" | "originalPath"> & {
type ReadableProgramBuildInfoResolved = string | Omit<ts.ProgramBuildInfoResolved, "resolvedFileName"> & {
readonly resolvedFileName: string;
readonly originalPath: string | undefined;
};
type ReadableProgramBuildInfoResolution = Omit<ts.ProgramBuildInfoResolution, "resolvedModule" | "resolvedTypeReferenceDirective" | "failedLookupLocations" | "affectingLocations"> & {
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,
});
}

Просмотреть файл

@ -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'

Просмотреть файл

@ -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.

Просмотреть файл

@ -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'.

Просмотреть файл

@ -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'.

Просмотреть файл

@ -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.

Просмотреть файл

@ -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'.

Просмотреть файл

@ -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'.

Просмотреть файл

@ -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'.

Просмотреть файл

@ -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?

Просмотреть файл

@ -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.

Просмотреть файл

@ -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'.

Просмотреть файл

@ -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-/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { 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-/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { 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
}

Просмотреть файл

@ -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-/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { 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-/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { 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-/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { 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-/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { 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
}

Просмотреть файл

@ -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.

Просмотреть файл

@ -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'.

Просмотреть файл

@ -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'.

Просмотреть файл

@ -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'.

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Просмотреть файл

@ -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
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

Просмотреть файл

@ -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
}

Разница между файлами не показана из-за своего большого размера Загрузить разницу